:root {
  --ink: #111820;
  --ink-2: #1a242e;
  --steel: #64717d;
  --muted: #6d7882;
  --line: #d8dde1;
  --paper: #ffffff;
  --paper-2: #f3f5f6;
  --accent: #e66a1f;
  --accent-dark: #b8480c;
  --safety: #f0a027;
  --green: #70b795;
  --shadow: 0 18px 50px rgba(16, 24, 32, .12);
  --radius: 18px;
  --container: 1180px;
  --dark-background: var(--ink);
  --dark-secondary-background: var(--ink-2);
  --main-text: var(--ink);
  --muted-text: var(--muted);
  --light-section-background: var(--paper-2);
  --border-color: var(--line);
  --main-orange: var(--accent);
  --dark-accessible-orange: var(--accent-dark);
  --soft-orange-highlight: #fff1e7;
  --card-shadow: 0 12px 32px rgba(17, 24, 32, .09);
  --strong-shadow: 0 24px 60px rgba(7, 12, 17, .22);
  --radius-small: 7px;
  --radius-medium: 12px;
  --radius-large: 18px;
  --content-width: var(--container);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.header__inner > *,
.footer__grid > *,
.section-heading > *,
.product-options-heading > *,
.product-option-card__body { min-width: 0; }

.breadcrumbs,
.primary-nav a,
.footer__grid a,
.product-option-specs dd,
.product-option-button { overflow-wrap: anywhere; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: .8rem 1rem;
  color: #fff;
  background: var(--accent-dark);
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  color: #dbe2e6;
  background: #0b1016;
  font-size: .82rem;
  letter-spacing: .02em;
}
.topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar__experience { color: #f0a027; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(17, 24, 32, .08);
  backdrop-filter: blur(12px);
}
.header__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.brand img { flex: 0 0 auto; }
.brand__text {
  display: flex;
  align-items: baseline;
  font-size: 1.3rem;
  letter-spacing: -.03em;
}
.brand__text strong { font-weight: 850; }
.brand__text span { color: var(--accent); font-weight: 760; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.primary-nav a {
  color: #28333d;
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
}
.primary-nav a:hover { color: var(--accent-dark); }
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 22px;
}
.nav-dropdown__link { white-space: nowrap; }
.nav-dropdown__toggle {
  width: 24px;
  height: 28px;
  display: grid;
  place-items: center;
  margin-left: .12rem;
  padding: 0;
  color: #53606b;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}
.nav-dropdown__toggle::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .18s ease;
}
.nav-dropdown__toggle:hover,
.nav-dropdown__toggle:focus-visible { color: var(--accent-dark); background: #f1f3f4; }
.nav-dropdown__toggle[aria-expanded="true"]::before { transform: translateY(2px) rotate(225deg); }
.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 18px);
  left: -.8rem;
  z-index: 120;
  width: min(620px, calc(100vw - 40px));
  padding: 1rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  color: var(--ink);
  background: rgba(255,255,255,.99);
  border: 1px solid #d9dee1;
  border-radius: 14px;
  box-shadow: 0 24px 55px rgba(8,13,18,.2);
  transform: translateY(-8px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}
.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 2rem;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid #d9dee1;
  border-left: 1px solid #d9dee1;
  transform: rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown__heading {
  margin: 0 0 .7rem;
  padding: .15rem .35rem .65rem;
  color: #68747e;
  border-bottom: 1px solid #e7eaec;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-dropdown__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .28rem;
}
.primary-nav .nav-dropdown__grid a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: .62rem .75rem .62rem 1.65rem;
  color: #26323c;
  border-radius: 8px;
  font-size: .88rem;
  line-height: 1.25;
}
.primary-nav .nav-dropdown__grid a::before {
  content: "";
  position: absolute;
  left: .72rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.primary-nav .nav-dropdown__grid a:hover,
.primary-nav .nav-dropdown__grid a:focus-visible { color: var(--accent-dark); background: #f4f6f7; }
.primary-nav .nav-dropdown__all {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .7rem;
  padding: .75rem .85rem;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: .86rem;
}
.primary-nav .nav-dropdown__all:hover,
.primary-nav .nav-dropdown__all:focus-visible { color: #fff; background: var(--accent-dark); }
.primary-nav .nav-cta {
  padding: .72rem 1rem;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}
.primary-nav .nav-cta:hover { color: #fff; background: var(--accent-dark); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(230, 106, 31, .18), transparent 34%),
    linear-gradient(135deg, #0d141b 0%, #17222c 55%, #111820 100%);
}
.hero__texture {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to right, black, transparent 85%);
}
.hero__grid {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 5rem;
  padding-block: 88px 96px;
}
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.section:not(.section--dark) .eyebrow { color: var(--accent-dark); }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.hero__lead {
  max-width: 690px;
  margin: 1.5rem 0 0;
  color: #d6dde2;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--accent-dark); }
.button--primary:hover { background: #923708; }
.button--secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.3); }
.button--secondary:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.4rem;
  padding: 0;
  margin: 1.8rem 0 0;
  color: #aeb9c1;
  font-size: .88rem;
  list-style: none;
}
.hero__trust li::before {
  content: "✓";
  margin-right: .45rem;
  color: var(--green);
  font-weight: 900;
}

.hero-panel {
  padding: 1.15rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,.26);
  backdrop-filter: blur(14px);
}
.hero-panel__heading {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .25rem .3rem 1rem;
  color: #d9e0e5;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(112,183,149,.12);
}
.hero-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.hero-panel article {
  min-height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: rgba(10,16,22,.72);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
.hero-panel article strong { display: block; font-size: 1rem; }
.hero-panel article small { display: block; margin-top: .2rem; color: #9eabb5; line-height: 1.3; }
.hero-panel__note {
  display: grid;
  gap: .2rem;
  margin-top: .75rem;
  padding: 1rem;
  color: #111820;
  background: var(--safety);
  border-radius: 14px;
}
.hero-panel__note span { font-size: .87rem; }

.icon {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  color: var(--accent);
}
.icon::before, .icon::after { content: ""; position: absolute; }
.icon--precision::before {
  inset: 5px;
  border: 3px solid currentColor;
  border-radius: 50%;
}
.icon--precision::after {
  width: 3px; height: 14px; left: 17px; top: 8px;
  background: currentColor; transform: rotate(38deg); transform-origin: bottom;
}
.icon--rigging::before {
  width: 20px; height: 20px; left: 8px; top: 4px;
  border: 3px solid currentColor; border-radius: 50%; border-bottom-color: transparent;
}
.icon--rigging::after {
  width: 10px; height: 13px; left: 13px; top: 17px;
  border: 3px solid currentColor; border-top: 0; border-radius: 0 0 8px 8px;
}
.icon--alignment::before {
  width: 30px; height: 7px; left: 3px; top: 14px; background: currentColor; border-radius: 4px;
  box-shadow: 0 -10px 0 -2px currentColor, 0 10px 0 -2px currentColor;
}
.icon--alignment::after { width: 4px; height: 34px; left: 16px; top: 1px; background: currentColor; }
.icon--hand::before {
  width: 29px; height: 8px; left: 2px; top: 14px; background: currentColor; border-radius: 6px; transform: rotate(-35deg);
}
.icon--hand::after {
  width: 11px; height: 15px; right: 0; top: 2px; border: 4px solid currentColor; border-left: 0; border-radius: 0 10px 10px 0; transform: rotate(-35deg);
}
.icon--consumables::before { width: 16px; height: 28px; left: 10px; top: 5px; border: 3px solid currentColor; border-radius: 3px 3px 7px 7px; }
.icon--consumables::after { width: 10px; height: 5px; left: 13px; top: 1px; background: currentColor; border-radius: 2px; }
.icon--storage::before { width: 30px; height: 20px; left: 3px; top: 11px; border: 3px solid currentColor; border-radius: 3px; }
.icon--storage::after { width: 14px; height: 8px; left: 11px; top: 4px; border: 3px solid currentColor; border-bottom: 0; border-radius: 5px 5px 0 0; }
.icon--power::before { width: 25px; height: 13px; left: 2px; top: 10px; border: 3px solid currentColor; border-radius: 4px 8px 8px 4px; transform: rotate(-7deg); }
.icon--power::after { width: 9px; height: 17px; left: 16px; top: 20px; background: currentColor; border-radius: 2px 2px 5px 5px; transform: rotate(-7deg); box-shadow: 12px -13px 0 -2px currentColor; }

.section { padding-block: 96px; }
.section--light { background: var(--paper-2); }
.section--dark { color: #fff; background: var(--ink); }
.section--guides { background: #fff; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  align-items: end;
  gap: 3rem;
  margin-bottom: 2.25rem;
}
.section-heading h2, .about-panel h2, .cta-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-heading--dark > p { color: #aab5bd; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.category-card {
  position: relative;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #c8cfd4; }
.category-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  background: #f3e9e2;
  border-radius: 12px;
}
.category-icon {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.category-card h3 { margin: 0; font-size: 1.35rem; letter-spacing: -.02em; }
.category-card p { margin: .75rem 0 1.5rem; color: var(--muted); font-size: .94rem; }
.category-card a {
  margin-top: auto;
  color: var(--accent-dark);
  font-weight: 850;
  text-decoration: none;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.tool-card {
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border-radius: 16px;
}
.tool-card__visual {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.45), transparent),
    #d8dde0;
}
.popular-tool-illustration {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
}
.tool-card__visual::before,
.tool-card__visual::after { content: ""; position: absolute; background: #26323c; }
.tool-card__visual--pliers::before { width: 18px; height: 125px; left: 43%; top: 32px; border-radius: 12px; transform: rotate(-18deg); box-shadow: 34px 8px 0 #26323c; }
.tool-card__visual--pliers::after { width: 70px; height: 45px; left: 35%; top: 24px; border: 11px solid #26323c; border-bottom: 0; border-radius: 35px 35px 0 0; transform: rotate(8deg); background: transparent; }
.tool-card__visual--wrench::before { width: 30px; height: 145px; left: 46%; top: 22px; border-radius: 10px; transform: rotate(32deg); }
.tool-card__visual--wrench::after { width: 76px; height: 56px; left: 35%; top: 18px; border: 15px solid #26323c; border-right-color: transparent; border-radius: 50%; transform: rotate(32deg); background: transparent; }
.tool-card__visual--hammer::before { width: 34px; height: 128px; left: 48%; top: 55px; border-radius: 8px; transform: rotate(-12deg); background: #7a4b2b; }
.tool-card__visual--hammer::after { width: 130px; height: 54px; left: 26%; top: 32px; border-radius: 17px; transform: rotate(-8deg); background: #26323c; }
.tool-card__visual--bar::before { width: 20px; height: 175px; left: 48%; top: 8px; border-radius: 9px; transform: rotate(50deg); }
.tool-card__visual--bar::after { width: 36px; height: 54px; left: 28%; top: 112px; border-radius: 4px 4px 18px 18px; transform: rotate(50deg); }
.tool-card__content { padding: 1.25rem; }
.tool-card__category { color: var(--accent-dark); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.tool-card h3 { min-height: 2.7em; margin: .45rem 0 .55rem; font-size: 1.16rem; line-height: 1.25; }
.tool-card p { min-height: 5.4em; margin: 0 0 1rem; color: var(--muted); font-size: .9rem; }
.tool-card a { color: var(--ink); font-size: .88rem; font-weight: 850; text-decoration: none; }
.tool-card a:hover { color: var(--accent-dark); }

.about-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 5rem;
  align-items: center;
}
.about-panel > p:not(.eyebrow) { max-width: 760px; color: #53606b; font-size: 1.06rem; }
.about-panel__emphasis {
  padding-left: 1rem;
  color: var(--ink) !important;
  border-left: 4px solid var(--accent);
  font-weight: 750;
}
.experience-card {
  padding: 2rem;
  color: #fff;
  background: linear-gradient(145deg, #111820, #25313b);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.experience-card__label { color: var(--safety); font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.experience-card > strong { display: block; margin-top: .45rem; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -.06em; }
.experience-card p { color: #b9c3ca; }
.experience-card__rule { height: 1px; margin: 1.4rem 0; background: rgba(255,255,255,.16); }
.experience-card ul { display: grid; gap: .65rem; padding: 0; margin: 0; list-style: none; }
.experience-card li::before { content: "—"; margin-right: .5rem; color: var(--accent); }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.guide-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.guide-card__tag { align-self: flex-start; padding: .38rem .58rem; color: var(--accent-dark); background: #f4e4da; border-radius: 999px; font-size: .7rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.guide-card h3 { margin: 1.3rem 0 .65rem; font-size: 1.35rem; }
.guide-card p { margin: 0; color: var(--muted); }
.guide-card__status { margin-top: auto; padding-top: 1.5rem; color: #53606b; font-size: .82rem; font-weight: 800; }

.cta-section { padding-block: 66px; color: #fff; background: var(--accent-dark); }
.cta-section__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-section .eyebrow { color: #ffd0b3; }
.cta-section h2 { max-width: 790px; font-size: clamp(1.8rem, 4vw, 3rem); }
.cta-section .button--primary { color: var(--ink); background: #fff; white-space: nowrap; }

.site-footer { padding-top: 70px; color: #c4cdd3; background: #0b1016; }
.footer__grid { display: grid; grid-template-columns: 1.4fr .6fr .6fr; gap: 4rem; padding-bottom: 45px; }
.brand--footer { color: #fff; }
.footer__grid p { max-width: 470px; color: #909ca6; }
.footer__grid h2 { margin: 0 0 1rem; color: #fff; font-size: .83rem; letter-spacing: .1em; text-transform: uppercase; }
.footer__grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.footer__grid a:not(.brand) { color: #aeb8c0; font-size: .9rem; text-decoration: none; }
.footer__grid a:hover { color: #fff; }
.affiliate-disclosure { padding: 1.2rem; color: #aab4bc; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08); border-radius: 10px; font-size: .82rem; }
.affiliate-disclosure strong { color: #fff; }
.footer__bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: #77838d; font-size: .8rem; }

/* Tool Categories page */
.primary-nav a[aria-current="page"] { color: var(--accent-dark); }
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: radial-gradient(circle at 82% 18%, rgba(230,106,31,.2), transparent 31%), linear-gradient(135deg, #0d141b, #1a2630 62%, #111820);
}
.page-hero__texture { position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 44px 44px; mask-image: linear-gradient(to right, black, transparent 88%); }
.page-hero__inner { position: relative; max-width: 920px; padding-block: 78px 88px; }
.breadcrumbs { display: flex; gap: .55rem; margin-bottom: 3.4rem; color: #9fabb4; font-size: .82rem; font-weight: 700; }
.breadcrumbs a { color: #d5dde2; text-decoration: none; }
.breadcrumbs a:hover { color: var(--safety); }
.page-hero h1 { max-width: 800px; margin: 0; font-size: clamp(3rem, 7vw, 5.8rem); line-height: .96; letter-spacing: -.06em; }
.page-hero__inner > p:not(.eyebrow) { max-width: 760px; margin: 1.4rem 0 2rem; color: #d1d9de; font-size: clamp(1.05rem, 2vw, 1.28rem); }
.page-hero .button { width: auto; }
.category-intro { color: #fff; background: var(--accent-dark); }
.category-intro__grid { min-height: 126px; display: grid; grid-template-columns: .45fr 1fr; align-items: center; gap: 4rem; }
.category-intro strong { font-size: 1.2rem; }
.category-intro p { margin: 0; color: #ffddc8; }
.category-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.directory-card { min-height: 390px; display: flex; flex-direction: column; padding: 1.7rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); scroll-margin-top: 105px; }
.directory-card--apprentice { border-color: #e2a05d; box-shadow: inset 0 4px 0 var(--accent); }
.directory-card__heading { display: block; }
.directory-card__label { margin: 0 0 .2rem !important; color: var(--accent-dark) !important; font-size: .7rem !important; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.directory-card h3 { margin: 0; font-size: 1.55rem; line-height: 1.15; letter-spacing: -.03em; }
.directory-card > p { margin: 1.35rem 0; color: var(--muted); }
.directory-card__support { display: grid; gap: .4rem; padding: 1rem; background: var(--paper-2); border-left: 3px solid var(--accent); border-radius: 0 9px 9px 0; }
.directory-card__support strong { color: var(--ink); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.directory-card__support span { color: #53606b; font-size: .9rem; }
.directory-card__status { margin-top: auto; padding-top: 1.3rem; color: #707d87; font-size: .78rem; font-weight: 800; }
.directory-card__link { margin-top: auto; padding-top: 1.3rem; color: var(--safety); font-size: .9rem; font-weight: 850; text-decoration: none; }
.directory-card__link:hover { color: #fff; }
.category-next { padding-block: 82px; color: #fff; background: linear-gradient(135deg, #151e26, #0b1016); }
.category-next__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4rem; }
.category-next h2 { max-width: 780px; margin: 0; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.045em; }
.category-next p:not(.eyebrow) { max-width: 760px; margin: 1.1rem 0 0; color: #abb6be; }
.category-next .button { white-space: nowrap; }

/* Millwright Hand Tools page */
.hand-tools-hero .page-hero__inner { max-width: 980px; }
.group-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
.group-grid a { display: grid; grid-template-columns: 42px 1fr; column-gap: 1rem; align-items: center; min-height: 108px; padding: 1rem 1.2rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 13px; text-decoration: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.group-grid a:hover { transform: translateY(-3px); border-color: #c6cdd2; box-shadow: 0 12px 30px rgba(16,24,32,.08); }
.group-grid span { grid-row: 1 / span 2; width: 42px; height: 42px; display: grid; place-items: center; color: var(--accent-dark); background: #f4e4da; border-radius: 9px; font-size: .75rem; font-weight: 900; }
.group-grid strong { align-self: end; line-height: 1.2; }
.group-grid small { align-self: start; color: var(--muted); }
.featured-tool { display: grid; grid-template-columns: minmax(290px, .72fr) 1.28fr; margin-bottom: 1.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; scroll-margin-top: 105px; box-shadow: 0 12px 40px rgba(16,24,32,.07); }
.featured-tool__visual { position: relative; min-height: 100%; overflow: hidden; background: linear-gradient(145deg, rgba(255,255,255,.42), transparent), #d8dde0; }
.featured-tool__visual::before, .featured-tool__visual::after { content: ""; position: absolute; background: #26323c; }
.featured-tool__visual.tool-card__visual--pliers::before { height: 210px; top: 19%; }.featured-tool__visual.tool-card__visual--pliers::after { top: 16%; }
.featured-tool__visual.tool-card__visual--wrench::before { height: 245px; top: 16%; }.featured-tool__visual.tool-card__visual--wrench::after { top: 14%; }
.featured-tool__visual.tool-card__visual--hammer::before { height: 220px; top: 28%; }.featured-tool__visual.tool-card__visual--hammer::after { top: 20%; }
.featured-tool__visual.tool-card__visual--bar::before { height: 300px; top: 16%; }.featured-tool__visual.tool-card__visual--bar::after { top: 48%; }
.featured-tool__visual > span { position: absolute; left: 1.15rem; bottom: 1rem; z-index: 2; padding: .35rem .55rem; color: #53606b; background: rgba(255,255,255,.75); border-radius: 5px; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.featured-tool__visual--approved-image { display: grid; place-items: center; padding: clamp(1rem, 3vw, 2rem); }
.featured-tool__visual--approved-image::before, .featured-tool__visual--approved-image::after { content: none; }
.featured-tool__visual--approved-image img { display: block; width: 100%; height: 100%; max-width: 330px; max-height: 330px; object-fit: contain; }
.featured-tool__visual--image { display: grid; place-items: center; padding: clamp(1rem, 3vw, 2rem); }
.featured-tool__visual--image::before, .featured-tool__visual--image::after { content: none; }
.featured-tool__reused-image { display: block; width: 100%; height: 100%; max-width: 360px; max-height: 360px; object-fit: contain; }
.featured-tool__body { padding: 2rem; }.featured-tool__type { margin: 0 0 .4rem; color: var(--accent-dark); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.featured-tool h3 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.08; letter-spacing: -.04em; }.featured-tool__summary { margin: .8rem 0 1.5rem; color: #53606b; font-size: 1.04rem; }
.tool-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 0; overflow: hidden; background: var(--line); border: 1px solid var(--line); border-radius: 11px; }.tool-details div { padding: 1rem; background: var(--paper-2); }.tool-details dt { margin-bottom: .35rem; color: var(--ink); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }.tool-details dd { margin: 0; color: #53606b; font-size: .9rem; }
.field-note, .selection-reminder { margin: 1rem 0; padding: 1rem; background: #fff5ed; border-left: 4px solid var(--accent); border-radius: 0 9px 9px 0; }.field-note strong, .selection-reminder strong { color: var(--accent-dark); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase; }.field-note p, .selection-reminder p { margin: .3rem 0 0; color: #4e5a64; font-size: .9rem; }
.button--affiliate { width: 100%; min-height: 48px; color: #fff; background: var(--ink); }.button--affiliate:hover { background: var(--accent-dark); }
.buying-basics__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 5rem; align-items: start; }.buying-basics h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.045em; }.buying-basics ul { display: grid; gap: .8rem; padding: 0; margin: 0; list-style: none; }.buying-basics li { padding: 1rem 1.1rem; color: #53606b; background: #fff; border: 1px solid var(--line); border-radius: 10px; }.buying-basics li strong { color: var(--ink); }

/* Precision Tools page */
.precision-tools-hero .page-hero__inner { max-width: 1020px; }
.precision-visual { display: grid; place-items: center; }
.precision-visual .tool-shape { position: relative; width: 210px; height: 210px; filter: drop-shadow(0 16px 16px rgba(17,24,32,.18)); }
.tool-shape::before, .tool-shape::after { content: ""; position: absolute; box-sizing: border-box; }
.shape-indicator::before { width: 130px; height: 130px; left: 40px; top: 20px; border: 18px solid #26323c; border-radius: 50%; background: #edf0f2; box-shadow: inset 0 0 0 4px #9aa5ad; }
.shape-indicator::after { width: 12px; height: 85px; left: 99px; top: 68px; background: #e66a1f; border-radius: 8px; transform: rotate(38deg); transform-origin: 6px 6px; box-shadow: 0 93px 0 -3px #26323c; }
.shape-base::before { width: 116px; height: 62px; left: 47px; bottom: 20px; background: #26323c; border-radius: 10px 10px 18px 18px; box-shadow: 0 -8px 0 #e66a1f; }
.shape-base::after { width: 18px; height: 145px; left: 95px; top: 18px; background: #53606b; border-radius: 9px; box-shadow: 48px 18px 0 -3px #26323c; transform: rotate(2deg); }
.shape-level::before { width: 190px; height: 54px; left: 10px; top: 78px; background: #26323c; border-radius: 6px; transform: rotate(-8deg); box-shadow: inset 0 -9px 0 #111820; }
.shape-level::after { width: 62px; height: 28px; left: 74px; top: 87px; border: 8px solid #e66a1f; border-radius: 20px; background: #f5e08d; transform: rotate(-8deg); }
.shape-feeler::before { width: 36px; height: 168px; left: 88px; top: 20px; background: #26323c; border-radius: 8px 8px 18px 18px; transform: rotate(-42deg); box-shadow: 12px 8px 0 #59656e, 24px 16px 0 #7a858d, 36px 24px 0 #a0a9af; }
.shape-feeler::after { width: 26px; height: 26px; left: 116px; top: 32px; border: 7px solid #e66a1f; border-radius: 50%; background: #d8dde0; }
.shape-taper::before { width: 48px; height: 180px; left: 81px; top: 14px; background: linear-gradient(90deg,#aab3b9,#f4f6f7 48%,#838f97); clip-path: polygon(35% 0,65% 0,100% 100%,0 100%); transform: rotate(25deg); }
.shape-taper::after { width: 52px; height: 5px; left: 105px; top: 103px; background: #26323c; transform: rotate(25deg); box-shadow: 0 18px 0 #26323c, 0 36px 0 #26323c, 0 54px 0 #26323c; }
.shape-micrometer::before { width: 145px; height: 155px; left: 16px; top: 26px; border: 28px solid #26323c; border-right: 0; border-radius: 80px 0 0 80px; }
.shape-micrometer::after { width: 86px; height: 42px; right: 8px; top: 83px; background: #e66a1f; border: 9px solid #26323c; border-radius: 4px 18px 18px 4px; box-shadow: -49px 9px 0 -13px #26323c; }
.precision-uses { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; margin: 0; padding: 0; list-style: none; }
.precision-uses li { padding: 1.2rem; color: #53606b; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: 10px; }
.precision-uses strong { display: block; margin-bottom: .35rem; color: var(--ink); }
.related-links { display: grid; grid-template-columns: repeat(4,1fr); gap: .75rem; margin-top: 2rem; }
.related-links a { padding: 1rem; color: #fff; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: 10px; font-weight: 800; text-decoration: none; }
.related-links a:hover { color: var(--safety); border-color: var(--accent); }

/* Alignment Tools page */
.alignment-tools-hero .page-hero__inner { max-width: 1010px; }
.alignment-visual { background: linear-gradient(145deg, rgba(255,255,255,.5), transparent), #d5dade; }
.shape-laser::before { width: 62px; height: 112px; left: 22px; top: 48px; background: #26323c; border: 8px solid #111820; border-radius: 12px; box-shadow: 104px 0 0 -8px #26323c, 104px 0 0 0 #111820; }
.shape-laser::after { width: 102px; height: 4px; left: 79px; top: 101px; background: #e66a1f; box-shadow: 0 0 12px rgba(230,106,31,.8); }
.shape-dial-kit::before { width: 92px; height: 92px; left: 59px; top: 20px; border: 14px solid #26323c; border-radius: 50%; background: #eef1f2; box-shadow: inset 0 0 0 3px #9aa5ad; }
.shape-dial-kit::after { width: 174px; height: 14px; left: 18px; top: 145px; background: #53606b; border-radius: 7px; box-shadow: 36px -50px 0 -4px #e66a1f; transform: rotate(-7deg); }
.shape-shims::before { width: 116px; height: 145px; left: 45px; top: 30px; border: 14px solid #7e8991; border-radius: 8px; background: linear-gradient(135deg,#f7f8f8,#aeb7bd); box-shadow: 18px 13px 0 -4px #aeb7bd, 35px 26px 0 -8px #7e8991; transform: skewY(-5deg); }
.shape-shims::after { width: 42px; height: 78px; left: 82px; top: 16px; background: #d5dade; border-radius: 0 0 20px 20px; }
.shape-straightedge::before { width: 192px; height: 36px; left: 9px; top: 88px; background: linear-gradient(#eef1f2,#89959d); border: 5px solid #26323c; border-radius: 4px; transform: rotate(-12deg); }
.shape-straightedge::after { width: 4px; height: 24px; left: 54px; top: 89px; background: #26323c; transform: rotate(-12deg); box-shadow: 32px 7px 0 #26323c, 64px 14px 0 #26323c, 96px 20px 0 #26323c; }
.workflow-list { counter-reset: align-step; display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; padding: 0; margin: 0; list-style: none; }
.workflow-list li { counter-increment: align-step; position: relative; min-height: 120px; padding: 1.2rem 1.2rem 1.2rem 4.5rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.workflow-list li::before { content: counter(align-step, decimal-leading-zero); position: absolute; top: 1.15rem; left: 1.15rem; width: 42px; height: 42px; display: grid; place-items: center; color: var(--accent-dark); background: #f4e4da; border-radius: 9px; font-size: .75rem; font-weight: 900; }
.workflow-list strong { display: block; margin-bottom: .25rem; color: var(--ink); }
.workflow-list span { color: #53606b; font-size: .92rem; }
.workflow-note { margin-top: 1rem; padding: 1.25rem 1.4rem; color: #fff; background: var(--ink); border-left: 5px solid var(--accent); border-radius: 10px; }
.workflow-note strong { color: var(--safety); }
.workflow-note p { margin: .35rem 0 0; color: #c8d0d6; }
.buying-guidance__lead { max-width: 530px; color: #53606b; }
.related-links--six { grid-template-columns: repeat(3,1fr); }

/* Rigging Equipment page */
.rigging-tools-hero .page-hero__inner { max-width: 1040px; }
.rigging-visual { display: grid; place-items: center; background: linear-gradient(145deg, rgba(255,255,255,.5), transparent), #d4dade; }
.rigging-visual .tool-shape { position: relative; width: 210px; height: 210px; filter: drop-shadow(0 16px 16px rgba(17,24,32,.18)); }
.rig-shape-chain-hoist::before { width: 72px; height: 94px; left: 69px; top: 30px; background: #26323c; border: 8px solid #111820; border-radius: 18px 18px 28px 28px; box-shadow: inset 0 -12px 0 #e66a1f; }
.rig-shape-chain-hoist::after { width: 74px; height: 108px; left: 68px; top: 92px; border: 7px dotted #59656e; border-top: 0; border-radius: 0 0 35px 35px; }
.rig-shape-lever::before { width: 76px; height: 76px; left: 67px; top: 22px; background: #26323c; border: 8px solid #111820; border-radius: 50%; box-shadow: inset 0 0 0 8px #e66a1f; }
.rig-shape-lever::after { width: 26px; height: 132px; left: 92px; top: 78px; background: #53606b; border: 7px solid #26323c; border-radius: 8px 8px 18px 18px; transform: rotate(-16deg); transform-origin: top; }
.rig-shape-web-sling::before { width: 120px; height: 170px; left: 45px; top: 18px; border: 20px solid #e66a1f; border-radius: 60px; transform: rotate(22deg); }
.rig-shape-web-sling::after { width: 48px; height: 20px; left: 82px; top: 95px; background: #f1b42f; border: 3px solid #26323c; transform: rotate(22deg); }
.rig-shape-round-sling::before { width: 132px; height: 176px; left: 39px; top: 14px; border: 15px solid #d8a525; border-radius: 50%; transform: rotate(-18deg); box-shadow: inset 0 0 0 3px #f2d15f; }
.rig-shape-round-sling::after { width: 45px; height: 24px; left: 83px; top: 92px; background: #fff; border: 4px solid #26323c; border-radius: 4px; transform: rotate(-18deg); }
.rig-shape-shackle::before { width: 126px; height: 150px; left: 42px; top: 28px; border: 25px solid #59656e; border-top: 0; border-radius: 0 0 68px 68px; }
.rig-shape-shackle::after { width: 154px; height: 25px; left: 28px; top: 22px; background: #26323c; border-radius: 12px; box-shadow: 126px 0 0 -5px #e66a1f; }
.rig-shape-beam-clamp::before { width: 160px; height: 28px; left: 25px; top: 48px; background: #26323c; box-shadow: 0 16px 0 -6px #111820; }
.rig-shape-beam-clamp::after { width: 110px; height: 100px; left: 50px; top: 70px; border: 22px solid #59656e; border-top: 0; border-radius: 0 0 28px 28px; box-shadow: inset 0 -8px 0 #e66a1f; }
.rig-shape-skates::before { width: 150px; height: 54px; left: 30px; top: 72px; background: #26323c; border-radius: 7px; box-shadow: inset 0 10px 0 #e66a1f; transform: skewX(-12deg); }
.rig-shape-skates::after { width: 34px; height: 34px; left: 48px; top: 120px; background: #76828a; border: 7px solid #111820; border-radius: 50%; box-shadow: 80px 0 0 -7px #76828a, 80px 0 0 0 #111820; }
.rig-shape-toe-jack::before { width: 86px; height: 132px; left: 76px; top: 25px; background: #26323c; border-radius: 12px 12px 5px 5px; box-shadow: inset 0 16px 0 #e66a1f; }
.rig-shape-toe-jack::after { width: 124px; height: 34px; left: 44px; top: 145px; background: #111820; border-radius: 4px; box-shadow: 62px -69px 0 -11px #59656e; }
.rigging-check-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; padding: 0; margin: 0; list-style: none; }
.rigging-check-grid li { padding: 1.1rem; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: 10px; }
.rigging-check-grid strong, .rigging-check-grid span { display: block; }
.rigging-check-grid span { margin-top: .25rem; color: #53606b; font-size: .92rem; }
.inspection-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; }
.inspection-grid ul { margin: 0; padding: 1.2rem 1.2rem 1.2rem 2.6rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.inspection-grid li { margin: .55rem 0; color: #53606b; }.inspection-grid li::marker { color: var(--accent); }
.safety-callout { margin-top: 1rem; padding: 1.25rem 1.4rem; color: #fff; background: var(--ink); border-left: 5px solid var(--safety); border-radius: 10px; }
.safety-callout strong { color: var(--safety); }.safety-callout p { margin: .35rem 0 0; color: #c8d0d6; }
.rigging-safety { padding-top: 0; background: var(--paper-2); }
.safety-panel { padding: clamp(1.5rem, 5vw, 3rem); color: #fff; background: linear-gradient(135deg,#151e26,#0b1016); border: 1px solid #26323c; border-left: 7px solid var(--accent); border-radius: 16px; }
.safety-panel h2 { margin: 0; font-size: clamp(2rem,4vw,3.3rem); }.safety-panel ul { margin: 1.2rem 0 0; padding-left: 1.4rem; color: #d5dce1; }.safety-panel li { margin: .6rem 0; }

/* Consumables page */
.consumables-hero .page-hero__inner { max-width: 1050px; }
.consumable-visual { display: grid; place-items: center; background: linear-gradient(145deg, rgba(255,255,255,.54), transparent), #d5dade; }
.consumable-visual .tool-shape { position: relative; width: 210px; height: 210px; filter: drop-shadow(0 16px 16px rgba(17,24,32,.17)); }
.consumable-shape-can::before { width: 96px; height: 142px; left: 57px; top: 48px; background: #26323c; border: 8px solid #111820; border-radius: 7px 7px 13px 13px; box-shadow: inset 0 -38px 0 #e66a1f; }
.consumable-shape-can::after { width: 65px; height: 28px; left: 74px; top: 23px; background: #59656e; border: 7px solid #26323c; border-radius: 9px 9px 3px 3px; box-shadow: 38px -12px 0 -10px #e66a1f; }
.consumable-shape-bottle::before { width: 88px; height: 132px; left: 61px; top: 62px; background: #e7ecef; border: 8px solid #26323c; border-radius: 16px 16px 25px 25px; box-shadow: inset 0 -48px 0 var(--bottle-color,#2b72b8); }
.consumable-shape-bottle::after { width: 56px; height: 50px; left: 77px; top: 21px; background: #26323c; border-radius: 5px 5px 10px 10px; box-shadow: inset 0 10px 0 #59656e; }
.consumable-shape-blue { --bottle-color:#2878bd; }.consumable-shape-red { --bottle-color:#b52d2d; }.consumable-shape-green { --bottle-color:#27865b; }
.consumable-shape-jar::before { width: 132px; height: 95px; left: 39px; top: 91px; background: linear-gradient(#dfe4e7,#9ba6ad); border: 9px solid #26323c; border-radius: 8px 8px 18px 18px; box-shadow: inset 0 -29px 0 #b7a383; }
.consumable-shape-jar::after { width: 144px; height: 32px; left: 33px; top: 66px; background: #26323c; border-radius: 8px; box-shadow: 96px -32px 0 -10px #815c37; transform: rotate(-3deg); }
.consumable-shape-dykem::before { width: 102px; height: 140px; left: 54px; top: 48px; background: #174f89; border: 8px solid #26323c; border-radius: 8px 8px 16px 16px; box-shadow: inset 0 38px 0 #1e6eb7; }
.consumable-shape-dykem::after { width: 55px; height: 44px; left: 78px; top: 13px; background: #26323c; border-radius: 8px 8px 3px 3px; box-shadow: 45px 33px 0 -14px #815c37; }
.consumable-shape-shims::before { width: 118px; height: 148px; left: 43px; top: 29px; border: 13px solid #7d8991; border-radius: 7px; background: linear-gradient(135deg,#f7f8f8,#adb6bc); box-shadow: 15px 11px 0 -3px #aeb7bd, 30px 22px 0 -6px #7d8991; transform: skewY(-5deg); }
.consumable-shape-shims::after { width: 42px; height: 78px; left: 81px; top: 15px; background: #d5dade; border-radius: 0 0 20px 20px; }
.consumable-shape-tube::before { width: 78px; height: 158px; left: 66px; top: 34px; background: #eceff1; border: 8px solid #26323c; border-radius: 9px 9px 18px 18px; transform: rotate(24deg); box-shadow: inset 0 51px 0 #e66a1f; }
.consumable-shape-tube::after { width: 34px; height: 44px; left: 126px; top: 24px; background: #26323c; border-radius: 4px 4px 11px 11px; transform: rotate(24deg); }
.selection-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; }
.selection-grid article { padding: 1.25rem; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--accent); border-radius: 11px; }
.selection-grid h3 { margin: 0 0 .45rem; font-size: 1.06rem; }.selection-grid p { margin: 0; color: #53606b; font-size: .92rem; }
.consumables-safety { padding-top: 0; background: var(--paper-2); }
.related-links--five { grid-template-columns: repeat(5,1fr); }

/* Machinery Installation Tools page */
.installation-tools-hero .page-hero__inner { max-width: 1060px; }
.installation-visual { display: grid; place-items: center; background: linear-gradient(145deg, rgba(255,255,255,.54), transparent), #d4dade; }
.installation-visual .tool-shape { position: relative; width: 210px; height: 210px; filter: drop-shadow(0 16px 16px rgba(17,24,32,.18)); }
.install-shape-toe-jack::before { width: 82px; height: 130px; left: 79px; top: 26px; background: #26323c; border: 8px solid #111820; border-radius: 13px 13px 5px 5px; box-shadow: inset 0 17px 0 #e66a1f; }
.install-shape-toe-jack::after { width: 128px; height: 32px; left: 41px; top: 151px; background: #111820; border-radius: 4px; box-shadow: 65px -66px 0 -10px #65717a; }
.install-shape-skates::before { width: 156px; height: 52px; left: 27px; top: 73px; background: #26323c; border-radius: 7px; box-shadow: inset 0 10px 0 #e66a1f; transform: skewX(-11deg); }
.install-shape-skates::after { width: 34px; height: 34px; left: 44px; top: 119px; background: #7a858d; border: 7px solid #111820; border-radius: 50%; box-shadow: 84px 0 0 -7px #7a858d, 84px 0 0 0 #111820; }
.install-shape-ram::before { width: 60px; height: 132px; left: 35px; top: 38px; background: #26323c; border: 8px solid #111820; border-radius: 10px; box-shadow: inset 0 26px 0 #e66a1f, 0 23px 0 -18px #59656e; transform: rotate(-9deg); }
.install-shape-ram::after { width: 86px; height: 74px; right: 22px; bottom: 27px; background: #59656e; border: 8px solid #26323c; border-radius: 13px 13px 8px 8px; box-shadow: -13px -72px 0 -33px #e66a1f; transform: rotate(7deg); }
.install-shape-wedges::before { width: 154px; height: 58px; left: 28px; top: 79px; background: linear-gradient(150deg,#dfe4e7,#7e8991); border: 6px solid #26323c; clip-path: polygon(0 70%,100% 0,100% 100%,0 100%); transform: rotate(-7deg); }
.install-shape-wedges::after { width: 148px; height: 48px; left: 33px; top: 105px; background: linear-gradient(25deg,#89949b,#e7ebed); border: 6px solid #26323c; clip-path: polygon(0 0,100% 50%,100% 100%,0 100%); transform: rotate(9deg); }
.install-shape-screws::before { width: 24px; height: 158px; left: 67px; top: 25px; background: repeating-linear-gradient(0deg,#26323c 0 7px,#8c979e 7px 11px); border-radius: 5px; transform: rotate(16deg); box-shadow: 72px -18px 0 -4px #59656e; }
.install-shape-screws::after { width: 86px; height: 22px; left: 34px; top: 43px; background: #e66a1f; border: 6px solid #26323c; border-radius: 4px; transform: rotate(16deg); box-shadow: 73px 72px 0 -4px #26323c; }
.install-shape-shims::before { width: 120px; height: 148px; left: 42px; top: 30px; border: 13px solid #7d8991; border-radius: 7px; background: linear-gradient(135deg,#f7f8f8,#adb6bc); box-shadow: 15px 11px 0 -3px #aeb7bd, 30px 22px 0 -6px #7d8991; transform: skewY(-5deg); }
.install-shape-shims::after { width: 42px; height: 78px; left: 81px; top: 16px; background: #d4dade; border-radius: 0 0 20px 20px; }
.install-shape-dolly::before { width: 154px; height: 55px; left: 28px; top: 72px; background: linear-gradient(#59656e,#26323c); border: 7px solid #111820; border-radius: 8px; box-shadow: inset 0 10px 0 #e66a1f; }
.install-shape-dolly::after { width: 28px; height: 48px; left: 46px; top: 119px; background: #8f999f; border: 6px solid #26323c; border-radius: 8px; box-shadow: 44px 0 0 -6px #8f999f, 44px 0 0 0 #26323c, 88px 0 0 -6px #8f999f, 88px 0 0 0 #26323c; }
.install-shape-grout::before { width: 118px; height: 82px; left: 46px; top: 101px; background: #8a949b; border: 8px solid #26323c; border-radius: 7px 7px 22px 22px; box-shadow: inset 0 -26px 0 #b9b2a6; }
.install-shape-grout::after { width: 82px; height: 18px; left: 91px; top: 58px; background: #e66a1f; border: 5px solid #26323c; border-radius: 4px; transform: rotate(-29deg); box-shadow: -66px -24px 0 -4px #59656e; }

/* Tool Storage V1 */
.storage-visual { display:grid; place-items:center; background:linear-gradient(145deg,rgba(255,255,255,.55),transparent),#d4dade; }
.storage-visual .tool-shape { position:relative; width:210px; height:210px; filter:drop-shadow(0 16px 16px rgba(17,24,32,.18)); }
.storage-cabinet::before { width:142px;height:150px;left:34px;top:22px;background:#26323c;border:7px solid #111820;border-radius:5px;box-shadow:inset 0 28px 0 #e66a1f,inset 0 58px 0 #59656e,inset 0 63px 0 #111820,inset 0 93px 0 #59656e,inset 0 98px 0 #111820; }
.storage-cabinet::after { width:24px;height:24px;left:46px;top:169px;background:#111820;border-radius:50%;box-shadow:92px 0 0 #111820; }
.storage-jobbox::before { width:166px;height:98px;left:22px;top:64px;background:#59656e;border:8px solid #26323c;border-radius:6px;box-shadow:inset 0 15px 0 #e66a1f;transform:perspective(150px) rotateX(-3deg); }
.storage-jobbox::after { width:42px;height:30px;left:84px;top:96px;border:7px solid #111820;border-radius:4px;background:#7e8991; }
.storage-modular::before { width:126px;height:50px;left:42px;top:33px;background:#26323c;border:7px solid #111820;border-radius:8px;box-shadow:0 56px 0 -7px #e66a1f,0 56px 0 0 #111820,0 112px 0 -7px #59656e,0 112px 0 0 #111820; }
.storage-modular::after { width:20px;height:20px;left:55px;top:177px;background:#111820;border-radius:50%;box-shadow:80px 0 0 #111820; }
.storage-tote::before { width:156px;height:92px;left:27px;top:83px;background:#59656e;border:7px solid #26323c;clip-path:polygon(8% 0,92% 0,100% 100%,0 100%);box-shadow:inset 0 -18px 0 #e66a1f; }
.storage-tote::after { width:100px;height:72px;left:55px;top:31px;border:10px solid #111820;border-bottom:0;border-radius:45px 45px 0 0; }
.storage-backpack::before { width:126px;height:146px;left:42px;top:38px;background:#26323c;border:8px solid #111820;border-radius:34px 34px 16px 16px;box-shadow:inset 0 -40px 0 #59656e,inset 0 -48px 0 #e66a1f; }
.storage-backpack::after { width:58px;height:24px;left:76px;top:18px;border:8px solid #111820;border-bottom:0;border-radius:30px 30px 0 0; }
.storage-sockets::before { width:160px;height:26px;left:25px;top:130px;background:#e66a1f;border:6px solid #26323c;border-radius:5px; }
.storage-sockets::after { width:22px;height:52px;left:39px;top:77px;background:#7f8a91;border:5px solid #26323c;border-radius:5px 5px 2px 2px;box-shadow:35px 8px 0 -2px #9ca5aa,35px 8px 0 3px #26323c,72px -4px 0 -1px #7f8a91,72px -4px 0 4px #26323c,108px 4px 0 -3px #9ca5aa,108px 4px 0 2px #26323c; }
.storage-wrenches::before { width:30px;height:150px;left:50px;top:32px;background:#7f8a91;border:5px solid #26323c;border-radius:15px;transform:rotate(18deg);box-shadow:43px -14px 0 -2px #a3abb0,43px -14px 0 3px #26323c,86px -24px 0 -4px #7f8a91,86px -24px 0 1px #26323c; }
.storage-wrenches::after { width:160px;height:28px;left:25px;top:151px;background:#e66a1f;border:6px solid #26323c;border-radius:5px; }
.storage-case::before { width:160px;height:112px;left:25px;top:62px;background:#26323c;border:8px solid #111820;border-radius:10px;box-shadow:inset 0 0 0 12px #69757d,inset 0 0 0 16px #e66a1f; }
.storage-case::after { width:64px;height:26px;left:73px;top:42px;border:8px solid #111820;border-bottom:0;border-radius:8px 8px 0 0; }
.storage-compare { display:grid;grid-template-columns:repeat(2,1fr);gap:.9rem;margin-top:1.4rem; }
.storage-compare article { background:#fff;border:1px solid var(--line);border-left:4px solid var(--accent);padding:1rem 1.1rem;border-radius:8px; }
.storage-compare h3 { margin:0 0 .35rem;font-size:1rem; }.storage-compare p{margin:0;color:#53606b;font-size:.91rem;}
.organization-list { display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;list-style:none;padding:0;margin:1.3rem 0 0;counter-reset:organize; }
.organization-list li { counter-increment:organize;background:#fff;border:1px solid var(--line);border-radius:9px;padding:1rem;display:grid;grid-template-columns:36px 1fr;gap:.65rem;align-items:start; }
.organization-list li::before { content:counter(organize,decimal-leading-zero);color:var(--accent-dark);font-weight:800; }
.organization-list strong { display:block;color:#111820;margin-bottom:.25rem; }.organization-list span { color:#53606b;font-size:.91rem; }
@media (max-width:760px){.storage-compare,.organization-list{grid-template-columns:1fr;}}
.installation-process-list { counter-reset: install-step; display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; padding: 0; margin: 0; list-style: none; }
.installation-process-list li { counter-increment: install-step; position: relative; min-height: 142px; padding: 1.25rem 1.25rem 1.25rem 4.7rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
.installation-process-list li::before { content: counter(install-step, decimal-leading-zero); position: absolute; top: 1.2rem; left: 1.2rem; width: 44px; height: 44px; display: grid; place-items: center; color: #fff; background: var(--ink); border-bottom: 4px solid var(--accent); border-radius: 8px; font-size: .75rem; font-weight: 900; }
.installation-process-list strong, .installation-process-list span { display: block; }
.installation-process-list strong { margin-bottom: .35rem; color: var(--ink); }
.installation-process-list span { color: #53606b; font-size: .92rem; }
.installation-process-list a { color: var(--accent-dark); font-weight: 800; }
.installation-safety-panel strong { color: var(--safety); }

@media (max-width: 980px) {
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--paper-2);
  }
  .menu-toggle span:not(.sr-only) { width: 22px; height: 2px; background: var(--ink); }
  .primary-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: .8rem 20px 1.2rem;
    max-height: calc(100vh - 78px);
    max-height: calc(100dvh - 78px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(0,0,0,.08);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: .8rem .5rem; }
  .nav-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }
  .nav-dropdown::after { display: none; }
  .nav-dropdown__link { padding-right: .2rem !important; }
  .nav-dropdown__toggle {
    width: 40px;
    height: 40px;
    margin-left: 0;
    border: 1px solid #e0e4e7;
  }
  .nav-dropdown__menu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    margin: .15rem 0 .65rem;
    padding: .7rem;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    border-radius: 10px;
    box-shadow: none;
    transform: none;
    transition: none;
  }
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu { display: none; }
  .nav-dropdown.is-open .nav-dropdown__menu { display: block; }
  .nav-dropdown__menu::before { display: none; }
  .nav-dropdown__heading { margin-bottom: .45rem; }
  .primary-nav .nav-dropdown__grid a { min-height: 40px; padding: .58rem .7rem .58rem 1.55rem; }
  .primary-nav .nav-dropdown__all { padding: .7rem .75rem; }
  .primary-nav .nav-cta { margin-top: .4rem; text-align: center; }
  .hero__grid { grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .guide-grid { grid-template-columns: 1fr; }
  .category-next__inner { grid-template-columns: 1fr; gap: 2rem; }
  .featured-tool { grid-template-columns: 1fr; }.featured-tool__visual { min-height: 300px; }.buying-basics__grid { grid-template-columns: 1fr; gap: 2rem; }
  .related-links { grid-template-columns: repeat(2,1fr); }
  .related-links--six { grid-template-columns: repeat(2,1fr); }
  .related-links--five { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__experience { display: none; }
  .header__inner { min-height: 68px; }
  .primary-nav { top: 68px; }
  .nav-dropdown__grid { grid-template-columns: 1fr; }
  .primary-nav {
    max-height: calc(100vh - 68px);
    max-height: calc(100dvh - 68px);
  }
  .brand__text { font-size: 1.1rem; }
  .brand img { width: 42px; height: 42px; }
  .hero__grid { padding-block: 62px 70px; }
  .hero h1 { font-size: clamp(2.55rem, 14vw, 4.3rem); }
  .hero__actions { display: grid; }
  .button { width: 100%; }
  .hero__trust { display: grid; }
  .hero-panel__grid { grid-template-columns: 1fr 1fr; }
  .hero-panel article { min-height: 118px; }
  .section { padding-block: 70px; }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .category-grid, .tool-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 280px; }
  .tool-card p, .tool-card h3 { min-height: auto; }
  .guide-grid { grid-template-columns: 1fr; }
  .cta-section__inner { align-items: flex-start; flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 1rem; }
  .page-hero__inner { padding-block: 52px 62px; }
  .breadcrumbs { margin-bottom: 2.5rem; }
  .page-hero h1 { font-size: clamp(2.75rem, 15vw, 4.4rem); }
  .category-intro__grid { grid-template-columns: 1fr; gap: .45rem; padding-block: 1.4rem; }
  .category-list { grid-template-columns: 1fr; }
  .directory-card { min-height: 0; padding: 1.35rem; }
  .directory-card h3 { font-size: 1.32rem; }
  .category-next { padding-block: 64px; }
  .group-grid { grid-template-columns: 1fr; }.group-grid a { min-height: 96px; }.featured-tool__visual { min-height: 230px; }.featured-tool__body { padding: 1.3rem; }.tool-details { grid-template-columns: 1fr; }
  .precision-uses, .related-links { grid-template-columns: 1fr; }
  .workflow-list { grid-template-columns: 1fr; }
  .workflow-list li { min-height: 0; padding-right: 1rem; }
  .related-links--six { grid-template-columns: 1fr; }
  .rigging-check-grid, .inspection-grid { grid-template-columns: 1fr; }
  .selection-grid, .related-links--five { grid-template-columns: 1fr; }
  .installation-process-list { grid-template-columns: 1fr; }
  .installation-process-list li { min-height: 0; }
}

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

/* Legal pages */
.legal-hero {
  color: #fff;
  background:
    radial-gradient(circle at 82% 20%, rgba(230,106,31,.18), transparent 34%),
    linear-gradient(135deg,#0d141b,#17222c 58%,#111820);
  border-bottom: 4px solid var(--accent);
}
.legal-hero__inner { padding-block: clamp(3rem,7vw,5.5rem); }
.legal-hero h1 { margin: 0; font-size: clamp(2.7rem,7vw,5rem); line-height: 1; letter-spacing: -.05em; }
.legal-effective { margin: 1rem 0 0; color: #d6dde2; font-weight: 700; }
.legal-content { max-width: 830px; padding-block: clamp(3rem,7vw,5.5rem); }
.legal-content > * { max-width: 72ch; }
.legal-content .legal-intro { margin: 0 0 2.5rem; color: #34414c; font-size: 1.2rem; line-height: 1.7; }
.legal-content h2 { margin: 2.5rem 0 .65rem; font-size: clamp(1.45rem,3vw,1.9rem); line-height: 1.2; letter-spacing: -.025em; }
.legal-content h3 { margin: 1.5rem 0 .45rem; font-size: 1.12rem; }
.legal-content p { margin: 0 0 1rem; color: #3c4852; line-height: 1.75; }
.legal-content a { color: var(--accent-dark); font-weight: 700; text-underline-offset: 3px; }
.legal-content code { padding: .1rem .35rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: 4px; }
.legal-callout { padding: 1.25rem 1.35rem; background: #fff7ef; border-left: 5px solid var(--accent); border-radius: 0 var(--radius-small) var(--radius-small) 0; }
.legal-callout p { margin: 0; color: #26323c; font-weight: 650; }

/* Footer legal controls */
.footer-privacy-choices {
  width: fit-content;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
}
.footer-privacy-choices:hover { color: var(--accent); }

/* Analytics consent */
.analytics-consent {
  position: fixed;
  z-index: 900;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  background: rgba(11,16,22,.98);
  border: 1px solid #35424d;
  border-top: 4px solid var(--accent);
  border-radius: 12px;
  box-shadow: 0 18px 54px rgba(0,0,0,.38);
}
.analytics-consent[hidden] { display: none; }
.analytics-consent__inner { max-width: 1180px; margin-inline: auto; padding: 1rem 1.1rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.analytics-consent__copy { max-width: 760px; }
.analytics-consent h2 { margin: 0 0 .25rem; color: #fff; font-size: 1.05rem; letter-spacing: -.01em; }
.analytics-consent p { margin: 0; color: #d6dde2; font-size: .93rem; line-height: 1.5; }
.analytics-consent a { color: #ffb47d; font-weight: 750; text-underline-offset: 3px; }
.analytics-consent__actions { display: flex; flex: 0 0 auto; gap: .65rem; }
.analytics-consent .button { min-height: 44px; white-space: nowrap; cursor: pointer; }
.analytics-consent__decline { color: #fff; background: transparent; border-color: #aab4bc; }
.analytics-consent__decline:hover { background: #26323c; }

@media (max-width: 720px) {
  .analytics-consent { right: .6rem; bottom: .6rem; left: .6rem; }
  .analytics-consent__inner { align-items: stretch; flex-direction: column; gap: .85rem; padding: .9rem; }
  .analytics-consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .analytics-consent .button { padding-inline: .7rem; white-space: normal; }
}
@media (max-width: 390px) {
  .legal-content { width: min(calc(100% - 28px),830px); }
  .legal-content .legal-intro { font-size: 1.08rem; }
  .analytics-consent__actions { grid-template-columns: 1fr; }
}

.affiliate-link-disclosure {
  margin: .9rem 0 1.15rem;
  padding: .75rem .9rem;
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  background: var(--soft-orange-highlight);
  color: #252525;
  font-size: .9rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

/* Power Tools V1 */
.power-tools-hero .page-hero__inner { max-width: 1060px; }
.power-visual { display:grid; place-items:center; background:linear-gradient(145deg,rgba(255,255,255,.55),transparent),#d4dade; }
.power-visual .tool-shape { position:relative; width:210px; height:210px; filter:drop-shadow(0 16px 16px rgba(17,24,32,.18)); }
.power-impact::before { width:110px;height:66px;left:34px;top:51px;background:#26323c;border:7px solid #111820;border-radius:13px 23px 13px 10px;box-shadow:inset 0 17px 0 #e66a1f,90px 5px 0 -20px #737e86; }
.power-impact::after { width:48px;height:86px;left:71px;top:109px;background:#59656e;border:7px solid #26323c;border-radius:5px 5px 17px 17px;box-shadow:inset 0 -24px 0 #111820;transform:skewX(-7deg); }
.power-impact--large { transform:scale(1.08); }
.power-drill::before { width:124px;height:61px;left:23px;top:52px;background:#26323c;border:7px solid #111820;border-radius:11px 27px 11px 11px;box-shadow:inset 0 18px 0 #e66a1f,106px 4px 0 -18px #727e86,131px 4px 0 -23px #111820; }
.power-drill::after { width:47px;height:87px;left:67px;top:107px;background:#59656e;border:7px solid #26323c;border-radius:4px 4px 16px 16px;box-shadow:inset 0 -25px 0 #111820;transform:skewX(-8deg); }
.power-grinder::before { width:135px;height:40px;left:22px;top:83px;background:#59656e;border:7px solid #26323c;border-radius:20px 9px 9px 20px;transform:rotate(-14deg);box-shadow:inset 30px 0 0 #e66a1f; }
.power-grinder::after { width:91px;height:91px;right:12px;top:71px;border:11px solid #26323c;border-radius:50%;background:radial-gradient(circle,#59656e 0 13px,#bac1c5 14px 34px,#7e8991 35px 100%);transform:rotate(-14deg); }
.power-bandsaw::before { width:161px;height:117px;left:24px;top:42px;border:22px solid #26323c;border-radius:55px 55px 35px 35px;box-shadow:inset 0 0 0 5px #e66a1f; }
.power-bandsaw::after { width:104px;height:25px;left:53px;top:149px;background:#111820;border-radius:5px;box-shadow:40px -112px 0 -7px #59656e; }
.power-recip::before { width:154px;height:51px;left:20px;top:76px;background:#26323c;border:7px solid #111820;border-radius:10px 23px 23px 10px;box-shadow:inset 0 17px 0 #e66a1f;transform:rotate(-8deg); }
.power-recip::after { width:102px;height:11px;left:128px;top:85px;background:#a6afb4;border:3px solid #59656e;transform:rotate(-8deg);box-shadow:-72px 55px 0 12px #111820; }
.power-magdrill::before { width:111px;height:145px;left:56px;top:26px;background:#59656e;border:8px solid #26323c;border-radius:10px;box-shadow:inset 0 28px 0 #e66a1f,-28px 143px 0 -15px #111820,28px 143px 0 -15px #111820; }
.power-magdrill::after { width:19px;height:105px;left:101px;top:87px;background:repeating-linear-gradient(0deg,#26323c 0 7px,#aab2b7 7px 11px);border-radius:3px; }
.power-diegrinder::before { width:151px;height:40px;left:21px;top:82px;background:#59656e;border:7px solid #26323c;border-radius:21px 9px 9px 21px;box-shadow:inset 42px 0 0 #e66a1f;transform:rotate(-9deg); }
.power-diegrinder::after { width:77px;height:13px;left:153px;top:79px;background:#26323c;border-radius:3px;transform:rotate(-9deg);box-shadow:58px 0 0 -3px #8b969d; }
.performance-note { margin-top:1.25rem;padding:1.25rem 1.4rem;background:#fff7f1;border:1px solid #efc5a9;border-left:5px solid var(--accent);border-radius:10px; }
.performance-note strong { color:var(--accent-dark); }.performance-note p { margin:.35rem 0 0;color:#53606b; }
.power-source-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:.9rem; }
.power-source-grid article { padding:1.45rem;background:#fff;border:1px solid var(--line);border-top:5px solid var(--accent);border-radius:12px; }
.power-source-grid article>span { display:inline-grid;place-items:center;width:34px;height:34px;margin-bottom:.7rem;background:var(--ink);color:#fff;border-radius:7px;font-weight:900;font-size:.75rem; }
.power-source-grid h3 { margin:.1rem 0 .6rem; }.power-source-grid p { color:#53606b; }.power-source-grid strong { color:var(--ink); }
.source-factors { margin-top:1rem;padding:1.35rem 1.5rem;background:#fff;border:1px solid var(--line);border-radius:12px; }
.source-factors h3 { margin-top:0; }.source-factors ul { columns:2;gap:2.5rem;padding-left:1.2rem;margin-bottom:0; }.source-factors li { break-inside:avoid;margin:.45rem 0;color:#53606b; }
.application-list { counter-reset:power-job;display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;padding:0;margin:0;list-style:none; }
.application-list li { counter-increment:power-job;position:relative;min-height:120px;padding:1.2rem 1.2rem 1.2rem 4.6rem;background:#fff;border:1px solid var(--line);border-radius:11px; }
.application-list li::before { content:counter(power-job,decimal-leading-zero);position:absolute;left:1.15rem;top:1.15rem;width:43px;height:43px;display:grid;place-items:center;background:#f4e4da;color:var(--accent-dark);border-radius:8px;font-weight:900;font-size:.75rem; }
.application-list strong,.application-list span { display:block; }.application-list span { margin-top:.3rem;color:#53606b;font-size:.93rem; }
.accessory-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:.8rem; }
.accessory-grid article { padding:1.2rem;background:#fff;border:1px solid var(--line);border-top:4px solid var(--accent);border-radius:10px; }
.accessory-grid h3 { margin:0 0 .4rem;font-size:1.04rem; }.accessory-grid p { margin:0;color:#53606b;font-size:.91rem; }
.power-safety { background:var(--paper-2); }
@media (max-width:960px) { .power-source-grid,.accessory-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:680px) { .power-source-grid,.application-list,.accessory-grid { grid-template-columns:1fr; }.source-factors ul { columns:1; }.application-list li { min-height:0; }.power-impact--large { transform:none; } }

/* Safety & PPE V1 */
.icon--ppe::before{width:36px;height:24px;left:13px;top:20px;background:var(--accent);border-radius:22px 22px 6px 6px;box-shadow:0 12px 0 -6px var(--ink)}.icon--ppe::after{width:44px;height:5px;left:9px;top:41px;background:var(--ink);border-radius:4px}
.safety-ppe-hero .page-hero__inner{max-width:1080px}.ppe-visual{display:grid;place-items:center;background:linear-gradient(145deg,rgba(255,255,255,.55),transparent),#d4dade}.ppe-visual .tool-shape{position:relative;width:210px;height:210px;filter:drop-shadow(0 16px 16px rgba(17,24,32,.18))}
.ppe-hardhat::before{width:164px;height:84px;left:23px;top:73px;background:#e66a1f;border:8px solid #26323c;border-radius:90px 90px 18px 18px}.ppe-hardhat::after{width:190px;height:20px;left:10px;top:143px;background:#26323c;border-radius:11px;box-shadow:54px 14px 0 -7px #59656e}
.ppe-glasses::before{width:75px;height:58px;left:22px;top:76px;border:8px solid #26323c;border-radius:28px;background:rgba(188,218,232,.75);box-shadow:91px 0 0 -8px rgba(188,218,232,.75),91px 0 0 0 #26323c}.ppe-glasses::after{width:44px;height:8px;left:83px;top:91px;background:#e66a1f;border-radius:5px;box-shadow:-70px -6px 0 -2px #59656e,116px -6px 0 -2px #59656e}
.ppe-shield::before{width:132px;height:155px;left:39px;top:35px;background:linear-gradient(145deg,rgba(220,240,248,.7),rgba(145,184,201,.35));border:8px solid #26323c;border-radius:18px 18px 58px 58px}.ppe-shield::after{width:154px;height:30px;left:28px;top:23px;background:#e66a1f;border:7px solid #26323c;border-radius:18px 18px 6px 6px}
.ppe-muffs::before{width:150px;height:145px;left:30px;top:24px;border:14px solid #26323c;border-bottom:0;border-radius:80px 80px 0 0}.ppe-muffs::after{width:45px;height:76px;left:21px;top:105px;background:#59656e;border:8px solid #111820;border-radius:20px;box-shadow:123px 0 0 -8px #59656e,123px 0 0 0 #111820,inset 0 10px 0 #e66a1f}
.ppe-glove::before{width:105px;height:121px;left:65px;top:68px;background:#d6dadd;border:7px solid #26323c;border-radius:19px 35px 20px 20px;transform:rotate(-8deg);box-shadow:inset 0 -28px 0 #e66a1f}.ppe-glove::after{width:24px;height:94px;left:55px;top:25px;background:#d6dadd;border:6px solid #26323c;border-radius:15px;transform:rotate(-19deg);box-shadow:31px 3px 0 -6px #d6dadd,31px 3px 0 0 #26323c,61px 7px 0 -6px #d6dadd,61px 7px 0 0 #26323c}
.ppe-boot::before{width:90px;height:145px;left:57px;top:30px;background:#59656e;border:8px solid #26323c;border-radius:18px 18px 8px 8px;transform:rotate(-7deg);box-shadow:inset 0 48px 0 #e66a1f}.ppe-boot::after{width:145px;height:48px;left:52px;top:143px;background:#26323c;border-radius:10px 30px 12px 12px;transform:rotate(-7deg);box-shadow:inset 0 -11px 0 #111820}
.ppe-harness::before{width:115px;height:160px;left:48px;top:25px;border:18px solid #e66a1f;border-radius:50px 50px 22px 22px;clip-path:polygon(0 0,100% 0,79% 100%,21% 100%)}.ppe-harness::after{width:138px;height:16px;left:36px;top:95px;background:#26323c;transform:rotate(-8deg);box-shadow:0 42px 0 #59656e}
.ppe-respirator::before{width:111px;height:94px;left:50px;top:64px;background:#59656e;border:8px solid #26323c;border-radius:25px 25px 55px 55px}.ppe-respirator::after{width:59px;height:59px;left:25px;top:93px;background:#e66a1f;border:9px solid #26323c;border-radius:50%;box-shadow:126px 0 0 -9px #e66a1f,126px 0 0 0 #26323c,63px 30px 0 -17px #111820}
.ppe-activity-list{counter-reset:ppe-job;display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem;padding:0;margin:0;list-style:none}.ppe-activity-list li{counter-increment:ppe-job;position:relative;min-height:124px;padding:1.2rem 1.2rem 1.2rem 4.6rem;background:#fff;border:1px solid var(--line);border-radius:11px}.ppe-activity-list li::before{content:counter(ppe-job,decimal-leading-zero);position:absolute;left:1.15rem;top:1.15rem;width:43px;height:43px;display:grid;place-items:center;background:#f4e4da;color:var(--accent-dark);border-radius:8px;font-weight:900;font-size:.75rem}.ppe-activity-list strong,.ppe-activity-list span{display:block}.ppe-activity-list span{margin-top:.3rem;color:#53606b;font-size:.93rem}

/* Reusable product comparison system — designed for use across category pages. */
.product-options-section{margin:0 0 3.5rem;padding:1.6rem;background:var(--paper-2);border:1px solid var(--line);border-radius:16px;scroll-margin-top:105px}
.product-options-heading{display:flex;align-items:end;justify-content:space-between;gap:1.25rem;margin-bottom:1.15rem}
.product-options-heading .eyebrow{margin-bottom:.35rem}.product-options-heading h4{margin:0;color:var(--ink);font-size:clamp(1.35rem,2.4vw,1.85rem);letter-spacing:-.025em;text-transform:uppercase}.product-options-heading>p{max-width:520px;margin:0;color:#59656e;font-size:.92rem}
.product-option-group{margin:1.25rem 0 0}.product-option-group:first-of-type{margin-top:0}
.product-option-group-heading{margin:0 0 .35rem;color:var(--ink);font-size:1.02rem;font-weight:900;letter-spacing:.055em;text-transform:uppercase}
.product-option-group-description{max-width:760px;margin:0 0 .85rem;color:#59656e;font-size:.86rem;line-height:1.5}
.product-options-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;align-items:stretch}
.product-option-card{display:flex;min-width:0;flex-direction:column;overflow:hidden;background:#fff;border:1px solid var(--line);border-top:5px solid var(--accent);border-radius:12px;box-shadow:0 8px 22px rgba(16,24,32,.06)}
.product-option-image{position:relative;display:grid;place-items:center;min-height:150px;padding:1rem;overflow:hidden;background:linear-gradient(145deg,#f4f6f7,#d8dde0)}
.product-option-image::before{content:"";width:82px;height:54px;background:var(--accent);border:7px solid #26323c;border-radius:45px 45px 12px 12px;box-shadow:0 11px 0 -4px #26323c;opacity:.95}
.product-option-image::after{content:"PRODUCT PLACEHOLDER";position:absolute;left:.8rem;bottom:.65rem;padding:.28rem .42rem;color:#53606b;background:rgba(255,255,255,.84);border-radius:4px;font-size:.58rem;font-weight:900;letter-spacing:.07em}
.product-option-image--asset{padding:0;background:#121514}
.product-option-image--asset::before,.product-option-image--asset::after{content:none}
.product-option-image--asset img{display:block;width:100%;height:100%;min-height:210px;object-fit:cover}
.v13-update-strip{padding:.85rem 0;background:#fff4ec;border-top:1px solid #efd6c5;border-bottom:1px solid #efd6c5}
.v13-update-strip__inner{display:flex;align-items:center;justify-content:space-between;gap:1.25rem}
.v13-update-strip__inner>div{display:grid;gap:.2rem}
.v13-update-strip strong{color:var(--accent-dark);font-size:.92rem;letter-spacing:.035em;text-transform:uppercase}
.v13-update-strip span{color:#53606b;font-size:.86rem}
.v13-update-strip .button{flex:0 0 auto;min-height:42px;padding:.58rem .9rem;font-size:.75rem}
@media (max-width:680px){.v13-update-strip__inner{align-items:stretch;flex-direction:column}.v13-update-strip .button{width:100%;text-align:center}}
.product-option-image--storage::before{width:84px;height:70px;background:#59656e;border:7px solid #26323c;border-radius:5px;box-shadow:inset 0 13px 0 var(--accent),inset 0 30px 0 #59656e,inset 0 34px 0 #26323c,inset 0 47px 0 #59656e,inset 0 51px 0 #26323c}
.product-option-image--eye::before{width:92px;height:38px;background:rgba(188,218,232,.75);border-radius:20px;box-shadow:55px 0 0 -7px rgba(188,218,232,.75),55px 0 0 0 #26323c}
.product-option-image--shield::before{width:76px;height:94px;background:rgba(188,218,232,.6);border-radius:10px 10px 30px 30px;box-shadow:0 -12px 0 -2px var(--accent)}
.product-option-image--hearing::before{width:92px;height:72px;background:transparent;border-width:10px;border-bottom:0;border-radius:48px 48px 0 0;box-shadow:-14px 48px 0 -5px #59656e,14px 48px 0 -5px #59656e}
.product-option-image--glove::before{width:62px;height:82px;background:#d6dadd;border-radius:12px 22px 14px 14px;transform:rotate(-7deg);box-shadow:inset 0 -20px 0 var(--accent)}
.product-option-image--boot::before{width:58px;height:86px;background:#59656e;border-radius:12px 12px 5px 5px;transform:rotate(-6deg);box-shadow:inset 0 28px 0 var(--accent),34px 55px 0 -7px #26323c}
.product-option-image--harness::before{width:67px;height:90px;background:transparent;border:12px solid var(--accent);border-radius:28px 28px 12px 12px;box-shadow:inset 0 -33px 0 -27px #26323c}
.product-option-image--respirator::before{width:76px;height:58px;background:#59656e;border-radius:17px 17px 35px 35px;box-shadow:-34px 14px 0 -10px var(--accent),34px 14px 0 -10px var(--accent)}
.product-option-card__body{display:flex;flex:1;flex-direction:column;padding:1.05rem}.product-option-card__type{margin:0 0 .35rem;color:var(--accent-dark);font-size:.68rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}.product-option-card h5{margin:0 0 .8rem;color:var(--ink);font-size:1.08rem;line-height:1.2}
/* Reusable editorial product positioning. Grade, value, price and duty are independent fields; visible text always accompanies styling. */
.product-classification-guide{margin:0 0 2rem;padding:1.35rem 1.45rem;background:#fff;border:1px solid var(--line);border-left:5px solid var(--accent);border-radius:10px}.product-classification-guide h3{margin:0 0 .55rem;color:var(--ink);font-size:1.12rem;letter-spacing:.035em;text-transform:uppercase}.product-classification-guide p{max-width:920px;margin:.45rem 0;color:#53606b;font-size:.9rem;line-height:1.55}.product-classification-guide strong{color:var(--ink)}
.product-positioning-reminder{margin:.85rem 0 1rem;padding:.65rem .75rem;background:#fff7f1;border-left:4px solid var(--accent);color:#53606b;font-size:.78rem;line-height:1.5}
.product-positioning{margin:0 0 1rem;padding:.8rem;background:#f5f6f7;border:1px solid #dfe3e6;border-radius:8px}.product-positioning-badges{display:flex;flex-wrap:wrap;gap:.42rem;margin-bottom:.7rem}.product-grade-badge,.product-value-badge,.product-price-position,.product-duty-level{display:inline-flex;align-items:center;min-height:26px;padding:.28rem .48rem;border:1px solid #cbd1d5;border-radius:4px;color:#26323c;background:#fff;font-size:.62rem;font-weight:900;letter-spacing:.055em;line-height:1.25;text-transform:uppercase}.product-grade-general,.product-grade-professional,.product-grade-premium,.product-grade-specialty{border-color:var(--accent);color:var(--accent-dark)}.product-grade-unclassified,.product-value-unreviewed{color:#59656e;background:#eef0f2}.product-value-pick{color:#fff;background:var(--ink);border-color:var(--ink)}.product-value-none{color:#59656e}.product-positioning-grid{display:grid;grid-template-columns:1fr;gap:.4rem}.product-positioning-item{margin:0;padding:.4rem 0;border-top:1px solid #dde1e4;color:#59656e;font-size:.75rem;line-height:1.4}.product-positioning-item strong{display:block;margin-bottom:.1rem;color:#26323c;font-size:.61rem;letter-spacing:.055em;text-transform:uppercase}.product-best-for,.product-grade-reason,.product-value-reason,.product-main-advantage,.product-tradeoff{min-width:0}
.product-option-specs{display:grid;gap:.5rem;margin:0 0 1rem}.product-option-specs div{padding-bottom:.45rem;border-bottom:1px solid #e5e8ea}.product-option-specs dt{margin:0 0 .15rem;color:#26323c;font-size:.65rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase}.product-option-specs dd{margin:0;color:#59656e;font-size:.82rem;line-height:1.42}.product-option-specs strong{color:var(--ink)}
.product-option-field-note{margin:auto 0 .85rem;padding:.75rem;background:#fff5ed;border-left:3px solid var(--accent);color:#53606b;font-size:.79rem;line-height:1.4}.product-option-field-note strong{color:var(--accent-dark)}
.product-option-button{width:100%;min-height:46px;margin-top:auto;padding:.65rem .8rem;color:#fff;background:var(--ink);text-align:center;font-size:.79rem}.product-option-button:hover{background:var(--accent-dark)}
.product-options-reminder{margin:1rem 0 0;padding:1rem 1.1rem;color:#4e5a64;background:#fff;border-left:4px solid var(--accent);border-radius:0 8px 8px 0;font-size:.88rem}.product-options-reminder strong{color:var(--ink)}
@media (max-width:960px){.product-options-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-options-heading{align-items:start;flex-direction:column}}
@media (max-width:680px){.ppe-activity-list,.product-options-grid{grid-template-columns:1fr}.ppe-activity-list li{min-height:0}.product-options-section{margin-bottom:2.6rem;padding:1rem}.product-option-image{min-height:135px}.product-positioning{padding:.7rem}.product-positioning-badges{gap:.35rem}.product-classification-guide{padding:1rem}}

/* Homepage professional visual polish V1 — intentionally scoped to index.html. */
.home-page {
  background: #f8f9f9;
}
.home-page .topbar {
  background: #090e13;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.home-page .topbar__inner {
  min-height: 34px;
  color: #c8d0d6;
  font-weight: 650;
}
.home-page .topbar__experience { color: #f2ae48; }
.home-page .site-header {
  background: rgba(255,255,255,.975);
  border-bottom-color: rgba(17,24,32,.1);
  box-shadow: 0 7px 24px rgba(8,13,18,.055);
}
.home-page .header__inner { min-height: 76px; gap: 2.4rem; }
.home-page .brand { gap: .78rem; }
.home-page .brand img { width: 46px; height: 46px; }
.home-page .brand__text { font-size: 1.28rem; letter-spacing: -.035em; }
.home-page .primary-nav { gap: 1.45rem; }
.home-page .primary-nav a {
  position: relative;
  color: #303b44;
  transition: color .16s ease, background-color .16s ease, transform .16s ease;
}
.home-page .primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.38rem;
  height: 2px;
  background: var(--main-orange);
  transition: right .16s ease;
}
.home-page .primary-nav > a:not(.nav-cta):hover::after,
.home-page .primary-nav > a:not(.nav-cta):focus-visible::after { right: 0; }
.home-page .primary-nav .nav-cta {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  padding-inline: 1.08rem;
  background: var(--dark-background);
  border-radius: var(--radius-small);
  box-shadow: 0 7px 18px rgba(17,24,32,.14);
}

/* Hero background asset: original shaft, coupling and measurement line art. */
.home-page .hero {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 44%, rgba(230,106,31,.13), transparent 31%),
    linear-gradient(118deg, #0c1218 0%, #121c25 58%, #0a1016 100%);
}
.home-page .hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8,13,18,.88) 0%, rgba(8,13,18,.47) 54%, rgba(8,13,18,.16) 100%);
}
.home-page .hero__texture {
  inset: 0 0 0 auto;
  width: min(64vw, 940px);
  height: 100%;
  opacity: .7;
  background: url("assets/home-hero-industrial.svg") right center / cover no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.45) 22%, #000 55%);
}
.home-page .hero__grid {
  position: relative;
  z-index: 1;
  min-height: 620px;
  gap: clamp(3rem, 7vw, 6.5rem);
  padding-block: 78px 84px;
}
.home-page .hero__copy { max-width: 670px; }
.home-page .eyebrow {
  margin-bottom: .85rem;
  color: #f3a35f;
  font-size: .72rem;
  letter-spacing: .13em;
}
.home-page .hero h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(3.25rem, 5.6vw, 5.25rem);
  font-weight: 850;
  line-height: .99;
  letter-spacing: -.052em;
}
.home-page .hero__lead {
  max-width: 650px;
  color: #c8d1d7;
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  line-height: 1.68;
}
.home-page .hero__actions { margin-top: 2rem; gap: .8rem; }
.home-page .button {
  min-height: 48px;
  border-radius: var(--radius-small);
  font-weight: 820;
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
}
.home-page .button--primary { background: #bd4b0d; }
.home-page .button--primary:hover,
.home-page .button--primary:focus-visible { background: #9c3c08; box-shadow: 0 11px 25px rgba(0,0,0,.2); }
.home-page .button--secondary { border-color: rgba(255,255,255,.48); background: rgba(12,18,24,.36); }
.home-page .button--secondary:hover,
.home-page .button--secondary:focus-visible { background: rgba(255,255,255,.09); border-color: #fff; }
.home-page .hero__trust {
  margin-top: 1.55rem;
  gap: .85rem 1.25rem;
  color: #d7dde1;
  font-size: .81rem;
  font-weight: 650;
}
.home-page .hero-panel {
  padding: 1.1rem;
  background: linear-gradient(150deg, rgba(30,42,52,.94), rgba(13,21,28,.9));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-large);
  box-shadow: var(--strong-shadow), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(7px);
}
.home-page .hero-panel__heading {
  padding: .2rem .2rem 1rem;
  color: #dce3e7;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.home-page .hero-panel__grid { gap: 8px; }
.home-page .hero-panel article {
  min-height: 118px;
  padding: 1rem;
  background: rgba(255,255,255,.048);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-medium);
}
.home-page .hero-panel article small { color: #aeb9c1; line-height: 1.4; }
.home-page .hero-panel__note {
  margin-top: .9rem;
  padding: 1rem .95rem .15rem;
  border-top-color: rgba(255,255,255,.14);
  color: #b8c2c9;
}

.home-page .section { padding-block: 88px; }
.home-page .section-heading { margin-bottom: 2.5rem; align-items: end; }
.home-page .section-heading h2,
.home-page .about-panel h2,
.home-page .cta-section h2 {
  max-width: 760px;
  font-weight: 840;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.home-page .section-heading > p { max-width: 540px; line-height: 1.66; }
.home-page .section--light { background: #f5f6f6; }
.home-page .category-grid { gap: 1rem; }
.home-page .category-card {
  min-height: 315px;
  padding: 1.45rem;
  overflow: hidden;
  border-color: #d9dee1;
  border-radius: var(--radius-medium);
  box-shadow: 0 4px 14px rgba(17,24,32,.035);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.home-page .category-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 3px;
  background: var(--main-orange);
}
.home-page .category-card:hover,
.home-page .category-card:focus-within { transform: translateY(-4px); border-color: #bcc5cb; box-shadow: var(--card-shadow); }
.home-page .category-card__icon {
  width: 64px;
  height: 64px;
  margin-block: .8rem 1rem;
  background: #eef0f1;
  border: 1px solid #dce1e4;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 #fff, 0 5px 14px rgba(17,24,32,.06);
}
.home-page .category-icon { width: 48px; height: 48px; }
.home-page .category-card h3 { font-size: 1.28rem; }
.home-page .category-card p { line-height: 1.58; }
.home-page .category-card a { margin-top: auto; color: var(--dark-accessible-orange); }
.home-page .category-card a span { display: inline-block; transition: transform .16s ease; }
.home-page .category-card a:hover span,
.home-page .category-card a:focus-visible span { transform: translateX(3px); }

.home-page #featured-tools {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(135deg, #151f28, #0d141b);
  background-size: 34px 34px, 34px 34px, auto;
}
.home-page #featured-tools::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(transparent, var(--main-orange) 18%, var(--main-orange) 82%, transparent);
}
.home-page .section-heading--dark > p { color: #b1bbc2; }
.home-page .tool-grid { gap: 1rem; }
.home-page .tool-card {
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-medium);
  box-shadow: 0 13px 32px rgba(0,0,0,.17);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.home-page .tool-card:hover,
.home-page .tool-card:focus-within { transform: translateY(-4px); border-color: rgba(230,106,31,.48); box-shadow: 0 18px 38px rgba(0,0,0,.23); }
.home-page .tool-card__visual {
  min-height: 205px;
  background:
    linear-gradient(rgba(38,50,60,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,50,60,.035) 1px, transparent 1px),
    linear-gradient(145deg, #f7f8f8, #dfe3e5);
  background-size: 22px 22px, 22px 22px, auto;
  border-bottom: 1px solid #d3d9dc;
}
.home-page .popular-tool-illustration { inset: 12px 18px; width: calc(100% - 36px); height: calc(100% - 24px); }
.home-page .tool-card__content { display: flex; flex-direction: column; min-height: 240px; padding: 1.3rem; }
.home-page .tool-card__category { letter-spacing: .11em; }
.home-page .tool-card h3 { margin-top: .5rem; }
.home-page .tool-card a { margin-top: auto; }

.home-page .about-grid { gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.home-page .about-panel > p:not(.eyebrow) { max-width: 710px; line-height: 1.75; }
.home-page .about-panel__emphasis {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--soft-orange-highlight);
  border-left: 4px solid var(--main-orange);
  border-radius: 0 var(--radius-small) var(--radius-small) 0;
}
.home-page .experience-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #2a3742;
  border-radius: var(--radius-large);
  box-shadow: var(--strong-shadow);
}
.home-page .experience-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 4px;
  background: var(--main-orange);
}
.home-page .experience-card > strong { font-size: clamp(2.8rem, 5vw, 4.35rem); }
.home-page .experience-card li { color: #d2d8dc; }

.home-page .section--guides { background: #fff; }
.home-page .guide-grid { gap: 1rem; }
.home-page .guide-card {
  min-height: 285px;
  border-color: #d9dee1;
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 18px rgba(17,24,32,.045);
}
.home-page .guide-card__tag { border-radius: 4px; }
.home-page .guide-card__status { border-top: 1px solid #e3e6e8; }

.home-page .cta-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 50%, rgba(230,106,31,.22), transparent 24%),
    linear-gradient(120deg, #18232c, #0c1319);
  border-top: 1px solid #2a3741;
}
.home-page .cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(120deg, transparent 0 46px, rgba(255,255,255,.022) 46px 47px);
}
.home-page .cta-section__inner { position: relative; z-index: 1; }
.home-page .cta-section .eyebrow { color: #f4ac6c; }
.home-page .cta-section .button--primary { color: #fff; background: var(--dark-accessible-orange); }
.home-page .site-footer { border-top: 1px solid rgba(255,255,255,.08); }
.home-page .site-footer .brand { margin-bottom: .95rem; }
.home-page .site-footer p,
.home-page .affiliate-disclosure,
.home-page .footer__bottom { color: #aeb8bf; }

@media (max-width: 980px) {
  .home-page .header__inner { min-height: 72px; }
  .home-page .primary-nav { top: 72px; background: rgba(255,255,255,.99); box-shadow: 0 20px 36px rgba(8,13,18,.14); }
  .home-page .primary-nav > a:not(.nav-cta)::after { display: none; }
  .home-page .menu-toggle { border: 1px solid #d9dee1; background: #f6f7f7; }
  .home-page .hero__grid { min-height: 0; gap: 2.5rem; padding-block: 68px 74px; }
  .home-page .hero__texture { width: 100%; opacity: .36; mask-image: linear-gradient(180deg, transparent 0%, #000 40%, #000); }
  .home-page .hero::after { background: rgba(7,12,17,.74); }
  .home-page .hero-panel { max-width: 720px; }
  .home-page .section-heading { align-items: start; }
}

@media (max-width: 680px) {
  .home-page .header__inner { min-height: 66px; }
  .home-page .brand img { width: 40px; height: 40px; }
  .home-page .primary-nav { top: 66px; padding-inline: 14px; }
  .home-page .hero__grid { padding-block: 52px 58px; }
  .home-page .hero__texture { opacity: .2; background-position: 70% center; }
  .home-page .hero h1 { font-size: clamp(2.5rem, 12vw, 3.65rem); line-height: 1.01; }
  .home-page .hero__lead { font-size: 1rem; }
  .home-page .hero__actions { gap: .65rem; }
  .home-page .hero-panel { padding: .85rem; }
  .home-page .hero-panel__grid { grid-template-columns: 1fr 1fr; }
  .home-page .hero-panel article { min-height: 108px; padding: .85rem; }
  .home-page .hero-panel article small { font-size: .74rem; }
  .home-page .section { padding-block: 64px; }
  .home-page .section-heading { margin-bottom: 2rem; }
  .home-page .section-heading h2,
  .home-page .about-panel h2,
  .home-page .cta-section h2 { font-size: clamp(1.85rem, 9vw, 2.55rem); }
  .home-page .category-card { min-height: 270px; }
  .home-page .tool-card__content { min-height: 0; }
  .home-page .about-grid { gap: 2.3rem; }
  .home-page .guide-card { min-height: 250px; }
  .home-page .cta-section { padding-block: 56px; }
}

@media (max-width: 390px) {
  .home-page .hero h1 { font-size: clamp(2.35rem, 12.5vw, 3rem); }
  .home-page .hero-panel__grid { grid-template-columns: 1fr; }
  .home-page .hero-panel article { min-height: 92px; }
  .home-page .button { padding-inline: 1rem; }
}

/* Tool Categories Professional Visual Polish V1 — page-scoped */
.tool-categories-page { background: #f8f9f9; }
.tool-categories-page .topbar {
  background: #090e13;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.tool-categories-page .topbar__inner { min-height: 34px; color: #c8d0d6; font-weight: 650; }
.tool-categories-page .topbar__experience { color: #f2ae48; }
.tool-categories-page .site-header {
  background: rgba(255,255,255,.975);
  border-bottom-color: rgba(17,24,32,.1);
  box-shadow: 0 7px 24px rgba(8,13,18,.055);
}
.tool-categories-page .header__inner { min-height: 76px; gap: 2.4rem; }
.tool-categories-page .brand { gap: .78rem; }
.tool-categories-page .brand img { width: 46px; height: 46px; }
.tool-categories-page .brand__text { font-size: 1.28rem; letter-spacing: -.035em; }
.tool-categories-page .primary-nav { gap: 1.45rem; }
.tool-categories-page .primary-nav a {
  position: relative;
  color: #303b44;
  transition: color .16s ease, background-color .16s ease, transform .16s ease;
}
.tool-categories-page .primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.38rem;
  height: 2px;
  background: var(--main-orange);
  transition: right .16s ease;
}
.tool-categories-page .primary-nav > a:not(.nav-cta):hover::after,
.tool-categories-page .primary-nav > a:not(.nav-cta):focus-visible::after,
.tool-categories-page .primary-nav > a[aria-current="page"]::after { right: 0; }
.tool-categories-page .primary-nav .nav-cta {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  padding-inline: 1.08rem;
  color: #fff;
  background: var(--dark-background);
  border-radius: var(--radius-small);
  box-shadow: 0 7px 18px rgba(17,24,32,.14);
}
.tool-categories-page .primary-nav .nav-cta:hover,
.tool-categories-page .primary-nav .nav-cta:focus-visible { color: #fff; background: var(--dark-accessible-orange); }

.tool-categories-page .page-hero {
  isolation: isolate;
  background: #070b0e;
}
.tool-categories-page .page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,7,9,.93) 0%, rgba(4,7,9,.83) 38%, rgba(4,7,9,.38) 65%, rgba(4,7,9,.16) 100%);
}
.tool-categories-page .page-hero__texture {
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: url("assets/optimized/tool-categories-industrial-hero.webp") center center / cover no-repeat;
  mask-image: none;
}
.tool-categories-page .page-hero__inner { max-width: 860px; padding-block: 62px 72px; }
.tool-categories-page .breadcrumbs { margin-bottom: 2.5rem; }
.tool-categories-page .breadcrumbs a { transition: color .16s ease; }
.tool-categories-page .eyebrow { color: #f3a35f; font-size: .72rem; letter-spacing: .13em; }
.tool-categories-page .page-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.4vw, 4.9rem);
  font-weight: 850;
  line-height: .99;
  letter-spacing: -.052em;
}
.tool-categories-page .page-hero__inner > p:not(.eyebrow) {
  max-width: 690px;
  margin: 1.25rem 0 1.85rem;
  color: #c8d1d7;
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  line-height: 1.68;
}
.tool-categories-page .button {
  min-height: 48px;
  border-radius: var(--radius-small);
  font-weight: 820;
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease;
}
.tool-categories-page .button--primary { color: #fff; background: #bd4b0d; }
.tool-categories-page .button--primary:hover,
.tool-categories-page .button--primary:focus-visible { background: #9c3c08; box-shadow: 0 11px 25px rgba(0,0,0,.2); }

.tool-categories-page .category-intro {
  position: relative;
  background: linear-gradient(90deg, #a83d08, #bd4b0d 58%, #a8400b);
  border-block: 1px solid rgba(255,255,255,.12);
}
.tool-categories-page .category-intro__grid { min-height: 116px; grid-template-columns: minmax(210px,.42fr) 1fr; gap: clamp(2rem,5vw,4.5rem); }
.tool-categories-page .category-intro strong { font-size: 1.14rem; letter-spacing: -.015em; }
.tool-categories-page .category-intro p { max-width: 760px; color: #fff0e7; line-height: 1.62; }

.tool-categories-page .category-directory { padding-block: 86px 92px; background: #f5f6f6; }
.tool-categories-page .section-heading { margin-bottom: 2.35rem; align-items: end; }
.tool-categories-page .section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  font-weight: 840;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.tool-categories-page .section-heading > p { max-width: 520px; line-height: 1.66; }
.tool-categories-page .category-list { gap: 1rem; align-items: start; }
.tool-categories-page .directory-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 1.55rem;
  background: #fff;
  border-color: #d7dde0;
  border-radius: var(--radius-medium);
  box-shadow: 0 5px 17px rgba(17,24,32,.045);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.tool-categories-page .directory-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: var(--main-orange);
}
.tool-categories-page .directory-card:hover,
.tool-categories-page .directory-card:focus-within { transform: translateY(-4px); border-color: #bbc4ca; box-shadow: var(--card-shadow); }
.tool-categories-page .directory-card--apprentice { border-color: #d7b08e; box-shadow: inset 0 3px 0 var(--main-orange), 0 5px 17px rgba(17,24,32,.045); }
.tool-categories-page .directory-card__label { margin-bottom: .28rem !important; letter-spacing: .12em; }
.tool-categories-page .directory-card h3 { font-size: 1.46rem; line-height: 1.16; }
.tool-categories-page .directory-card > p { margin: 1.2rem 0; line-height: 1.64; }
.tool-categories-page .directory-card__support {
  gap: .38rem;
  padding: .92rem 1rem;
  background: #f3f5f6;
  border-left-width: 3px;
  border-radius: 0 7px 7px 0;
}
.tool-categories-page .directory-card__support span { line-height: 1.55; }
.tool-categories-page .directory-card__link {
  margin-top: 1.25rem;
  padding-top: 1rem;
  color: var(--dark-accessible-orange);
  border-top: 1px solid #e5e8ea;
}
.tool-categories-page .directory-card__link span { display: inline-block; transition: transform .16s ease; }
.tool-categories-page .directory-card__link:hover,
.tool-categories-page .directory-card__link:focus-visible { color: #923704; }
.tool-categories-page .directory-card__link:hover span,
.tool-categories-page .directory-card__link:focus-visible span { transform: translateX(3px); }
.tool-categories-page .directory-card__status {
  align-self: flex-start;
  margin-top: .75rem;
  padding: .38rem .58rem;
  color: #626f79;
  background: #eef1f2;
  border: 1px solid #dde2e5;
  border-radius: 4px;
  font-size: .7rem;
  line-height: 1.25;
  letter-spacing: .025em;
}
.tool-categories-page .directory-card--apprentice .directory-card__status { color: #71401f; background: #fff4e9; border-color: #ecd1b8; }

.tool-categories-page .category-next {
  position: relative;
  overflow: hidden;
  padding-block: 74px;
  background:
    radial-gradient(circle at 88% 50%, rgba(230,106,31,.18), transparent 25%),
    linear-gradient(120deg, #18232c, #0c1319);
  border-top: 1px solid #2a3741;
}
.tool-categories-page .category-next::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(120deg, transparent 0 46px, rgba(255,255,255,.022) 46px 47px);
}
.tool-categories-page .category-next__inner { position: relative; z-index: 1; }
.tool-categories-page .category-next h2 { font-weight: 840; }
.tool-categories-page .category-next .eyebrow { color: #f4ac6c; }

.tool-categories-page .site-footer { border-top: 1px solid rgba(255,255,255,.08); }
.tool-categories-page .site-footer .brand { margin-bottom: .95rem; }
.tool-categories-page .site-footer p,
.tool-categories-page .affiliate-disclosure,
.tool-categories-page .footer__bottom { color: #aeb8bf; }
.tool-categories-page .footer__grid a { transition: color .16s ease; }

@media (max-width: 980px) {
  .tool-categories-page .header__inner { min-height: 72px; }
  .tool-categories-page .primary-nav { top: 72px; background: rgba(255,255,255,.99); box-shadow: 0 20px 36px rgba(8,13,18,.14); }
  .tool-categories-page .primary-nav > a:not(.nav-cta)::after { display: none; }
  .tool-categories-page .menu-toggle { border: 1px solid #d9dee1; background: #f6f7f7; }
  .tool-categories-page .page-hero__texture { width: 100%; opacity: 1; background-position: 64% center; mask-image: none; }
  .tool-categories-page .page-hero::after { background: linear-gradient(90deg, rgba(5,8,10,.9), rgba(5,8,10,.68)); }
  .tool-categories-page .section-heading { align-items: start; }
}

@media (max-width: 680px) {
  .tool-categories-page .header__inner { min-height: 66px; }
  .tool-categories-page .brand img { width: 40px; height: 40px; }
  .tool-categories-page .primary-nav { top: 66px; padding-inline: 14px; }
  .tool-categories-page .page-hero__inner { padding-block: 46px 54px; }
  .tool-categories-page .page-hero__texture {
    opacity: .72;
    background-image: url("assets/optimized/tool-categories-industrial-hero-mobile.webp");
    background-position: center;
  }
  .tool-categories-page .page-hero::after { background: rgba(5,8,10,.74); }
  .tool-categories-page .breadcrumbs { margin-bottom: 2rem; }
  .tool-categories-page .page-hero h1 { font-size: clamp(2.55rem, 12vw, 3.65rem); line-height: 1.01; }
  .tool-categories-page .page-hero__inner > p:not(.eyebrow) { font-size: 1rem; line-height: 1.62; }
  .tool-categories-page .category-intro__grid { grid-template-columns: 1fr; gap: .5rem; padding-block: 1.35rem; }
  .tool-categories-page .category-directory { padding-block: 62px 68px; }
  .tool-categories-page .section-heading { margin-bottom: 1.9rem; }
  .tool-categories-page .section-heading h2 { font-size: clamp(1.9rem, 9vw, 2.55rem); }
  .tool-categories-page .directory-card { padding: 1.25rem; }
  .tool-categories-page .directory-card h3 { font-size: 1.3rem; }
  .tool-categories-page .category-next { padding-block: 58px; }
}

@media (max-width: 390px) {
  .tool-categories-page .page-hero h1 { font-size: clamp(2.35rem, 12.5vw, 3rem); }
  .tool-categories-page .button { padding-inline: 1rem; }
  .tool-categories-page .directory-card__status { max-width: 100%; overflow-wrap: anywhere; }
}

@media (prefers-reduced-motion: reduce) {
  .tool-categories-page .directory-card,
  .tool-categories-page .directory-card__link span,
  .tool-categories-page .primary-nav > a:not(.nav-cta)::after,
  .tool-categories-page .button { transition: none; }
  .tool-categories-page .directory-card:hover,
  .tool-categories-page .directory-card:focus-within { transform: none; }
}

/* ========================================================================== 
   DETAILED DIRECTORY-PAGE PROFESSIONAL VISUAL TEMPLATE
   Scope future detailed-category rollouts with .directory-page. Keep genuinely
   category-specific art and adjustments under a second category body class.
   ========================================================================== */

.directory-page {
  color: var(--main-text);
  background: #fff;
}

/* Directory header and navigation */
.directory-page .site-header { box-shadow: 0 1px 0 rgba(17,24,32,.035); }
.directory-page .header__inner { min-height: 76px; }
.directory-page .brand { gap: .76rem; }
.directory-page .brand img { width: 44px; height: 44px; }
.directory-page .primary-nav { gap: .28rem; }
.directory-page .primary-nav > a:not(.nav-cta) {
  position: relative;
  padding-inline: .86rem;
  color: #3e4a54;
  font-weight: 720;
}
.directory-page .primary-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -.38rem;
  left: 50%;
  height: 2px;
  background: var(--main-orange);
  transition: right .16s ease, left .16s ease;
}
.directory-page .primary-nav > a:not(.nav-cta):hover::after,
.directory-page .primary-nav > a:not(.nav-cta):focus-visible::after,
.directory-page .primary-nav > a[aria-current="page"]::after { right: .86rem; left: .86rem; }
.directory-page .primary-nav .nav-cta {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  padding-inline: 1.08rem;
  color: #fff;
  background: var(--dark-background);
  border-radius: var(--radius-small);
  box-shadow: 0 7px 18px rgba(17,24,32,.14);
}
.directory-page .primary-nav .nav-cta:hover,
.directory-page .primary-nav .nav-cta:focus-visible { color: #fff; background: var(--dark-accessible-orange); }

/* Category hero */
.directory-page .page-hero {
  isolation: isolate;
  min-height: 0;
  background:
    radial-gradient(circle at 82% 45%, rgba(230,106,31,.13), transparent 27%),
    linear-gradient(118deg, #0c1218 0%, #17232c 62%, #0a1016 100%);
}
.directory-page .page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,12,17,.94) 0%, rgba(7,12,17,.68) 52%, rgba(7,12,17,.28) 100%);
}
.directory-page .page-hero__inner { max-width: 900px; padding-block: 54px 64px; }
.directory-page .breadcrumbs { margin-bottom: 2.15rem; color: #aeb9c0; font-size: .82rem; }
.directory-page .breadcrumbs a { color: #d7dfe3; transition: color .16s ease; }
.directory-page .breadcrumbs a:hover,
.directory-page .breadcrumbs a:focus-visible { color: #fff; }
.directory-page .page-hero .eyebrow { color: #f3a35f; font-size: .72rem; letter-spacing: .13em; }
.directory-page .page-hero h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5vw, 4.55rem);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.05em;
}
.directory-page .page-hero__inner > p:not(.eyebrow) {
  max-width: 710px;
  margin: 1.15rem 0 1.65rem;
  color: #cbd4d9;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.67;
}
.directory-page .page-hero .button {
  min-height: 48px;
  border-radius: var(--radius-small);
  font-weight: 820;
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.directory-page .page-hero .button--primary { color: #fff; background: #bd4b0d; }
.directory-page .page-hero .button--primary:hover,
.directory-page .page-hero .button--primary:focus-visible { background: #9c3c08; }
.hand-tools-page .page-hero__texture {
  inset: 0 0 0 auto;
  width: min(70vw, 980px);
  height: 100%;
  opacity: .72;
  background: url("assets/icons/category-millwright-tools.webp") center / contain no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.42) 25%, #000 60%);
}
.precision-tools-page .page-hero__texture {
  inset: 0 0 0 auto;
  width: min(70vw, 980px);
  height: 100%;
  opacity: .7;
  background: url("assets/icons/category-precision-tools.webp") center / contain no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.4) 24%, #000 61%);
}
.alignment-tools-page .page-hero__texture {
  inset: 0 0 0 auto;
  width: min(70vw, 980px);
  height: 100%;
  opacity: .72;
  background: url("assets/icons/category-alignment-tools.webp") center / contain no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.4) 24%, #000 61%);
}
.rigging-equipment-page .page-hero__texture {
  inset: 0 0 0 auto;
  width: min(70vw, 980px);
  height: 100%;
  opacity: .72;
  background: url("assets/icons/category-rigging-equipment.webp") center / contain no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.4) 24%, #000 61%);
}
.consumables-page .page-hero__texture {
  inset: 0 0 0 auto;
  width: min(70vw, 980px);
  height: 100%;
  opacity: .72;
  background: url("assets/icons/category-consumables.webp") center / contain no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.4) 24%, #000 61%);
}
.machinery-installation-page .page-hero__texture {
  inset: 0 0 0 auto;
  width: min(70vw, 980px);
  height: 100%;
  opacity: .72;
  background: url("assets/machinery-installation-industrial.svg") right center / cover no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.4) 24%, #000 61%);
}
.tool-storage-page .page-hero__texture {
  inset: 0 0 0 auto;
  width: min(70vw, 980px);
  height: 100%;
  opacity: .72;
  background: url("assets/icons/category-tool-storage.webp") center / contain no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.4) 24%, #000 61%);
}

.power-tools-page .page-hero__texture {
  inset: 0 0 0 auto;
  width: min(70vw, 980px);
  height: 100%;
  opacity: .72;
  background: url("assets/icons/category-power-tools.webp") center / contain no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.4) 24%, #000 61%);
}

.safety-ppe-page .page-hero__texture {
  inset: 0 0 0 auto;
  width: min(70vw, 980px);
  height: 100%;
  opacity: .72;
  background: url("assets/icons/category-safety-ppe.webp") center / contain no-repeat;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.4) 24%, #000 61%);
}

/* Safety-and-PPE-only refinements retain the shared directory-page system. */
.safety-ppe-page #ppe-groups {
  padding-block: 78px 82px;
  background: #f4f6f6;
  border-block: 1px solid #e0e4e7;
}
.safety-ppe-page .ppe-activity-list { gap: .8rem; }
.safety-ppe-page .ppe-activity-list li {
  min-height: 0;
  border-color: #d7dde0;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(17,24,32,.035);
}
.safety-ppe-page .ppe-activity-list li::before {
  color: #843307;
  background: #fff0e7;
  border: 1px solid #efd2c0;
}
.safety-ppe-page .selection-grid { gap: .85rem; }
.safety-ppe-page .selection-grid article {
  border-color: #d8dfe2;
  border-top: 3px solid #c96020;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(17,24,32,.035);
}
.safety-ppe-page .selection-grid h3 { color: #293640; letter-spacing: -.012em; }
.safety-ppe-page .selection-grid p { color: #5c6871; line-height: 1.6; }
.safety-ppe-page #inspection-care {
  border-block: 1px solid #dde2e5;
}
.safety-ppe-page .inspection-grid { gap: .85rem; }
.safety-ppe-page .inspection-grid ul {
  background: #fff;
  border: 1px solid #d8dfe2;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(17,24,32,.03);
}
.safety-ppe-page .safety-panel {
  border-left-color: var(--main-orange);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 28px rgba(17,24,32,.12);
}
.safety-ppe-page .safety-callout {
  border-left-color: var(--main-orange);
  border-radius: 0 8px 8px 0;
}
.safety-ppe-page .related-links a {
  border-color: rgba(255,255,255,.14);
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.safety-ppe-page .related-links a:hover,
.safety-ppe-page .related-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(230,106,31,.75);
}

/* Power-tools-only refinements retain the shared directory-page system. */
.power-tools-page #power-tool-groups {
  padding-block: 78px 82px;
  background: #f4f6f6;
  border-block: 1px solid #e0e4e7;
}
.power-tools-page .performance-note {
  border-color: #efd7c6;
  border-left-color: var(--main-orange);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 14px rgba(17,24,32,.03);
}
.power-tools-page #power-source,
.power-tools-page #accessory-guidance,
.power-tools-page #safety { border-block: 1px solid #dde2e5; }
.power-tools-page .power-source-grid,
.power-tools-page .accessory-grid { gap: .85rem; }
.power-tools-page .power-source-grid article,
.power-tools-page .accessory-grid article {
  border-color: #d8dfe2;
  border-top: 3px solid #c96020;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(17,24,32,.035);
}
.power-tools-page .power-source-grid h3,
.power-tools-page .accessory-grid h3 { color: #293640; letter-spacing: -.012em; }
.power-tools-page .power-source-grid p,
.power-tools-page .accessory-grid p { color: #5c6871; line-height: 1.6; }
.power-tools-page .application-list { gap: .82rem; }
.power-tools-page .application-list li {
  min-height: 0;
  border-color: #d7dde0;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(17,24,32,.035);
}
.power-tools-page .source-factors {
  margin-top: 1.2rem;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid #d8dfe2;
  border-radius: 9px;
}
.power-tools-page .safety-panel {
  border-left-color: var(--main-orange);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 28px rgba(17,24,32,.12);
}
.power-tools-page .safety-callout {
  border-left-color: var(--main-orange);
  border-radius: 0 8px 8px 0;
}
.power-tools-page .related-links a {
  border-color: rgba(255,255,255,.14);
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.power-tools-page .related-links a:hover,
.power-tools-page .related-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(230,106,31,.75);
}
.power-tools-page .power-tools-home-link { margin-top: .5rem; }

/* Tool-storage-only refinements retain the shared directory-page system. */
.tool-storage-page #storage-groups {
  padding-block: 78px 82px;
  background: #f4f6f6;
  border-block: 1px solid #e0e4e7;
}
.tool-storage-page #storage-selection {
  background: #f3f5f6;
  border-block: 1px solid #dce1e4;
}
.tool-storage-page .selection-grid { gap: .85rem; }
.tool-storage-page .selection-grid article,
.tool-storage-page .storage-compare article {
  background: #fff;
  border-color: #d8dfe2;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(17,24,32,.035);
}
.tool-storage-page .selection-grid article { border-top: 3px solid #c96020; }
.tool-storage-page .selection-grid h3,
.tool-storage-page .storage-compare h3 { color: #293640; letter-spacing: -.012em; }
.tool-storage-page .selection-grid p,
.tool-storage-page .storage-compare p { color: #5c6871; line-height: 1.6; }
.tool-storage-page .storage-compare {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #d8dfe2;
}
.tool-storage-page #organization { background: #fff; }
.tool-storage-page .organization-list { gap: .78rem; }
.tool-storage-page .organization-list li {
  background: #f7f8f8;
  border-color: #d9dfe2;
  border-left: 4px solid var(--main-orange);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 3px 12px rgba(17,24,32,.03);
}
.tool-storage-page .organization-list strong { color: #293640; }
.tool-storage-page .organization-list span { color: #5d6972; line-height: 1.58; }
.tool-storage-page #safety { background: #f3f5f6; }
.tool-storage-page .safety-panel {
  border-left-color: var(--main-orange);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 28px rgba(17,24,32,.12);
}
.tool-storage-page .safety-callout {
  border-left-color: var(--main-orange);
  border-radius: 0 8px 8px 0;
}
.tool-storage-page .related-links a {
  border-color: rgba(255,255,255,.14);
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.tool-storage-page .related-links a:hover,
.tool-storage-page .related-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(230,106,31,.75);
}

/* Machinery-installation-only refinements retain the shared directory-page system. */
.machinery-installation-page #installation-process {
  background: #f4f6f6;
  border-top: 1px solid #dce1e4;
  border-bottom: 1px solid #dce1e4;
}
.machinery-installation-page .installation-process-list { gap: .82rem; }
.machinery-installation-page .installation-process-list li {
  min-height: 0;
  padding: 1.1rem 1.1rem 1.1rem 4.35rem;
  border-color: #d7dde0;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(17,24,32,.035);
}
.machinery-installation-page .installation-process-list li::before {
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  background: #27343e;
  border-bottom-color: var(--main-orange);
  border-radius: 6px;
}
.machinery-installation-page .installation-process-list strong { color: #27343e; }
.machinery-installation-page .installation-process-list span { color: #5b6770; line-height: 1.58; }
.machinery-installation-page .workflow-note {
  border-left: 4px solid var(--main-orange);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 7px 20px rgba(17,24,32,.1);
}
.machinery-installation-page #field-safety { background: #fff; }
.machinery-installation-page .installation-safety-panel {
  border-left-color: var(--main-orange);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 28px rgba(17,24,32,.12);
}
.machinery-installation-page .installation-safety-panel strong { color: #f3a35f; }
.machinery-installation-page .safety-callout {
  border-left-color: var(--main-orange);
  border-radius: 0 8px 8px 0;
}
.machinery-installation-page .related-links a {
  border-color: rgba(255,255,255,.14);
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.machinery-installation-page .related-links a:hover,
.machinery-installation-page .related-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(230,106,31,.75);
}

/* Consumables-only refinements retain the shared directory-page system. */
.consumables-page #selection-guide {
  background: #f3f5f6;
  border-top: 1px solid #dce1e4;
  border-bottom: 1px solid #dce1e4;
}
.consumables-page .selection-grid { gap: .85rem; }
.consumables-page .selection-grid article {
  padding: 1.15rem;
  background: #fff;
  border: 1px solid #d8dfe2;
  border-top: 3px solid #d16a25;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(17,24,32,.035);
}
.consumables-page .selection-grid h3 {
  color: #293640;
  font-size: 1.03rem;
  letter-spacing: -.012em;
}
.consumables-page .selection-grid p { color: #5c6871; line-height: 1.6; }
.consumables-page .consumables-safety { padding-block: 72px; background: #fff; }
.consumables-page .safety-panel {
  border-left-color: var(--main-orange);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 28px rgba(17,24,32,.12);
}
.consumables-page .safety-panel .eyebrow { color: #f3a35f; }
.consumables-page .related-links a {
  border-color: rgba(255,255,255,.14);
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.consumables-page .related-links a:hover,
.consumables-page .related-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(230,106,31,.75);
}

/* Rigging-only refinements retain the shared directory-page system. */
.rigging-equipment-page #selecting-rigging {
  background: #f5f7f7;
  border-top: 1px solid #dde2e5;
  border-bottom: 1px solid #dde2e5;
}
.rigging-equipment-page .rigging-check-grid { gap: .8rem; }
.rigging-equipment-page .rigging-check-grid li {
  border-top-width: 1px;
  border-left: 4px solid var(--main-orange);
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 14px rgba(17,24,32,.035);
}
.rigging-equipment-page .rigging-check-grid strong { color: #843307; }
.rigging-equipment-page #before-every-lift { background: #fff; }
.rigging-equipment-page .inspection-grid ul {
  background: #f7f8f8;
  border: 1px solid #dde2e5;
  border-radius: 8px;
}
.rigging-equipment-page .safety-callout {
  border-left-color: #d8792f;
  border-radius: 0 8px 8px 0;
}
.rigging-equipment-page .safety-panel { border-left-color: var(--main-orange); }
.rigging-equipment-page .related-links a {
  border-color: rgba(255,255,255,.14);
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.rigging-equipment-page .related-links a:hover,
.rigging-equipment-page .related-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(230,106,31,.75);
}

/* Alignment-only refinements retain the shared directory-page system. */
.alignment-tools-page #workflow {
  background: #f5f7f7;
  border-top: 1px solid #dde2e5;
  border-bottom: 1px solid #dde2e5;
}
.alignment-tools-page .workflow-list { gap: .75rem; }
.alignment-tools-page .workflow-list li {
  position: relative;
  padding: 1rem 1rem 1rem 4.35rem;
  background: #fff;
  border-color: #d9dfe2;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(17,24,32,.03);
}
.alignment-tools-page .workflow-list li::before {
  width: 2.35rem;
  height: 2.35rem;
  left: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: #9c3c08;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 850;
}
.alignment-tools-page .workflow-list li strong { color: #27343e; }
.alignment-tools-page .workflow-note {
  border-left: 4px solid var(--main-orange);
  border-radius: 0 8px 8px 0;
}
.alignment-tools-page .related-links a {
  border-color: rgba(255,255,255,.14);
  transition: transform .16s ease, border-color .16s ease, background-color .16s ease;
}
.alignment-tools-page .related-links a:hover,
.alignment-tools-page .related-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(230,106,31,.75);
}

/* Precision-only refinements retain the shared directory-page system. */
.precision-tools-page #measurement-guidance { background: #f5f7f7; border-top: 1px solid #dde2e5; }
.precision-tools-page #precision-work { background: #fff; }
.precision-tools-page .precision-uses { gap: .85rem; }
.precision-tools-page .precision-uses li {
  border-top-width: 1px;
  border-left: 4px solid var(--main-orange);
  box-shadow: 0 4px 14px rgba(17,24,32,.035);
}
.precision-tools-page .precision-uses strong { color: #843307; }

/* Category summary / introduction */
.directory-page .category-intro {
  background: linear-gradient(90deg, #a83d08, #bd4b0d 58%, #a8400b);
  border-block: 1px solid rgba(255,255,255,.12);
}
.directory-page .category-intro__grid {
  min-height: 108px;
  grid-template-columns: minmax(230px,.4fr) 1fr;
  gap: clamp(2rem,5vw,4.5rem);
}
.directory-page .category-intro strong { font-size: 1.12rem; letter-spacing: -.012em; }
.directory-page .category-intro p { max-width: 760px; color: #fff1e8; line-height: 1.62; }

/* Tool-group navigation */
.directory-page .hand-tool-groups { padding-block: 62px 68px; background: #f4f6f6; }
.directory-page .section-heading { margin-bottom: 1.65rem; align-items: end; }
.directory-page .section-heading h2 {
  max-width: 720px;
  font-size: clamp(2.05rem, 3.7vw, 3.05rem);
  font-weight: 840;
  line-height: 1.08;
  letter-spacing: -.038em;
}
.directory-page .section-heading > p { max-width: 530px; line-height: 1.65; }
.directory-page .group-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .8rem; }
.directory-page .group-grid a {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 1rem;
  align-content: center;
  min-height: 148px;
  padding: .72rem 2.7rem .72rem .72rem;
  background: #fff;
  border: 1px solid #d7dde0;
  border-top: 2px solid var(--dark-accessible-orange);
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(17,24,32,.05);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.directory-page .group-grid a::after {
  content: "→";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-accessible-orange);
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform .16s ease;
}
.directory-page .group-grid a:hover,
.directory-page .group-grid a:focus-visible { transform: translateY(-3px); border-color: #b9c3c9; box-shadow: var(--card-shadow); }
.directory-page .group-grid a:hover::after,
.directory-page .group-grid a:focus-visible::after { transform: translate(3px,-50%); }
.directory-page .group-grid .group-card__media {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: block;
  align-self: stretch;
  width: auto;
  height: auto;
  min-height: 118px;
  margin: 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,255,255,0) 62%),
    #edf1f2;
  border: 1px solid #dce2e4;
  border-radius: 7px;
  box-shadow: inset 0 -2px 0 rgba(184,72,12,.16);
}
.directory-page .group-grid .group-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.directory-page .group-grid strong { grid-column: 2; align-self: end; font-size: .96rem; line-height: 1.25; }
.directory-page .group-grid small { grid-column: 2; align-self: start; margin-top: .38rem; color: #68747d; line-height: 1.4; }

/* Educational guide */
.directory-page .featured-tool-section { padding-block: 84px 94px; background: #fff; }
.directory-page .featured-tool-section > .container > .section-heading {
  padding-bottom: 2.15rem;
  border-bottom: 1px solid #dce1e4;
}
.directory-page .featured-tool {
  margin: 4rem 0 2rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d6dde1;
  border-radius: 14px;
  box-shadow: 0 9px 28px rgba(17,24,32,.06);
}
.directory-page .featured-tool:nth-of-type(even) { background: #fbfcfc; }
.directory-page .featured-tool__visual {
  min-height: 360px;
  border-right: 1px solid #dce1e4;
  background-color: #e9edef;
}
.directory-page .featured-tool__visual::after { opacity: .16; }
.directory-page .featured-tool__visual > span {
  color: #596670;
  background: rgba(255,255,255,.92);
  border: 1px solid #d4dade;
  border-radius: 4px;
}
.directory-page .featured-tool__body { padding: clamp(1.6rem,3.5vw,3rem); }
.directory-page .featured-tool__type { color: var(--dark-accessible-orange); letter-spacing: .12em; }
.directory-page .featured-tool__body h3 { font-size: clamp(1.75rem,3vw,2.45rem); line-height: 1.1; letter-spacing: -.035em; }
.directory-page .featured-tool__summary { max-width: 720px; color: #4d5963; font-size: 1.01rem; line-height: 1.7; }
.directory-page .tool-details { gap: .7rem; }
.directory-page .tool-details > div { padding: .9rem 1rem; background: #f5f7f7; border-color: #e0e4e7; border-radius: 7px; }
.directory-page .tool-details dt { color: #3e4a54; }
.directory-page .tool-details dd { color: #616d76; line-height: 1.55; }
.directory-page .field-note {
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
  background: #fff7f0;
  border: 1px solid #f0d9c9;
  border-left: 4px solid var(--main-orange);
  border-radius: 0 8px 8px 0;
}
.directory-page .field-note strong { color: #843307; letter-spacing: .065em; text-transform: uppercase; }

/* Product comparison */
.directory-page .product-classification-guide {
  margin: 0 0 1.8rem;
  padding: clamp(1.3rem,2.5vw,2rem);
  color: #d6dde1;
  background: linear-gradient(135deg, #17222b, #101820);
  border: 1px solid #2a3741;
  border-radius: 12px;
  box-shadow: 0 9px 26px rgba(17,24,32,.12);
}
.directory-page .product-classification-guide .eyebrow { color: #f2a566; }
.directory-page .product-classification-guide h3 { color: #fff; }
.directory-page .product-classification-guide p { color: #c2cbd1; }
.directory-page .product-classification-guide strong { color: #fff; }
.directory-page .product-options-section {
  margin-bottom: 4.25rem;
  padding: clamp(1.15rem,2.3vw,1.8rem);
  background: #f3f5f6;
  border-color: #d5dce0;
  border-radius: 13px;
  box-shadow: inset 0 3px 0 rgba(230,106,31,.62);
}
.directory-page .product-positioning-reminder {
  max-width: 880px;
  margin: 0 0 1.2rem;
  padding: .66rem .78rem;
  color: #5a6670;
  background: #fff;
  border: 1px solid #e1e5e7;
  border-left: 3px solid #bd4b0d;
  border-radius: 0 6px 6px 0;
}
.directory-page .product-options-heading { padding-bottom: 1rem; border-bottom: 1px solid #d5dadd; }
.directory-page .product-options-heading h4 { font-size: clamp(1.45rem,2.3vw,1.9rem); line-height: 1.18; }
.directory-page .product-options-heading > p { line-height: 1.55; }
.directory-page .product-option-group { margin-top: 1.6rem; }
.directory-page .product-option-group-heading {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: 1.04rem;
}
.directory-page .product-option-group-heading::before { content: ""; width: 24px; height: 3px; flex: 0 0 auto; background: var(--main-orange); }
.directory-page .product-option-group-description { max-width: 900px; margin-bottom: 1.05rem; line-height: 1.55; }

/* Product option cards */
.directory-page .product-options-grid { gap: .9rem; align-items: start; }
.directory-page .product-option-card {
  border-color: #d5dce0;
  border-top-width: 3px;
  border-radius: 10px;
  box-shadow: 0 6px 19px rgba(17,24,32,.055);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.directory-page .product-option-card:hover,
.directory-page .product-option-card:focus-within { transform: translateY(-3px); border-color: #b8c2c8; box-shadow: 0 10px 26px rgba(17,24,32,.09); }
.directory-page .product-option-image {
  min-height: 172px;
  background:
    linear-gradient(rgba(255,255,255,.0), rgba(255,255,255,.0)),
    linear-gradient(145deg,#f6f7f7,#e4e8ea);
  border-bottom: 1px solid #dde2e5;
}
.directory-page .product-option-image::after {
  color: #53606a;
  background: rgba(255,255,255,.9);
  border: 1px solid #d9dfe2;
}
.directory-page .product-option-card__body { padding: 1.1rem; }
.directory-page .product-option-card__type { color: #963905; letter-spacing: .1em; }
.directory-page .product-option-card h5 { margin-bottom: .85rem; font-size: 1.12rem; }
.directory-page .product-option-specs { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; border-top: 1px solid #e1e5e7; }
.directory-page .product-option-specs > div { min-width: 0; padding: .58rem .55rem .58rem 0; }
.directory-page .product-option-specs > div:nth-child(even) { padding-left: .55rem; border-left: 1px solid #e5e8ea; }
.directory-page .product-option-specs dt { color: #4b5861; }
.directory-page .product-option-specs dd { color: #626e77; line-height: 1.45; overflow-wrap: anywhere; }

/* Product positioning panels */
.directory-page .product-positioning {
  padding: .82rem;
  background: #f4f6f7;
  border-color: #d9dfe2;
  border-radius: 7px;
}
.directory-page .product-positioning-badges { gap: .36rem; }
.directory-page .product-grade-badge,
.directory-page .product-value-badge,
.directory-page .product-price-position,
.directory-page .product-duty-level { max-width: 100%; min-height: 28px; white-space: normal; overflow-wrap: anywhere; }
.directory-page .product-grade-unclassified,
.directory-page .product-value-unreviewed { color: #59656e; background: #edf0f1; border-color: #ccd3d7; }
.directory-page .product-positioning-item { padding-block: .48rem; line-height: 1.45; }
.directory-page .product-positioning-item strong { color: #46525c; }
.directory-page .product-option-field-note {
  margin-top: auto;
  color: #59656e;
  background: #fff8f2;
  border: 1px solid #efdccc;
  border-left: 3px solid var(--main-orange);
  border-radius: 0 6px 6px 0;
}
.directory-page .product-option-button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .72rem .8rem;
  border-radius: 6px;
  font-weight: 790;
  line-height: 1.3;
  transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease;
}
.directory-page .product-option-button:hover,
.directory-page .product-option-button:focus-visible { transform: translateY(-1px); background: #9c3c08; box-shadow: 0 7px 16px rgba(17,24,32,.15); }
.directory-page .product-options-reminder {
  margin-top: 1.15rem;
  padding: 1rem 1.1rem;
  background: #fff;
  border: 1px solid #dce2e5;
  border-left: 4px solid var(--main-orange);
  border-radius: 0 7px 7px 0;
}
.directory-page .product-options-reminder > strong { display: block; margin-bottom: .2rem; color: #853207; font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.directory-page .product-options-reminder p { margin: 0; line-height: 1.58; }

/* Buying basics, related-category navigation and final category CTA */
.directory-page .buying-basics { padding-block: 78px; background: #eef1f2; border-top: 1px solid #dce1e4; }
.directory-page .buying-basics__grid { gap: clamp(2.5rem,6vw,5rem); align-items: start; }
.directory-page .buying-basics h2 { max-width: 430px; font-size: clamp(2rem,3.7vw,3rem); line-height: 1.08; letter-spacing: -.038em; }
.directory-page .buying-basics ul { gap: .65rem; }
.directory-page .buying-basics li {
  padding: .95rem 1rem;
  background: #fff;
  border: 1px solid #d9dfe2;
  border-left: 3px solid #bcc6cc;
  border-radius: 0 7px 7px 0;
  box-shadow: 0 3px 12px rgba(17,24,32,.025);
}
.directory-page .buying-basics li strong { color: #843307; }
.directory-page .category-next {
  position: relative;
  overflow: hidden;
  padding-block: 70px;
  background:
    radial-gradient(circle at 88% 50%, rgba(230,106,31,.18), transparent 25%),
    linear-gradient(120deg,#18232c,#0c1319);
  border-top: 1px solid #2a3741;
}
.directory-page .category-next::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(120deg, transparent 0 46px, rgba(255,255,255,.022) 46px 47px);
}
.directory-page .category-next__inner { position: relative; z-index: 1; }
.directory-page .category-next h2 { font-weight: 840; letter-spacing: -.035em; }
.directory-page .category-next .eyebrow { color: #f4ac6c; }
.directory-page .category-next a:not(.button) { text-decoration-color: #e18a4d; text-underline-offset: 3px; }

/* Professional directory footer */
.directory-page .site-footer { border-top: 1px solid rgba(255,255,255,.08); }
.directory-page .site-footer .brand { margin-bottom: .95rem; }
.directory-page .site-footer p,
.directory-page .affiliate-disclosure,
.directory-page .footer__bottom { color: #aeb8bf; }
.directory-page .footer__grid a { transition: color .16s ease; }

/* Responsive detailed-directory rules */
@media (max-width: 1024px) {
  .directory-page .product-options-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 980px) {
  .directory-page .header__inner { min-height: 72px; }
  .directory-page .primary-nav { top: 72px; background: rgba(255,255,255,.99); box-shadow: 0 20px 36px rgba(8,13,18,.14); }
  .directory-page .primary-nav > a:not(.nav-cta)::after { display: none; }
  .directory-page .menu-toggle { border: 1px solid #d9dee1; background: #f6f7f7; }
  .directory-page .page-hero__texture { width: 100%; opacity: .31; mask-image: linear-gradient(90deg, transparent, #000); }
  .directory-page .page-hero::after { background: rgba(7,12,17,.72); }
  .directory-page .section-heading { align-items: start; }
  .directory-page .group-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-page .featured-tool { grid-template-columns: 1fr; }
  .directory-page .featured-tool__visual { min-height: 280px; border-right: 0; border-bottom: 1px solid #dce1e4; }
}

@media (max-width: 680px) {
  .directory-page .container { width: min(calc(100% - 28px), var(--content-width)); }
  .directory-page .header__inner { min-height: 66px; }
  .directory-page .brand img { width: 40px; height: 40px; }
  .directory-page .primary-nav { top: 66px; padding-inline: 14px; }
  .directory-page .page-hero__inner { padding-block: 44px 50px; }
  .directory-page .page-hero__texture { opacity: .16; background-position: 72% center; }
  .hand-tools-page .page-hero__texture,
  .precision-tools-page .page-hero__texture,
  .alignment-tools-page .page-hero__texture,
  .rigging-equipment-page .page-hero__texture,
  .consumables-page .page-hero__texture,
  .tool-storage-page .page-hero__texture,
  .power-tools-page .page-hero__texture,
  .safety-ppe-page .page-hero__texture { opacity: .3; background-position: center; }
  .directory-page .breadcrumbs { margin-bottom: 1.8rem; }
  .directory-page .page-hero h1 { font-size: clamp(2.45rem,12vw,3.45rem); line-height: 1.01; }
  .directory-page .page-hero__inner > p:not(.eyebrow) { font-size: 1rem; line-height: 1.6; }
  .directory-page .category-intro__grid { grid-template-columns: 1fr; gap: .45rem; padding-block: 1.3rem; }
  .directory-page .hand-tool-groups { padding-block: 48px 52px; }
  .directory-page .group-grid { grid-template-columns: 1fr; }
  .directory-page .group-grid a {
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 124px;
    padding: .65rem 2.65rem .65rem .65rem;
  }
  .directory-page .group-grid .group-card__media { min-height: 98px; }
  .directory-page .featured-tool-section { padding-block: 60px 66px; }
  .directory-page .featured-tool-section > .container > .section-heading { padding-bottom: 1.55rem; }
  .directory-page .featured-tool { margin: 2.8rem 0 1.35rem; }
  .directory-page .featured-tool__visual { min-height: 225px; }
  .directory-page .featured-tool__body { padding: 1.2rem; }
  .directory-page .product-classification-guide { padding: 1.15rem; }
  .directory-page .product-options-section { margin-bottom: 3.2rem; padding: 1rem; }
  .directory-page .product-options-grid { grid-template-columns: 1fr; }
  .directory-page .product-option-card__body { padding: 1rem; }
  .directory-page .product-option-image { min-height: 150px; }
  .directory-page .product-option-specs { grid-template-columns: 1fr; }
  .directory-page .product-option-specs > div,
  .directory-page .product-option-specs > div:nth-child(even) { padding: .58rem 0; border-left: 0; }
  .directory-page .product-positioning-badges { align-items: flex-start; flex-direction: column; }
  .directory-page .product-grade-badge,
  .directory-page .product-value-badge,
  .directory-page .product-price-position,
  .directory-page .product-duty-level { width: 100%; }
  .directory-page .buying-basics { padding-block: 58px; }
  .directory-page .category-next { padding-block: 56px; }
  .tool-storage-page #storage-groups { padding-block: 58px 62px; }
  .tool-storage-page .storage-compare { margin-top: 1.5rem; padding-top: 1.5rem; }
  .power-tools-page #power-tool-groups { padding-block: 58px 62px; }
  .safety-ppe-page #ppe-groups { padding-block: 58px 62px; }
  .alignment-tools-page .workflow-list li { padding-left: 3.85rem; }
  .alignment-tools-page .workflow-list li::before { left: .8rem; }
}

@media (max-width: 390px) {
  .directory-page .container { width: min(calc(100% - 24px), var(--content-width)); }
  .directory-page .page-hero h1 { font-size: clamp(2.25rem,12vw,2.9rem); }
  .directory-page .page-hero .button { width: 100%; justify-content: center; text-align: center; }
  .directory-page .product-options-section { padding: .85rem; }
  .directory-page .product-positioning { padding: .68rem; }
}

@media (prefers-reduced-motion: reduce) {
  .directory-page .primary-nav > a:not(.nav-cta)::after,
  .directory-page .group-grid a,
  .directory-page .group-grid a::after,
  .directory-page .product-option-card,
  .directory-page .product-option-button { transition: none; }
  .tool-storage-page .related-links a { transition: none; }
  .power-tools-page .related-links a { transition: none; }
  .safety-ppe-page .related-links a { transition: none; }
  .alignment-tools-page .related-links a { transition: none; }
  .rigging-equipment-page .related-links a { transition: none; }
  .directory-page .group-grid a:hover,
  .directory-page .group-grid a:focus-visible,
  .directory-page .product-option-card:hover,
  .directory-page .product-option-card:focus-within,
  .directory-page .product-option-button:hover,
  .directory-page .product-option-button:focus-visible { transform: none; }
  .tool-storage-page .related-links a:hover,
  .tool-storage-page .related-links a:focus-visible { transform: none; }
  .power-tools-page .related-links a:hover,
  .power-tools-page .related-links a:focus-visible { transform: none; }
  .safety-ppe-page .related-links a:hover,
  .safety-ppe-page .related-links a:focus-visible { transform: none; }
  .alignment-tools-page .related-links a:hover,
  .alignment-tools-page .related-links a:focus-visible { transform: none; }
  .rigging-equipment-page .related-links a:hover,
  .rigging-equipment-page .related-links a:focus-visible,
  .machinery-installation-page .related-links a:hover,
  .machinery-installation-page .related-links a:focus-visible { transform: none; }
}

/* ================================================================
   CATEGORY HERO IMAGE RIGHT-ALIGNMENT CORRECTION V1 — 2026-08-10
   Keeps approved hero artwork in a reserved right-side zone so it
   never competes with category-page copy. Mobile stacks art below.
   ================================================================ */
@media (min-width: 681px) {
  .directory-page .page-hero__inner {
    max-width: var(--content-width);
    padding-right: clamp(300px, 34vw, 430px);
  }

  .directory-page .page-hero__texture {
    inset: 18px max(20px, calc((100vw - var(--content-width)) / 2)) 18px auto;
    width: clamp(260px, 31vw, 400px);
    height: auto;
    opacity: .92;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .directory-page .page-hero::after {
    background: linear-gradient(90deg, rgba(7,12,17,.95) 0%, rgba(7,12,17,.84) 50%, rgba(7,12,17,.38) 72%, rgba(7,12,17,.12) 100%);
  }

  .directory-page .page-hero__inner > * {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 680px) {
  .directory-page .page-hero__inner {
    max-width: var(--content-width);
    padding-right: 0;
    padding-bottom: 270px;
  }

  .directory-page .page-hero__texture,
  .hand-tools-page .page-hero__texture,
  .precision-tools-page .page-hero__texture,
  .alignment-tools-page .page-hero__texture,
  .rigging-equipment-page .page-hero__texture,
  .consumables-page .page-hero__texture,
  .machinery-installation-page .page-hero__texture,
  .tool-storage-page .page-hero__texture,
  .power-tools-page .page-hero__texture,
  .safety-ppe-page .page-hero__texture {
    inset: auto auto 22px 50%;
    width: min(76vw, 300px);
    height: 220px;
    transform: translateX(-50%);
    opacity: .9;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .directory-page .page-hero::after {
    background: linear-gradient(180deg, rgba(7,12,17,.94) 0%, rgba(7,12,17,.88) 58%, rgba(7,12,17,.3) 100%);
  }

  .directory-page .page-hero__inner > * {
    position: relative;
    z-index: 2;
  }
}

/* ================================================================
   FULL-CARD CATEGORY LINKS V1 — 2026-08-11
   Makes every live tool-category card clickable across its full area
   while preserving the existing visible Explore/Browse link treatment.
   ================================================================ */
.home-page .category-card,
.tool-categories-page .directory-card:not(.directory-card--apprentice) {
  cursor: pointer;
}

/* Stretch the existing semantic link across the entire card. */
.home-page .category-card > a::after,
.tool-categories-page .directory-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.tool-categories-page .directory-card {
  position: relative;
}

/* Make keyboard focus visible on the whole card, not only the CTA text. */
.home-page .category-card:focus-within,
.tool-categories-page .directory-card:not(.directory-card--apprentice):focus-within {
  outline: 3px solid rgba(234, 96, 20, .55);
  outline-offset: 3px;
}

/* ================================================================
   TOOL CATEGORY IMAGE-LEFT CARD LAYOUT V1 — 2026-08-11
   Larger approved category artwork on the left with a protected
   content column on the right. Full-card click behavior is preserved.
   ================================================================ */
.home-page #categories .category-grid {
  gap: 1.1rem;
}

.home-page #categories .category-card {
  min-height: 248px;
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  grid-template-rows: auto 1fr auto;
  column-gap: 1.25rem;
  row-gap: .55rem;
  align-items: start;
  padding: 1.35rem;
}

.home-page #categories .category-card__icon {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: stretch;
  width: 124px;
  height: auto;
  min-height: 178px;
  margin: 0;
  padding: .7rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(38,50,60,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,50,60,.028) 1px, transparent 1px),
    linear-gradient(145deg, #f7f8f8, #edf0f1);
  background-size: 18px 18px, 18px 18px, auto;
  border: 1px solid #dce2e5;
  border-radius: 14px;
  box-shadow: inset 0 1px 0 #fff;
}

.home-page #categories .category-icon {
  width: 100%;
  height: 100%;
  max-width: 106px;
  max-height: 158px;
  object-fit: contain;
  object-position: center;
}

.home-page #categories .category-card h3 {
  grid-column: 2;
  grid-row: 1;
  margin: .1rem 0 0;
  padding-bottom: .72rem;
  position: relative;
  font-size: 1.28rem;
  line-height: 1.15;
}

.home-page #categories .category-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .15rem;
  width: 30px;
  height: 2px;
  background: var(--main-orange);
  border-radius: 999px;
}

.home-page #categories .category-card p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  line-height: 1.58;
}

.home-page #categories .category-card > a {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
  margin-top: .35rem;
  padding-top: .75rem;
  border-top: 1px solid #e6eaec;
}

/* The dedicated Tool Categories page uses the same image-left visual
   direction while retaining its richer support/status information. */
.tool-categories-page .directory-card.directory-card--with-media {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  grid-template-rows: auto auto auto auto auto;
  column-gap: 1.35rem;
  row-gap: .7rem;
  align-items: start;
  min-height: 0;
}

.tool-categories-page .directory-card--with-media .directory-card__media {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: stretch;
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: .85rem;
  background:
    linear-gradient(rgba(38,50,60,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,50,60,.028) 1px, transparent 1px),
    linear-gradient(145deg, #f7f8f8, #edf0f1);
  background-size: 18px 18px, 18px 18px, auto;
  border: 1px solid #dce2e5;
  border-radius: 14px;
}

.tool-categories-page .directory-card--with-media .directory-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 126px;
  max-height: 205px;
  object-fit: contain;
  object-position: center;
}

.tool-categories-page .directory-card--with-media .directory-card__heading,
.tool-categories-page .directory-card--with-media > p,
.tool-categories-page .directory-card--with-media .directory-card__support,
.tool-categories-page .directory-card--with-media .directory-card__link,
.tool-categories-page .directory-card--with-media .directory-card__status {
  grid-column: 2;
}

.tool-categories-page .directory-card--with-media > p {
  margin: 0;
}

.tool-categories-page .directory-card--with-media .directory-card__support {
  margin-top: .1rem;
}

.tool-categories-page .directory-card--with-media .directory-card__link {
  margin-top: .15rem;
}

.tool-categories-page .directory-card--with-media .directory-card__status {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .home-page #categories .category-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .home-page #categories .category-card__icon {
    width: 112px;
    min-height: 164px;
  }

  .home-page #categories .category-icon {
    max-width: 96px;
    max-height: 144px;
  }

  .tool-categories-page .directory-card.directory-card--with-media {
    grid-template-columns: 128px minmax(0, 1fr);
    column-gap: 1.1rem;
  }

  .tool-categories-page .directory-card--with-media .directory-card__media {
    min-height: 208px;
  }
}

@media (max-width: 700px) {
  .home-page #categories .category-card {
    min-height: 220px;
    grid-template-columns: 108px minmax(0, 1fr);
    column-gap: 1rem;
    padding: 1.1rem;
  }

  .home-page #categories .category-card__icon {
    width: 108px;
    min-height: 154px;
    padding: .55rem;
  }

  .home-page #categories .category-icon {
    max-width: 92px;
    max-height: 138px;
  }

  .home-page #categories .category-card h3 {
    font-size: 1.18rem;
  }

  .home-page #categories .category-card p {
    font-size: .9rem;
    line-height: 1.5;
  }

  .tool-categories-page .directory-card.directory-card--with-media {
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 1rem;
    padding: 1.15rem;
  }

  .tool-categories-page .directory-card--with-media .directory-card__media {
    min-height: 190px;
    padding: .55rem;
  }

  .tool-categories-page .directory-card--with-media .directory-card__media img {
    max-width: 96px;
    max-height: 170px;
  }
}

/* ================================================================
   HOMEPAGE FOCUSED PROFESSIONAL POLISH V2 — 2026-08-11
   Refined hero, credibility strip, tighter rhythm and image-left
   Popular Tools cards. Scoped to the homepage only.
   ================================================================ */
.home-page .hero__grid {
  min-height: 548px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  padding-block: 62px 68px;
}

.home-page .hero__copy { max-width: 700px; }
.home-page .hero h1 {
  max-width: 680px;
  font-size: clamp(3rem, 5.1vw, 4.65rem);
  line-height: 1;
}
.home-page .hero__lead { max-width: 640px; margin-top: 1.2rem; }
.home-page .hero__actions { margin-top: 1.65rem; }
.home-page .hero-panel { padding: .9rem; border-radius: 15px; }
.home-page .hero-panel article {
  min-height: 96px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: center;
  gap: .75rem;
  padding: .8rem;
  border-radius: 9px;
}
.home-page .hero-panel__note { margin-top: .7rem; padding: .8rem .85rem; border-radius: 9px; }

.home-page .hero-composition { margin: 0; overflow: hidden; }
.home-page .hero-composition__visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #0b1117;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
}
.home-page .hero-composition__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(5,9,12,.88) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035);
}
.home-page .hero-composition__visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}
.home-page .hero-composition__legend {
  position: absolute;
  z-index: 1;
  inset: auto 14px 13px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.home-page .hero-composition__legend span {
  padding-top: .45rem;
  color: #e4e9ec;
  border-top: 2px solid var(--main-orange);
  font-size: .65rem;
  font-weight: 820;
  letter-spacing: .055em;
  text-align: center;
  text-transform: uppercase;
}

.home-page .credibility-strip {
  position: relative;
  z-index: 2;
  color: #202b34;
  background: #fff;
  border-bottom: 1px solid #d9dfe2;
  box-shadow: 0 8px 24px rgba(17,24,32,.055);
}
.home-page .credibility-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.home-page .credibility-strip__grid > div {
  position: relative;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .22rem;
  padding: 1.1rem 1.35rem 1.1rem 1.55rem;
  border-right: 1px solid #e2e6e8;
}
.home-page .credibility-strip__grid > div:first-child { border-left: 1px solid #e2e6e8; }
.home-page .credibility-strip__grid > div::before {
  content: "";
  position: absolute;
  left: .85rem;
  top: 50%;
  width: 3px;
  height: 32px;
  background: var(--main-orange);
  border-radius: 999px;
  transform: translateY(-50%);
}
.home-page .credibility-strip strong { font-size: .88rem; line-height: 1.25; }
.home-page .credibility-strip span { color: #6b767e; font-size: .76rem; line-height: 1.4; }

.home-page .section { padding-block: 74px; }
.home-page .section-heading { margin-bottom: 2rem; }
.home-page #categories { padding-top: 78px; }
.home-page .category-directory-action {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}
.home-page .category-directory-action a {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-height: 46px;
  padding: .7rem 1rem;
  color: var(--ink);
  border-bottom: 2px solid var(--main-orange);
  font-size: .92rem;
  font-weight: 850;
  text-decoration: none;
}
.home-page .category-directory-action span,
.home-page #featured-tools .tool-card a span { display: inline-block; transition: transform .16s ease; }
.home-page .category-directory-action a:hover span,
.home-page .category-directory-action a:focus-visible span,
.home-page #featured-tools .tool-card:hover a span,
.home-page #featured-tools .tool-card:focus-within a span { transform: translateX(4px); }
.home-page #featured-tools { padding-block: 76px; }

.home-page #featured-tools .tool-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.home-page #featured-tools .tool-card {
  position: relative;
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}
.home-page #featured-tools .tool-card__visual {
  min-height: 100%;
  border-right: 1px solid #d3d9dc;
  border-bottom: 0;
}
.home-page #featured-tools .popular-tool-illustration {
  object-fit: contain;
  object-position: center;
}
.home-page #featured-tools .popular-tool-illustration {
  inset: 16px 12px;
  width: calc(100% - 24px);
  height: calc(100% - 32px);
}
.home-page #featured-tools .tool-card__content {
  min-height: 0;
  padding: 1.35rem 1.3rem;
}
.home-page #featured-tools .tool-card h3 {
  min-height: 0;
  margin: .42rem 0 .55rem;
  padding-bottom: .65rem;
  position: relative;
}
.home-page #featured-tools .tool-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: .15rem;
  width: 30px;
  height: 2px;
  background: var(--main-orange);
  border-radius: 999px;
}
.home-page #featured-tools .tool-card p {
  min-height: 0;
  margin-bottom: 1rem;
  line-height: 1.55;
}
.home-page #featured-tools .tool-card a { color: var(--dark-accessible-orange); }
.home-page #featured-tools .tool-card a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.home-page .footer__grid { gap: clamp(2.5rem, 6vw, 5rem); }
.home-page .footer__grid > div:not(:first-child) {
  padding-left: 1.4rem;
  border-left: 1px solid rgba(255,255,255,.09);
}
.home-page .footer__grid a:not(.brand),
.home-page .footer-privacy-choices { transition: color .16s ease, transform .16s ease; }
.home-page .footer__grid a:not(.brand):hover,
.home-page .footer__grid a:not(.brand):focus-visible,
.home-page .footer-privacy-choices:hover,
.home-page .footer-privacy-choices:focus-visible { color: #f2a363; transform: translateX(2px); }
.home-page .footer__trade-line {
  display: inline-block;
  margin-top: .7rem;
  padding-top: .7rem;
  color: #d4dce1;
  border-top: 2px solid var(--main-orange);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.home-page .footer__bottom-band {
  margin-top: 1.4rem;
  background: rgba(0,0,0,.2);
  border-top: 1px solid rgba(255,255,255,.07);
}

@media (max-width: 980px) {
  .home-page .hero__grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding-block: 58px 64px;
  }
  .home-page .hero-composition__visual,
  .home-page .hero-composition__visual img { height: 340px; }
  .home-page .footer__grid > div:not(:first-child) { padding-left: 0; border-left: 0; }
  .home-page .credibility-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page .credibility-strip__grid > div:nth-child(2) { border-right: 1px solid #e2e6e8; }
  .home-page .credibility-strip__grid > div:nth-child(-n+2) { border-bottom: 1px solid #e2e6e8; }
  .home-page #featured-tools .tool-card { grid-template-columns: 145px minmax(0, 1fr); }
}

@media (max-width: 700px) {
  .home-page .hero__grid { padding-block: 48px 52px; }
  .home-page .hero-composition__visual,
  .home-page .hero-composition__visual img { height: 270px; min-height: 270px; }
  .home-page .hero-composition__legend { inset-inline: 9px; bottom: 9px; gap: 4px; }
  .home-page .hero-composition__legend span { font-size: .56rem; letter-spacing: .025em; }
  .home-page .hero h1 { font-size: clamp(2.45rem, 12vw, 3.45rem); }
  .home-page .credibility-strip__grid { grid-template-columns: 1fr; }
  .home-page .credibility-strip__grid > div {
    min-height: 76px;
    border-left: 1px solid #e2e6e8;
    border-right: 1px solid #e2e6e8;
    border-bottom: 1px solid #e2e6e8;
  }
  .home-page .section,
  .home-page #featured-tools { padding-block: 60px; }
  .home-page #categories { padding-top: 62px; }
  .home-page .category-directory-action { margin-top: 1.35rem; }
  .home-page #featured-tools .tool-grid { grid-template-columns: 1fr; }
  .home-page #featured-tools .tool-card { grid-template-columns: 118px minmax(0, 1fr); min-height: 198px; }
  .home-page #featured-tools .tool-card__content { padding: 1.1rem; }
}

@media (max-width: 430px) {
  .home-page #featured-tools .tool-card { grid-template-columns: 104px minmax(0, 1fr); }
  .home-page #featured-tools .tool-card__content { padding: 1rem .9rem; }
  .home-page #featured-tools .tool-card p { font-size: .84rem; }
}

/* Homepage hero and Popular Tools compact-height pass — 2026-08-13 */
@media (min-width: 981px) {
  .home-page #featured-tools { padding-block: 52px; }
  .home-page #featured-tools .section-heading { margin-bottom: 1.4rem; }
  .home-page #featured-tools .tool-card {
    grid-template-columns: 150px minmax(0, 1fr);
    min-height: 184px;
  }
  .home-page #featured-tools .tool-card__content { padding: 1rem 1.1rem; }
  .home-page #featured-tools .tool-card h3 { margin: .32rem 0 .42rem; padding-bottom: .55rem; }
  .home-page #featured-tools .tool-card p { margin-bottom: .7rem; line-height: 1.45; }
}

/* Homepage Field Guides destination pass — 2026-08-11 */
.home-page .field-guides-home {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(38,50,60,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,50,60,.022) 1px, transparent 1px),
    #fff;
  background-size: 30px 30px, 30px 30px, auto;
}
.home-page .field-guides-home::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(transparent, var(--main-orange) 15%, var(--main-orange) 85%, transparent);
}
.home-page .field-guides-home .guide-grid { align-items: stretch; gap: 1.1rem; }
.home-page .field-guides-home .guide-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 1.45rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7dde0;
  border-top: 3px solid var(--dark-accessible-orange);
  border-radius: 11px;
  box-shadow: 0 10px 28px rgba(17,24,32,.07);
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.home-page .field-guides-home .guide-card:hover,
.home-page .field-guides-home .guide-card:focus-within {
  transform: translateY(-4px);
  border-color: #bfc8cd;
  box-shadow: 0 16px 36px rgba(17,24,32,.11);
}
.home-page .guide-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e3e7e9;
}
.home-page .field-guides-home .guide-card__tag {
  padding: 0;
  color: var(--dark-accessible-orange);
  background: transparent;
  font-size: .7rem;
  letter-spacing: .11em;
}
.home-page .field-guides-home .guide-card__status {
  margin: 0;
  padding: .28rem .48rem;
  color: #59656e;
  background: #eef1f2;
  border: 1px solid #dde3e5;
  border-radius: 999px;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}
.home-page .field-guides-home .guide-card h3 {
  margin: 1.15rem 0 .7rem;
  font-size: 1.38rem;
  line-height: 1.16;
  letter-spacing: -.025em;
}
.home-page .field-guides-home .guide-card > p {
  margin: 0;
  color: #68737b;
  font-size: .92rem;
  line-height: 1.65;
}
.home-page .guide-card__covers {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin-top: 1.2rem;
}
.home-page .guide-card__covers strong { flex: 0 0 100%; color: #303b44; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; }
.home-page .guide-card__covers span {
  padding: .3rem .5rem;
  color: #59656e;
  background: #f2f4f4;
  border: 1px solid #e0e5e7;
  border-radius: 5px;
  font-size: .7rem;
}
.home-page .guide-card__link {
  margin-top: auto;
  padding-top: 1.15rem;
  color: var(--dark-accessible-orange);
  border-top: 1px solid #e4e8ea;
  font-size: .84rem;
  font-weight: 850;
  text-decoration: none;
}
.home-page .guide-card__link span { display: inline-block; transition: transform .16s ease; }
.home-page .guide-card__link:hover span,
.home-page .guide-card__link:focus-visible span { transform: translateX(3px); }
.home-page .field-guides-home__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.15rem;
  padding: 1.15rem 1.3rem;
  color: #d9e0e4;
  background: #17212a;
  border: 1px solid #26343e;
  border-radius: 10px;
  box-shadow: 0 9px 24px rgba(17,24,32,.1);
}
.home-page .field-guides-home__note > div { display: grid; gap: .18rem; }
.home-page .field-guides-home__note strong { color: #fff; font-size: .9rem; }
.home-page .field-guides-home__note span { color: #adb8c0; font-size: .78rem; line-height: 1.45; }
.home-page .field-guides-home__note > a {
  flex: 0 0 auto;
  color: #f3a35f;
  font-size: .82rem;
  font-weight: 850;
  text-decoration: none;
}

@media (max-width: 820px) {
  .home-page .field-guides-home .guide-grid { grid-template-columns: 1fr; }
  .home-page .field-guides-home .guide-card { min-height: 0; }
  .home-page .field-guides-home__note { align-items: flex-start; flex-direction: column; gap: .85rem; }
}

@media (max-width: 430px) {
  .home-page .guide-card__topline { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .home-page .field-guides-home .guide-card { padding: 1.2rem; }
}

/* Homepage Tool Categories precision polish — 2026-08-11 */
.home-page #categories .category-grid {
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: .82rem;
}
.home-page #categories .category-card {
  width: 100%;
  min-height: 238px;
  height: 100%;
  grid-template-columns: 116px minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr) auto;
  column-gap: 1.15rem;
  row-gap: .42rem;
  padding: 1.15rem;
  border-color: #d7dde0;
  box-shadow: 0 4px 13px rgba(17,24,32,.04);
}
.home-page #categories .category-card__icon {
  align-self: center;
  width: 116px;
  height: 190px;
  min-height: 190px;
  padding: .62rem;
  border-radius: 11px;
}
.home-page #categories .category-icon {
  width: 100%;
  height: 100%;
  max-width: 100px;
  max-height: 168px;
  object-fit: contain;
  object-position: center;
}
.home-page #categories .category-card h3 {
  min-height: 2.35em;
  display: flex;
  align-items: flex-start;
  margin: 0;
  padding-bottom: .65rem;
  font-size: 1.24rem;
  line-height: 1.16;
}
.home-page #categories .category-card p {
  align-self: start;
  margin: 0;
  font-size: .91rem;
  line-height: 1.52;
}
.home-page #categories .category-card > a {
  width: 100%;
  margin-top: .25rem;
  padding-top: .65rem;
  line-height: 1.3;
}
.home-page #categories .category-card:hover,
.home-page #categories .category-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(184,72,12,.45);
  box-shadow: 0 12px 28px rgba(17,24,32,.1);
}
.home-page #categories .category-card:hover > a span,
.home-page #categories .category-card:focus-within > a span { transform: translateX(3px); }

@media (max-width: 1080px) {
  .home-page #categories .category-card {
    min-height: 230px;
    grid-template-columns: 106px minmax(0, 1fr);
    column-gap: 1rem;
  }
  .home-page #categories .category-card__icon {
    width: 106px;
    height: 176px;
    min-height: 176px;
  }
  .home-page #categories .category-icon { max-width: 90px; max-height: 154px; }
}

@media (max-width: 700px) {
  .home-page #categories .category-grid { gap: .72rem; }
  .home-page #categories .category-card {
    min-height: 210px;
    grid-template-columns: 98px minmax(0, 1fr);
    column-gap: .9rem;
    padding: 1rem;
  }
  .home-page #categories .category-card__icon {
    width: 98px;
    height: 158px;
    min-height: 158px;
    padding: .5rem;
  }
  .home-page #categories .category-icon { max-width: 84px; max-height: 140px; }
  .home-page #categories .category-card h3 { min-height: 2.3em; font-size: 1.14rem; }
  .home-page #categories .category-card p { font-size: .86rem; line-height: 1.46; }
  .home-page #categories .category-card > a { font-size: .86rem; }
}

@media (max-width: 390px) {
  .home-page #categories .category-card {
    grid-template-columns: 88px minmax(0, 1fr);
    column-gap: .8rem;
    padding: .85rem;
  }
  .home-page #categories .category-card__icon {
    width: 88px;
    height: 146px;
    min-height: 146px;
  }
}

/* ================================================================
   HOMEPAGE HERO OPTION C — INTEGRATED SPLIT COMPOSITION
   Removes the enclosed toolkit card and makes the approved industrial
   alignment composition an edge-to-edge part of the hero background.
   ================================================================ */
.home-page .hero {
  min-height: 560px;
  background: #090e13;
}
.home-page .hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: url("assets/optimized/home-hero-industrial-option-c.webp") right center / cover no-repeat;
}
.home-page .hero::after {
  z-index: 0;
  background:
    linear-gradient(90deg,
      rgba(7,11,15,.99) 0%,
      rgba(7,11,15,.98) 33%,
      rgba(7,11,15,.82) 47%,
      rgba(7,11,15,.3) 66%,
      rgba(7,11,15,.08) 100%),
    linear-gradient(180deg, rgba(4,7,10,.22), transparent 28%, transparent 72%, rgba(4,7,10,.28));
}
.home-page .hero__texture {
  z-index: 1;
  inset: 0 auto 0 0;
  width: 53%;
  height: 100%;
  opacity: .24;
  background:
    linear-gradient(rgba(230,106,31,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230,106,31,.09) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.7) 55%, transparent 100%);
}
.home-page .hero__grid {
  min-height: 560px;
  grid-template-columns: minmax(0, 660px) minmax(0, 1fr);
  gap: 0;
  padding-block: 64px 70px;
}
.home-page .hero__copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-right: 1.5rem;
}
.home-page .hero h1 { max-width: 620px; }
.home-page .hero__lead { max-width: 570px; }

@media (max-width: 1120px) {
  .home-page .hero::before { background-position: 61% center; }
  .home-page .hero::after {
    background:
      linear-gradient(90deg, rgba(7,11,15,.99) 0%, rgba(7,11,15,.97) 42%, rgba(7,11,15,.66) 62%, rgba(7,11,15,.16) 100%),
      linear-gradient(180deg, rgba(4,7,10,.24), transparent 30%, transparent 70%, rgba(4,7,10,.3));
  }
  .home-page .hero__grid { grid-template-columns: minmax(0, 610px) minmax(0, 1fr); }
}

@media (max-width: 980px) {
  .home-page .hero { min-height: 620px; }
  .home-page .hero::before { background-position: 57% center; }
  .home-page .hero::after {
    background:
      linear-gradient(90deg, rgba(7,11,15,.98) 0%, rgba(7,11,15,.92) 54%, rgba(7,11,15,.5) 100%),
      linear-gradient(180deg, rgba(5,8,11,.16), rgba(5,8,11,.12) 60%, rgba(5,8,11,.55));
  }
  .home-page .hero__grid {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding-block: 62px 68px;
  }
  .home-page .hero__copy { max-width: 600px; }
}

@media (max-width: 700px) {
  .home-page .hero { min-height: 610px; }
  .home-page .hero::before {
    background-size: auto 100%;
    background-position: 61% center;
  }
  .home-page .hero::after {
    background:
      linear-gradient(90deg, rgba(7,11,15,.97), rgba(7,11,15,.78)),
      linear-gradient(180deg, rgba(7,11,15,.12), rgba(7,11,15,.42));
  }
  .home-page .hero__texture { width: 100%; opacity: .13; }
  .home-page .hero__grid { min-height: 610px; padding-block: 50px 56px; }
  .home-page .hero__copy { max-width: 100%; padding-right: 0; }
  .home-page .hero h1 { max-width: 560px; }
  .home-page .hero__lead { max-width: 520px; }
}

@media (max-width: 430px) {
  .home-page .hero { min-height: 570px; }
  .home-page .hero::before { background-position: 64% center; }
  .home-page .hero::after { background: rgba(7,11,15,.84); }
  .home-page .hero__grid { min-height: 570px; padding-block: 44px 50px; }
}

/* ================================================================
   LOWER HOMEPAGE PROFESSIONAL FINISHING PASS — 2026-08-11
   Experience, two-path CTA and organized four-column footer.
   ================================================================ */
.home-page #about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 18%, rgba(230,106,31,.07), transparent 24%),
    #f4f6f6;
}
.home-page #about::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(120deg, transparent 0 52px, rgba(17,24,32,.018) 52px 53px);
}
.home-page #about .about-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
  gap: clamp(3rem, 7vw, 6rem);
}
.home-page #about .about-panel h2 { max-width: 720px; }
.home-page #about .about-panel > p:not(.eyebrow) {
  max-width: 680px;
  margin-block: .9rem;
  color: #52606a;
  font-size: 1rem;
  line-height: 1.72;
}
.home-page #about .about-panel__emphasis {
  margin-top: 1.35rem;
  padding: 1rem 1.15rem;
  color: #48545d;
  background: #fff;
  border: 1px solid #dde3e6;
  border-left: 4px solid var(--main-orange);
  box-shadow: 0 6px 18px rgba(17,24,32,.045);
}
.home-page #about .about-panel__emphasis strong { color: #222d35; }
.home-page #about .experience-card {
  padding: 1.7rem;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(145deg, #1a2630, #0d141a);
  background-size: 28px 28px, 28px 28px, auto;
  border-color: #2b3943;
  border-radius: 14px;
}
.home-page #about .experience-card > strong {
  margin-top: .55rem;
  font-size: clamp(3rem, 5vw, 4.25rem);
}
.home-page #about .experience-card > p { max-width: 410px; line-height: 1.62; }
.home-page .experience-card__areas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem;
}
.home-page .experience-card__areas span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: .75rem .8rem .75rem 1rem;
  position: relative;
  color: #d4dbe0;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 7px;
  font-size: .8rem;
  line-height: 1.35;
}
.home-page .experience-card__areas span::before {
  content: "";
  position: absolute;
  left: .52rem;
  width: 3px;
  height: 22px;
  background: var(--main-orange);
  border-radius: 999px;
}

.home-page .cta-section { padding-block: 64px; }
.home-page .cta-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.home-page .cta-section h2 { max-width: 820px; }
.home-page .cta-section__lead {
  max-width: 700px;
  margin: 1rem 0 0;
  color: #b7c1c8;
  line-height: 1.65;
}
.home-page .cta-section__actions {
  display: grid;
  min-width: 245px;
  gap: .7rem;
}
.home-page .cta-section__actions .button { width: 100%; white-space: nowrap; }
.home-page .cta-section__actions .button--secondary {
  color: #fff;
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.34);
}

.home-page .site-footer { padding-top: 62px; }
.home-page .footer__grid {
  grid-template-columns: minmax(260px, 1.35fr) minmax(165px, .8fr) minmax(140px, .65fr) minmax(140px, .65fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: 38px;
}
.home-page .footer__brand-column { align-self: start; }
.home-page .footer__brand-column p { max-width: 390px; line-height: 1.65; }
.home-page .footer__trade-line {
  display: block;
  margin-top: 1.15rem;
  color: #f0a65e;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .02em;
}
.home-page .footer__contact {
  display: inline-flex;
  margin-top: .85rem;
  color: #dce3e7;
  font-size: .88rem;
  font-weight: 750;
  text-decoration-color: rgba(230,106,31,.7);
  text-underline-offset: 4px;
}
.home-page .footer__grid h2 { padding-bottom: .65rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.home-page .footer__grid > div:not(:first-child) { gap: .58rem; }
.home-page .footer__grid a:not(.brand),
.home-page .footer-privacy-choices { line-height: 1.35; transition: color .16s ease, transform .16s ease; }
.home-page .footer__grid a:not(.brand):hover,
.home-page .footer__grid a:not(.brand):focus-visible,
.home-page .footer-privacy-choices:hover,
.home-page .footer-privacy-choices:focus-visible { color: #fff; transform: translateX(2px); }
.home-page .affiliate-disclosure {
  padding: 1rem 1.15rem;
  color: #929ea7;
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.07);
  font-size: .76rem;
  line-height: 1.6;
}
.home-page .footer__bottom-band { margin-top: 34px; background: #070b0f; border-top: 1px solid rgba(255,255,255,.06); }
.home-page .footer__bottom { min-height: 62px; }

@media (max-width: 980px) {
  .home-page #about .about-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .home-page #about .experience-card { max-width: 720px; }
  .home-page .cta-section__inner { grid-template-columns: 1fr; gap: 1.65rem; }
  .home-page .cta-section__actions { max-width: 520px; grid-template-columns: 1fr 1fr; }
  .home-page .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .home-page .footer__grid > div:last-child { grid-column: 2 / 3; }
}

@media (max-width: 700px) {
  .home-page #about .experience-card { padding: 1.3rem; }
  .home-page .experience-card__areas { grid-template-columns: 1fr; }
  .home-page .experience-card__areas span { min-height: 50px; }
  .home-page .cta-section__actions { grid-template-columns: 1fr; max-width: none; }
  .home-page .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .home-page .footer__brand-column { grid-column: 1 / -1; }
  .home-page .footer__grid > div:last-child { grid-column: auto; }
}

@media (max-width: 430px) {
  .home-page .footer__grid { grid-template-columns: 1fr; }
  .home-page .footer__brand-column,
  .home-page .footer__grid > div:last-child { grid-column: auto; }
  .home-page .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; }
}

@media (max-width: 430px) {
  .home-page #categories .category-card {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 0;
    column-gap: .9rem;
    padding: 1rem;
  }

  .home-page #categories .category-card__icon {
    width: 92px;
    min-height: 132px;
    border-radius: 12px;
  }

  .home-page #categories .category-icon {
    max-width: 78px;
    max-height: 116px;
  }

  .home-page #categories .category-card h3 {
    font-size: 1.08rem;
  }

  .home-page #categories .category-card p {
    font-size: .84rem;
  }

  .home-page #categories .category-card > a {
    font-size: .82rem;
  }

  .tool-categories-page .directory-card.directory-card--with-media {
    grid-template-columns: 92px minmax(0, 1fr);
    column-gap: .85rem;
    padding: 1rem;
  }

  .tool-categories-page .directory-card--with-media .directory-card__media {
    min-height: 158px;
  }

  .tool-categories-page .directory-card--with-media .directory-card__media img {
    max-width: 78px;
    max-height: 142px;
  }
}

/* ================================================================
   HOMEPAGE RESPONSIVE CORRECTION PASS — 2026-08-11
   Small post-audit fixes only; approved visual direction preserved.
   ================================================================ */
.home-page #featured-tools,
.home-page #guides,
.home-page #about,
.home-page #affiliate-disclosure {
  scroll-margin-top: 124px;
}

.home-page .footer__grid a:not(.brand),
.home-page .footer-privacy-choices {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.home-page .category-directory-action a,
.home-page .field-guides-home__note > a,
.home-page .guide-card__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 980px) {
  .home-page .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem 2rem;
  }
  .home-page .footer__brand-column,
  .home-page .footer__grid > div:last-child { grid-column: auto; }
}

@media (max-width: 700px) {
  .home-page .hero::before {
    background-image: url("assets/optimized/home-hero-industrial-option-c-mobile.webp");
  }
  .home-page #featured-tools,
  .home-page #guides,
  .home-page #about,
  .home-page #affiliate-disclosure { scroll-margin-top: 108px; }
  .home-page .credibility-strip__grid > div {
    min-height: 62px;
    padding-block: .62rem;
  }
  .home-page .credibility-strip strong { font-size: .84rem; }
  .home-page .credibility-strip span { font-size: .72rem; line-height: 1.32; }
  .home-page .footer__grid a:not(.brand),
  .home-page .footer-privacy-choices { min-height: 42px; }
}

@media (max-width: 430px) {
  .home-page .footer__grid { grid-template-columns: 1fr; }
}

/* Final desktop height override for the approved Option C hero. */
@media (min-width: 981px) {
  .home-page .hero,
  .home-page .hero__grid { min-height: 480px; }
  .home-page .hero__grid { padding-block: 48px 54px; }
}

/* Homepage Tool Categories — dark industrial workshop background V1 */
.home-page #categories {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #0a1015;
}
.home-page #categories::before,
.home-page #categories::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.home-page #categories::before {
  z-index: -2;
  background: url("assets/optimized/home-tool-categories-dark-workshop.webp") center center / cover no-repeat;
  transform: scale(1.01);
}
.home-page #categories::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6,10,14,.82) 0%, rgba(6,10,14,.68) 42%, rgba(6,10,14,.78) 100%),
    linear-gradient(90deg, rgba(5,9,12,.3), transparent 52%, rgba(5,9,12,.2));
}
.home-page #categories > .container { position: relative; z-index: 1; }
.home-page #categories .eyebrow { color: #f3a35f; }
.home-page #categories .section-heading h2 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.38);
}
.home-page #categories .section-heading > p { color: #c5cfd5; }
.home-page #categories .category-card {
  background: rgba(255,255,255,.97);
  border-color: rgba(255,255,255,.48);
  box-shadow: 0 14px 34px rgba(0,0,0,.24);
}
.home-page #categories .category-card__icon {
  background: #f0f2f3;
  border-color: #d5dce0;
}
.home-page #categories .category-card:hover,
.home-page #categories .category-card:focus-within {
  border-color: rgba(243,163,95,.82);
  box-shadow: 0 18px 40px rgba(0,0,0,.34);
}
.home-page #categories .category-directory-action a {
  padding: .72rem 1rem;
  color: #fff;
  background: rgba(8,13,18,.7);
  border: 1px solid rgba(255,255,255,.34);
  border-bottom: 2px solid var(--main-orange);
  border-radius: 8px;
  backdrop-filter: blur(5px);
}
.home-page #categories .category-directory-action a:hover,
.home-page #categories .category-directory-action a:focus-visible {
  color: #fff;
  background: var(--dark-accessible-orange);
  border-color: var(--dark-accessible-orange);
}

@media (max-width: 700px) {
  .home-page #categories::before { background-position: 64% center; }
  .home-page #categories::after { background: rgba(6,10,14,.78); }
}

/* Main category page compact hero pass — 2026-08-13 */
@media (min-width: 981px) {
  .directory-page .page-hero__inner { padding-block: 36px 42px; }
  .directory-page .breadcrumbs { margin-bottom: 1.35rem; }
  .directory-page .page-hero h1 {
    font-size: clamp(2.55rem, 4.4vw, 4.05rem);
    line-height: 1;
  }
  .directory-page .page-hero__inner > p:not(.eyebrow) {
    margin: .85rem 0 1.15rem;
    line-height: 1.55;
  }
  .directory-page .page-hero .button { min-height: 44px; }
  .directory-page .category-intro__grid { min-height: 82px; }
}

/* ================================================================
   HOMEPAGE VISUAL HIERARCHY & SPACING V1 — 2026-08-14
   Adapts the approved rhythm pass to the homepage's actual component
   names while preserving the compact credibility strip and the dark
   industrial Tool Categories background.
   ================================================================ */
.home-page .section { padding-block: 72px; }

.home-page .hero,
.home-page .hero__grid {
  min-height: 480px;
}
.home-page .hero__grid {
  align-items: center;
  padding-block: 64px;
}
.home-page .hero__copy { max-width: 640px; }
.home-page .hero h1 {
  margin: 0 0 16px;
  line-height: 1.15;
}
.home-page .hero__lead {
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.55;
}
.home-page .hero__actions { margin-top: 0; }

/* Keep the credibility component functioning as a slim trust strip. */
.home-page .credibility-strip { padding-block: 0; }

.home-page #featured-tools { padding-block: 64px; }
.home-page #featured-tools .section-heading { margin-bottom: 40px; }
.home-page #featured-tools .tool-card__content { padding: 20px; }
.home-page #featured-tools .popular-tool-illustration { margin-bottom: 0; }

.home-page #categories { padding-block: 72px; }
.home-page #categories .section-heading {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 1rem;
  margin-bottom: 48px;
  text-align: center;
}
.home-page #categories .section-heading > p { max-width: 720px; }

.home-page .field-guides-home { padding-block: 56px; }
.home-page .field-guides-home .section-heading { margin-bottom: 32px; }
.home-page .field-guides-home .guide-card { padding: 18px 20px; }

.home-page main > section + section { margin-top: 0; }

@media (max-width: 768px) {
  .home-page .section,
  .home-page #categories,
  .home-page #featured-tools,
  .home-page .field-guides-home {
    padding-block: 48px;
  }
  .home-page .hero,
  .home-page .hero__grid { min-height: 480px; }
  .home-page .hero__grid { padding-block: 48px; }
  .home-page #categories .section-heading,
  .home-page #featured-tools .section-heading { margin-bottom: 32px; }
}

/* ================================================================
   TYPOGRAPHY REFINEMENT V1 — 2026-08-14
   Applies the approved industrial type hierarchy to the site's actual
   components while retaining accessible light/dark color contrast.
   ================================================================ */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: var(--ink);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: inherit;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
}

h1 {
  margin-bottom: .6em;
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  letter-spacing: -.03em;
}
h2 {
  margin-bottom: .5em;
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  letter-spacing: -.025em;
}
h3 {
  margin-bottom: .4em;
  font-size: 1.25rem;
  letter-spacing: -.015em;
}
h4 {
  font-size: 1.05rem;
  letter-spacing: -.01em;
}

/* Apply the refined scale to the existing major-heading components. */
.home-page .hero h1,
.tool-categories-page .page-hero h1,
.directory-page .page-hero h1 {
  margin-bottom: .6em;
  font-size: clamp(2.1rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.section-heading h2,
.about-panel h2,
.cta-section h2,
.buying-basics h2,
.category-next h2 {
  margin-bottom: .5em;
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
}

.section-label,
.category-label,
.eyebrow,
.kicker {
  margin-bottom: .6em;
  color: var(--accent-dark);
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero .section-label,
.hero .category-label,
.hero .eyebrow,
.hero .kicker,
.section--dark .section-label,
.section--dark .category-label,
.section--dark .eyebrow,
.section--dark .kicker,
.page-hero .eyebrow,
.category-next .eyebrow,
.cta-section .eyebrow,
.site-footer .eyebrow { color: #f0a62b; }

p,
.card-description,
.tool-description {
  margin-bottom: 1em;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
}
.hero p,
.section--dark p,
.page-hero p,
.category-next p,
.cta-section p,
.site-footer p { color: #cfcfcf; }

.card-title,
.group-card h3,
.popular-tool-card h3,
.category-card h3,
.tool-card h3,
.guide-card h3,
.directory-card h3,
.group-grid strong {
  margin-bottom: .35em;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.015em;
}
.group-grid strong { margin-bottom: 0; }

.btn,
.button,
button,
.card-link,
.category-card a,
.tool-card a,
.guide-card__link {
  font-family: inherit;
  font-weight: 600;
  letter-spacing: .02em;
}

/* Specificity bridge for the established homepage and directory components. */
.home-page .section-heading h2,
.home-page .about-panel h2,
.home-page .cta-section h2,
.tool-categories-page .section-heading h2,
.tool-categories-page .category-next h2,
.directory-page .section-heading h2,
.directory-page .buying-basics h2,
.directory-page .category-next h2 {
  margin-bottom: .5em;
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
}
.home-page #categories .category-card h3,
.home-page #featured-tools .tool-card h3,
.home-page .field-guides-home .guide-card h3,
.tool-categories-page .directory-card h3,
.directory-page .group-grid strong {
  margin-bottom: .35em;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.015em;
}
.directory-page .group-grid strong { margin-bottom: 0; }

/* ================================================================
   CARD SYSTEM CONSISTENCY V1 — 2026-08-14
   Unifies card geometry, image treatment, content rhythm and hover
   behavior while preserving the established horizontal layouts and
   accessible light-card text contrast.
   ================================================================ */
.home-page #categories .category-card,
.home-page #featured-tools .tool-card,
.home-page .field-guides-home .guide-card,
.tool-categories-page .directory-card,
.directory-page .group-grid > a {
  height: 100%;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(17, 24, 32, .12);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(17, 24, 32, .12);
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-page #categories .category-card:hover,
.home-page #categories .category-card:focus-within,
.home-page #featured-tools .tool-card:hover,
.home-page #featured-tools .tool-card:focus-within,
.home-page .field-guides-home .guide-card:hover,
.home-page .field-guides-home .guide-card:focus-within,
.tool-categories-page .directory-card:hover,
.tool-categories-page .directory-card:focus-within,
.directory-page .group-grid > a:hover,
.directory-page .group-grid > a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(184, 72, 12, .45);
  box-shadow: 0 12px 28px rgba(17, 24, 32, .2);
}

.home-page #categories .category-card { padding: 18px 20px 20px; }
.home-page #featured-tools .tool-card__content,
.home-page .field-guides-home .guide-card { padding: 18px 20px 20px; }
.tool-categories-page .directory-card { padding: 20px; }
.directory-page .group-grid > a { padding: 18px 20px; }

.home-page #categories .category-card__icon,
.home-page #featured-tools .tool-card__visual,
.tool-categories-page .directory-card--with-media .directory-card__media,
.directory-page .group-grid .group-card__media {
  position: relative;
  overflow: hidden;
  background: #0d0f0e;
  border-color: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.home-page #categories .category-card img,
.home-page #featured-tools .tool-card img,
.tool-categories-page .directory-card img,
.directory-page .group-grid .group-card__media img {
  object-position: center;
  transition: transform .35s ease;
}
.home-page #categories .category-card img,
.home-page #featured-tools .tool-card img,
.directory-page .group-grid .group-card__media img { object-fit: contain; }

.home-page #categories .category-card:hover img,
.home-page #categories .category-card:focus-within img,
.home-page #featured-tools .tool-card:hover img,
.home-page #featured-tools .tool-card:focus-within img,
.tool-categories-page .directory-card:hover img,
.tool-categories-page .directory-card:focus-within img,
.directory-page .group-grid > a:hover img,
.directory-page .group-grid > a:focus-visible img {
  transform: scale(1.04);
}

.home-page #categories .category-card h3,
.home-page #featured-tools .tool-card h3,
.home-page .field-guides-home .guide-card h3,
.tool-categories-page .directory-card h3,
.directory-page .group-grid strong {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: -.015em;
}
.directory-page .group-grid strong { margin-bottom: 0; }

.home-page #categories .category-card p,
.home-page #featured-tools .tool-card p,
.home-page .field-guides-home .guide-card > p,
.tool-categories-page .directory-card > p,
.directory-page .group-grid small {
  color: #59656e;
  font-size: .9rem;
  line-height: 1.5;
}
.home-page #categories .category-card p,
.home-page #featured-tools .tool-card p { margin: 0 0 16px; }

.tool-categories-page .directory-card__support {
  background: #f3f5f6;
  border-left-color: var(--main-orange);
}
.tool-categories-page .directory-card__support strong { color: var(--ink); }
.tool-categories-page .directory-card__support span { color: #59656e; }

.home-page #categories .category-card > a,
.home-page #featured-tools .tool-card a,
.home-page .field-guides-home .guide-card__link,
.tool-categories-page .directory-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--accent-dark);
  font-size: .85rem;
  font-weight: 600;
  transition: gap .2s ease, color .2s ease;
}
.home-page #categories .category-card:hover > a,
.home-page #categories .category-card:focus-within > a,
.home-page #featured-tools .tool-card:hover a,
.home-page #featured-tools .tool-card:focus-within a,
.home-page .field-guides-home .guide-card:hover .guide-card__link,
.home-page .field-guides-home .guide-card:focus-within .guide-card__link,
.tool-categories-page .directory-card:hover .directory-card__link,
.tool-categories-page .directory-card:focus-within .directory-card__link {
  gap: 10px;
}
.home-page #categories .category-card:hover > a span,
.home-page #categories .category-card:focus-within > a span,
.home-page #featured-tools .tool-card:hover a span,
.home-page #featured-tools .tool-card:focus-within a span,
.home-page .field-guides-home .guide-card:hover .guide-card__link span,
.home-page .field-guides-home .guide-card:focus-within .guide-card__link span,
.tool-categories-page .directory-card:hover .directory-card__link span,
.tool-categories-page .directory-card:focus-within .directory-card__link span {
  transform: none;
}

.home-page #categories .category-card > a { border-top-color: #e2e6e8; }

@media (prefers-reduced-motion: reduce) {
  .home-page #categories .category-card:hover img,
  .home-page #categories .category-card:focus-within img,
  .home-page #featured-tools .tool-card:hover img,
  .home-page #featured-tools .tool-card:focus-within img,
  .tool-categories-page .directory-card:hover img,
  .tool-categories-page .directory-card:focus-within img,
  .directory-page .group-grid > a:hover img,
  .directory-page .group-grid > a:focus-visible img { transform: none; }
}

/* ================================================================
   COLOR & INDUSTRIAL ATMOSPHERE V1 — 2026-08-14
   Sitewide charcoal surfaces, steel-gray text and one amber accent.
   Existing industrial imagery and responsive layouts are preserved.
   ================================================================ */
:root {
  --bg-body: #0c0e0d;
  --bg-section: #111413;
  --bg-card: #161a19;
  --bg-card-hover: #1c211f;
  --bg-header: #0a0c0b;
  --bg-footer: #0a0c0b;
  --text-primary: #ffffff;
  --text-secondary: #cfcfcf;
  --text-muted: #9a9a9a;
  --text-dim: #6b6b6b;
  --accent: #f0a62b;
  --accent-dark: #f0a62b;
  --accent-hover: #ffb83d;
  --accent-soft: rgba(240, 166, 43, .15);
  --accent-border: rgba(240, 166, 43, .45);
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .14);
  --shadow-card: 0 4px 14px rgba(0, 0, 0, .4);
  --shadow-hover: 0 12px 28px rgba(0, 0, 0, .55);
  --main-orange: var(--accent);
  --dark-accessible-orange: var(--accent);
  --safety: var(--accent);
}

body {
  color: var(--text-secondary);
  background-color: var(--bg-body);
}

.topbar,
.site-header {
  color: var(--text-secondary);
  background-color: var(--bg-header);
  border-color: var(--border);
}
body[class] .site-header {
  color: var(--text-primary);
  background: rgba(10, 12, 11, .97);
  border-bottom-color: var(--border);
  box-shadow: 0 7px 24px rgba(0, 0, 0, .28);
}

/* One shared wordmark and navigation treatment for every page. */
body .site-header .brand,
body .site-header .brand__text,
body .site-header .brand__text strong { color: var(--text-primary); }
body .site-header .brand__text span { color: var(--accent); }

body .site-header .primary-nav { background: transparent; }
body .site-header .primary-nav > a:not(.nav-cta),
body .site-header .nav-dropdown__link,
body .site-header .nav-dropdown__toggle { color: #f2f3f2; }
body .site-header .primary-nav > a[aria-current="page"] { color: var(--accent-hover); }
body .site-header .primary-nav > a:not(.nav-cta):hover,
body .site-header .primary-nav > a:not(.nav-cta):focus-visible,
body .site-header .nav-dropdown__link:hover,
body .site-header .nav-dropdown__link:focus-visible,
body .site-header .nav-dropdown__toggle:hover,
body .site-header .nav-dropdown__toggle:focus-visible {
  color: var(--accent-hover);
  background: transparent;
}

body .site-header .nav-dropdown__menu {
  color: var(--text-secondary);
  background: var(--bg-card);
  border-color: var(--border-strong);
}
body .site-header .nav-dropdown__menu::before {
  background: var(--bg-card);
  border-color: var(--border-strong);
}
body .site-header .nav-dropdown__heading {
  color: var(--text-muted);
  border-color: var(--border);
}
body .site-header .primary-nav .nav-dropdown__grid a { color: var(--text-primary); }
body .site-header .primary-nav .nav-dropdown__grid a::before { background: var(--accent); }
body .site-header .primary-nav .nav-dropdown__grid a:hover,
body .site-header .primary-nav .nav-dropdown__grid a:focus-visible {
  color: var(--accent-hover);
  background: var(--bg-card-hover);
}

body .site-header .primary-nav .nav-dropdown__all,
body .site-header .primary-nav .nav-cta {
  color: var(--accent-hover);
  background: transparent;
  border: 1px solid var(--accent-border);
  border-radius: 8px;
  box-shadow: none;
}
body .site-header .primary-nav .nav-dropdown__all:hover,
body .site-header .primary-nav .nav-dropdown__all:focus-visible,
body .site-header .primary-nav .nav-cta:hover,
body .site-header .primary-nav .nav-cta:focus-visible {
  color: #111;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

body .site-header .menu-toggle {
  color: var(--text-primary);
  background: var(--bg-card);
  border-color: var(--border-strong);
}
body .site-header .menu-toggle span:not(.sr-only) { background: var(--text-primary); }

.hero,
.page-hero,
.legal-hero { color: var(--text-primary); background-color: var(--bg-body); }
.hero h1,
.page-hero h1,
.legal-hero h1 { color: var(--text-primary); }
.hero p,
.page-hero p,
.legal-hero p { color: var(--text-secondary); }

body.home-page .credibility-strip,
body.home-page .section,
body.home-page .section--light,
body.home-page .section--guides,
body.home-page #about,
body.tool-categories-page,
body.tool-categories-page .category-directory,
body.directory-page,
body.directory-page .section,
body.directory-page .section--light,
body.directory-page .hand-tool-groups,
body.directory-page .featured-tool-section,
body.directory-page .buying-basics,
body.directory-page .rigging-safety,
body.directory-page .consumables-safety,
body.directory-page .power-safety,
body.legal-page,
body.legal-page .legal-content {
  color: var(--text-secondary);
  background-color: var(--bg-section);
}
body.home-page #categories { background-color: #0f1211; }
body.home-page #featured-tools,
body.home-page #about,
body.directory-page .section--light,
body.directory-page .buying-basics,
body.tool-categories-page .category-directory { background-color: var(--bg-card); }

body.home-page .section-heading h2,
body.home-page .about-panel h2,
body.home-page .cta-section h2,
body.tool-categories-page .section-heading h2,
body.directory-page .section-heading h2,
body.directory-page .buying-basics h2,
body.legal-page h2,
body.legal-page h3 { color: var(--text-primary); }
body.home-page .section-heading > p,
body.home-page .about-panel > p:not(.eyebrow),
body.tool-categories-page .section-heading > p,
body.directory-page .section-heading > p,
body.directory-page .buying-guidance__lead,
body.legal-page p,
body.legal-page li { color: var(--text-secondary); }

.section-label,
.category-label,
.eyebrow,
.kicker,
body.home-page #categories .eyebrow { color: var(--accent); }

/* Core card families */
body.home-page #categories .category-card,
body.home-page #featured-tools .tool-card,
body.home-page .field-guides-home .guide-card,
body.tool-categories-page .directory-card,
body.directory-page .group-grid > a,
body.directory-page .featured-tool,
body.directory-page .featured-tool:nth-of-type(even) {
  color: var(--text-secondary);
  background: var(--bg-card);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
body.home-page #categories .category-card:hover,
body.home-page #categories .category-card:focus-within,
body.home-page #featured-tools .tool-card:hover,
body.home-page #featured-tools .tool-card:focus-within,
body.home-page .field-guides-home .guide-card:hover,
body.home-page .field-guides-home .guide-card:focus-within,
body.tool-categories-page .directory-card:hover,
body.tool-categories-page .directory-card:focus-within,
body.directory-page .group-grid > a:hover,
body.directory-page .group-grid > a:focus-visible {
  color: var(--text-secondary);
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-hover);
}
body.home-page #categories .category-card h3,
body.home-page #featured-tools .tool-card h3,
body.home-page .field-guides-home .guide-card h3,
body.tool-categories-page .directory-card h3,
body.directory-page .group-grid strong,
body.directory-page .featured-tool h3 { color: var(--text-primary); }
body.home-page #categories .category-card p,
body.home-page #featured-tools .tool-card p,
body.home-page .field-guides-home .guide-card > p,
body.tool-categories-page .directory-card > p,
body.directory-page .group-grid small,
body.directory-page .featured-tool__summary { color: var(--text-secondary); }

body.home-page #categories .category-card__icon,
body.home-page #featured-tools .tool-card__visual,
body.tool-categories-page .directory-card--with-media .directory-card__media,
body.directory-page .group-grid .group-card__media,
body.directory-page .featured-tool__visual,
body.directory-page .product-option-image {
  background-color: #0d0f0e;
  border-color: var(--border);
}

body.home-page #categories .category-card > a,
body.home-page #featured-tools .tool-card a,
body.home-page .guide-card__link,
body.tool-categories-page .directory-card__link,
body.directory-page .group-grid > a::after { color: var(--accent); }

body.tool-categories-page .directory-card__support,
body.tool-categories-page .directory-card__status {
  color: var(--text-secondary);
  background: var(--bg-section);
  border-color: var(--border-strong);
}
body.tool-categories-page .directory-card__support strong { color: var(--text-primary); }
body.tool-categories-page .directory-card__support span,
body.tool-categories-page .directory-card__status { color: var(--text-muted); }

/* Detailed tool and comparison system */
body.directory-page .tool-details { background: var(--border); border-color: var(--border); }
body.directory-page .tool-details > div {
  color: var(--text-secondary);
  background: var(--bg-section);
  border-color: var(--border);
}
body.directory-page .tool-details dt { color: var(--text-primary); }
body.directory-page .tool-details dd { color: var(--text-secondary); }
body.directory-page .field-note,
body.directory-page .selection-reminder,
body.directory-page .product-positioning-reminder,
body.directory-page .product-option-field-note,
body.directory-page .product-options-reminder,
body.legal-page .legal-callout {
  color: var(--text-secondary);
  background: var(--accent-soft);
  border-color: var(--accent);
}
body.directory-page .field-note strong,
body.directory-page .selection-reminder strong,
body.directory-page .product-positioning-reminder strong,
body.directory-page .product-option-field-note strong,
body.directory-page .product-options-reminder strong,
body.legal-page .legal-callout strong { color: var(--accent); }
body.directory-page .field-note p,
body.directory-page .selection-reminder p,
body.directory-page .product-option-field-note,
body.directory-page .product-options-reminder { color: var(--text-secondary); }

body.directory-page .product-options-section,
body.directory-page .product-classification-guide,
body.directory-page .product-option-card {
  color: var(--text-secondary);
  background: var(--bg-card);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
body.directory-page .product-options-heading h4,
body.directory-page .product-option-group-heading,
body.directory-page .product-classification-guide h3,
body.directory-page .product-option-card h5 { color: var(--text-primary); }
body.directory-page .product-options-heading > p,
body.directory-page .product-option-group-description,
body.directory-page .product-classification-guide p,
body.directory-page .product-option-card p,
body.directory-page .product-option-specs dd { color: var(--text-secondary); }
body.directory-page .product-option-specs dt,
body.directory-page .product-positioning-item strong { color: var(--text-primary); }
body.directory-page .product-option-specs div,
body.directory-page .product-positioning-item { border-color: var(--border); }
body.directory-page .product-positioning {
  color: var(--text-secondary);
  background: var(--bg-section);
  border-color: var(--border);
}
body.directory-page .product-grade-badge,
body.directory-page .product-value-badge,
body.directory-page .product-price-position,
body.directory-page .product-duty-level {
  color: var(--text-secondary);
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
}
body.directory-page .product-grade-general,
body.directory-page .product-grade-professional,
body.directory-page .product-grade-premium,
body.directory-page .product-grade-specialty { color: var(--accent); border-color: var(--accent); }
body.directory-page .product-option-button,
body.directory-page .button--affiliate {
  color: #111;
  background: var(--accent);
  border-color: var(--accent);
}
body.directory-page .product-option-button:hover,
body.directory-page .product-option-button:focus-visible,
body.directory-page .button--affiliate:hover,
body.directory-page .button--affiliate:focus-visible { color: #111; background: var(--accent-hover); }

/* Supporting instructional cards and lists */
body.directory-page .buying-basics li,
body.directory-page .precision-uses li,
body.directory-page .workflow-list li,
body.directory-page .rigging-check-grid li,
body.directory-page .inspection-grid ul,
body.directory-page .selection-grid article,
body.directory-page .storage-compare article,
body.directory-page .organization-list li,
body.directory-page .installation-process-list li,
body.directory-page .power-source-grid article,
body.directory-page .source-factors,
body.directory-page .application-list li,
body.directory-page .accessory-grid article,
body.directory-page .ppe-activity-list li,
body.directory-page .safety-panel,
body.directory-page .performance-note {
  color: var(--text-secondary);
  background: var(--bg-card);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
body.directory-page .buying-basics li strong,
body.directory-page .precision-uses strong,
body.directory-page .workflow-list strong,
body.directory-page .rigging-check-grid strong,
body.directory-page .selection-grid strong,
body.directory-page .storage-compare strong,
body.directory-page .organization-list strong,
body.directory-page .installation-process-list strong,
body.directory-page .power-source-grid strong,
body.directory-page .source-factors strong,
body.directory-page .application-list strong,
body.directory-page .accessory-grid strong,
body.directory-page .ppe-activity-list strong,
body.directory-page .safety-panel h2 { color: var(--text-primary); }
body.directory-page .ppe-activity-list span,
body.directory-page .organization-list span { color: var(--text-secondary); }

.button--primary,
.btn-primary,
.button-primary,
.hero .btn {
  color: #111;
  background-color: var(--accent);
  border-color: var(--accent);
}
.button--primary:hover,
.button--primary:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.button-primary:hover,
.button-primary:focus-visible { color: #111; background-color: var(--accent-hover); }

a:focus-visible,
button:focus-visible,
.card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
main a:not(.button):hover,
main a:not(.button):focus-visible { color: var(--accent); }

.site-footer,
footer {
  color: var(--text-muted);
  background-color: var(--bg-footer);
  border-color: var(--border);
}
.site-footer a { color: var(--text-secondary); }
.site-footer a:hover,
.site-footer a:focus-visible { color: var(--accent); }

body.legal-page .legal-content code {
  color: var(--text-primary);
  background: var(--bg-card);
  border-color: var(--border);
}

.analytics-consent {
  color: var(--text-secondary);
  background: var(--bg-card);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-hover);
}
.analytics-consent strong { color: var(--text-primary); }

@media (max-width: 980px) {
  body .site-header .primary-nav {
    background: var(--bg-header);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-hover);
  }
}

/* Supporting surfaces: remove the remaining light-theme islands. */
body.directory-page .category-intro {
  color: var(--text-secondary);
  background: var(--bg-header);
  border-block: 1px solid var(--accent-border);
}
body.directory-page .category-intro strong { color: var(--accent); }
body.directory-page .category-intro p { color: var(--text-secondary); }

body.home-page .credibility-strip {
  color: var(--text-primary);
  background: var(--bg-header);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
body.home-page .credibility-strip__grid > div,
body.home-page .credibility-strip__grid > div:first-child,
body.home-page .credibility-strip__grid > div:nth-child(2),
body.home-page .credibility-strip__grid > div:nth-child(-n+2) {
  border-color: var(--border);
}
body.home-page .credibility-strip strong { color: var(--text-primary); }
body.home-page .credibility-strip span { color: var(--text-muted); }

body.home-page .guide-card__topline,
body.home-page .guide-card__link { border-color: var(--border); }
body.home-page .field-guides-home .guide-card__status,
body.home-page .guide-card__covers span {
  color: var(--text-muted);
  background: var(--bg-section);
  border-color: var(--border-strong);
}
body.home-page .guide-card__covers strong { color: var(--text-primary); }
body.home-page .field-guides-home__note {
  color: var(--text-secondary);
  background: var(--bg-header);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card);
}
body.home-page .field-guides-home__note strong { color: var(--text-primary); }
body.home-page .field-guides-home__note span { color: var(--text-muted); }

body.home-page #about .about-panel__emphasis {
  color: var(--text-secondary);
  background: var(--bg-card-hover);
  border-color: var(--border-strong);
  border-left-color: var(--accent);
  box-shadow: var(--shadow-card);
}
body.home-page #about .about-panel__emphasis strong { color: var(--text-primary); }

/* Post-launch correction: keep the practical-purpose callout readable on the
   dark About section, including browsers that apply inherited paragraph rules. */
body.home-page #about p.about-panel__emphasis {
  color: #e6e8e7 !important;
}
body.home-page #about p.about-panel__emphasis strong {
  color: #ffffff !important;
}

/* V5 post-launch correction: keep the two supporting About paragraphs
   readable against the dark section without changing the callout styling. */
body.home-page #about .about-panel > p:not(.eyebrow):not(.about-panel__emphasis) {
  color: #cfd4d1 !important;
}

/* Post-launch correction: align the Tool Categories hero copy with the
   standard site container instead of centering it inside an 860px wrapper. */
body.tool-categories-page .page-hero__inner {
  max-width: var(--content-width);
}

/* Post-launch correction: products without a confirmed affiliate URL use a
   clearly disabled control rather than linking to the footer disclosure. */
body.directory-page button.product-option-button--unavailable,
body.directory-page button.product-option-button--unavailable:disabled {
  color: #9da5a1;
  background: #272c2a;
  border: 1px solid var(--border-strong);
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
  pointer-events: none;
  transform: none;
}
body.home-page .cta-section {
  color: var(--text-primary);
  background: var(--bg-header);
  border-block: 1px solid var(--border);
}
body.home-page .cta-section .eyebrow { color: var(--accent); }
body.home-page .cta-section__lead { color: var(--text-secondary); }
body.home-page .cta-section__actions .button--secondary {
  color: var(--text-primary);
  background: transparent;
  border-color: var(--border-strong);
}
body.home-page .cta-section__actions .button--secondary:hover,
body.home-page .cta-section__actions .button--secondary:focus-visible {
  color: var(--accent);
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
}

/* Category-page sections with ID selectors need equally specific theme rules. */
body.safety-ppe-page #ppe-groups,
body.power-tools-page #power-tool-groups,
body.tool-storage-page #storage-groups,
body.tool-storage-page #storage-selection,
body.tool-storage-page #organization,
body.tool-storage-page #safety,
body.machinery-installation-page #installation-process,
body.machinery-installation-page #field-safety,
body.consumables-page #selection-guide,
body.consumables-page .consumables-safety,
body.rigging-equipment-page #selecting-rigging,
body.rigging-equipment-page #before-every-lift,
body.alignment-tools-page #workflow,
body.precision-tools-page #measurement-guidance,
body.precision-tools-page #precision-work,
body.power-tools-page #power-source,
body.power-tools-page #accessory-guidance,
body.power-tools-page #safety,
body.safety-ppe-page #inspection-care {
  color: var(--text-secondary);
  background: var(--bg-section);
  border-color: var(--border);
}

body.directory-page .selection-grid h3,
body.directory-page .storage-compare h3,
body.directory-page .organization-list strong,
body.directory-page .installation-process-list strong,
body.directory-page .power-source-grid h3,
body.directory-page .accessory-grid h3,
body.directory-page .workflow-list li strong,
body.directory-page .precision-uses strong,
body.directory-page .rigging-check-grid strong { color: var(--text-primary); }
body.directory-page .selection-grid p,
body.directory-page .storage-compare p,
body.directory-page .organization-list span,
body.directory-page .installation-process-list span,
body.directory-page .power-source-grid p,
body.directory-page .accessory-grid p { color: var(--text-secondary); }

body.directory-page .workflow-list li::before,
body.directory-page .installation-process-list li::before,
body.directory-page .application-list li::before,
body.directory-page .ppe-activity-list li::before {
  color: #111;
  background: var(--accent);
  border-color: var(--accent);
}
body.directory-page .workflow-note,
body.directory-page .safety-callout,
body.directory-page .installation-safety-panel {
  color: var(--text-secondary);
  background: var(--bg-card);
  border-color: var(--accent);
}
body.directory-page .workflow-note strong,
body.directory-page .safety-callout strong,
body.directory-page .installation-safety-panel strong { color: var(--accent); }

body.directory-page .category-next {
  color: var(--text-secondary);
  background: var(--bg-header);
  border-color: var(--border);
}
body.directory-page .category-next h2 { color: var(--text-primary); }
body.directory-page .related-links a {
  color: var(--text-secondary);
  background: var(--bg-card);
  border-color: var(--border-strong);
}
body.directory-page .related-links a:hover,
body.directory-page .related-links a:focus-visible {
  color: var(--accent);
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
}

body.home-page .affiliate-disclosure,
body.directory-page .affiliate-disclosure,
body.directory-page .affiliate-link-disclosure {
  color: var(--text-muted);
  background: var(--bg-card);
  border-color: var(--border);
}
body.home-page .affiliate-disclosure strong,
body.directory-page .affiliate-disclosure strong,
body.directory-page .affiliate-link-disclosure strong { color: var(--text-primary); }

.light-section {
  color: var(--text-secondary);
  background-color: var(--bg-card);
}

/* ================================================================
   CONTENT PRESENTATION — GRID + SCANABILITY V1 — 2026-08-14
   Maps the approved grid rhythm to the site's production class names
   and keeps card summaries to two quick-scanning lines.
   ================================================================ */
.group-cards-grid,
.category-cards-grid,
.tools-grid,
body.directory-page .group-grid,
body.home-page #categories .category-grid,
body.home-page #featured-tools .tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.group-cards-grid > *,
.category-cards-grid > *,
.tools-grid > *,
body.directory-page .group-grid > *,
body.home-page #categories .category-grid > *,
body.home-page #featured-tools .tool-grid > * { min-width: 0; }

.card-description,
.group-card p,
.category-card p,
.popular-tool-card p,
body.directory-page .group-grid small,
body.home-page #categories .category-card p,
body.home-page #featured-tools .tool-card p,
body.tool-categories-page .directory-card > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

@media (max-width: 992px) {
  .group-cards-grid,
  .category-cards-grid,
  .tools-grid,
  body.directory-page .group-grid,
  body.home-page #categories .category-grid,
  body.home-page #featured-tools .tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  body.home-page #featured-tools .tool-card {
    grid-template-columns: 132px minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .group-cards-grid,
  .category-cards-grid,
  .tools-grid,
  body.directory-page .group-grid,
  body.home-page #categories .category-grid,
  body.home-page #featured-tools .tool-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.home-page #featured-tools .tool-card {
    grid-template-columns: 118px minmax(0, 1fr);
  }
}

/* ================================================================
   ESSENTIAL MILLWRIGHT TOOLS FIELD GUIDE — 2026-08-14
   A dedicated long-form guide system built from the shared dark
   palette, navigation and approved hand-tool artwork.
   ================================================================ */
body.field-guide-page { background: var(--bg-body); }

.guide-hero {
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 84% 22%, rgba(240,166,43,.16), transparent 27%),
    linear-gradient(130deg, #0a0c0b, #151a18 62%, #0c100e);
  background-size: 34px 34px, 34px 34px, auto, auto;
  border-bottom: 1px solid var(--border);
}
.guide-hero__inner { max-width: 1040px; padding-block: 68px 76px; }
.guide-hero .breadcrumbs { margin-bottom: 2.2rem; color: var(--text-muted); }
.guide-hero .breadcrumbs a { color: var(--text-secondary); }
.guide-hero h1 {
  max-width: 900px;
  margin: .3rem 0 1rem;
  color: var(--text-primary);
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: .98;
  letter-spacing: -.055em;
}
.guide-hero__lead {
  max-width: 790px;
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.68;
}
.guide-hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }

.guide-summary { color: var(--text-secondary); background: var(--bg-header); border-bottom: 1px solid var(--border); }
.guide-summary__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.guide-summary__grid > div {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .32rem;
  padding: 1.25rem 1.4rem;
  border-left: 1px solid var(--border);
}
.guide-summary__grid > div:last-child { border-right: 1px solid var(--border); }
.guide-summary strong { color: var(--accent); font-size: .92rem; }
.guide-summary span { color: var(--text-muted); font-size: .78rem; line-height: 1.45; }

.guide-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(2.4rem, 6vw, 5.5rem);
  align-items: start;
  padding-block: 72px 88px;
}
.guide-toc {
  position: sticky;
  top: 128px;
  display: grid;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
}
.guide-toc strong {
  padding: 1rem 1.05rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.guide-toc a {
  padding: .72rem 1.05rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  font-size: .8rem;
  line-height: 1.35;
  text-decoration: none;
}
.guide-toc a:last-child { border-bottom: 0; }
.guide-toc a:hover,
.guide-toc a:focus-visible { color: var(--accent-hover); background: var(--bg-card-hover); }

.guide-content { min-width: 0; }
.guide-section { padding-bottom: 70px; margin-bottom: 70px; border-bottom: 1px solid var(--border); scroll-margin-top: 120px; }
.guide-section h2,
.guide-safety h2,
.guide-next h2 {
  max-width: 780px;
  margin: .3rem 0 1rem;
  color: var(--text-primary);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.guide-section > p:not(.eyebrow),
.guide-section__lead { max-width: 830px; color: var(--text-secondary); font-size: 1rem; line-height: 1.72; }

.guide-priority-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.guide-priority-grid article,
.guide-check-grid article,
.guide-care-grid article {
  padding: 1.25rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 11px;
  box-shadow: var(--shadow-card);
}
.guide-priority-grid__number { color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .12em; }
.guide-priority-grid h3,
.guide-check-grid h3,
.guide-care-grid h3 { margin: .45rem 0 .55rem; color: var(--text-primary); font-size: 1.08rem; }
.guide-priority-grid p,
.guide-care-grid p { margin: 0; color: var(--text-secondary); font-size: .88rem; line-height: 1.58; }
.guide-callout,
.guide-note {
  margin-top: 1.15rem;
  padding: 1.05rem 1.15rem;
  color: var(--text-secondary);
  background: var(--accent-soft);
  border: 1px solid var(--accent-border);
  border-left: 4px solid var(--accent);
  border-radius: 0 9px 9px 0;
}
.guide-callout strong,
.guide-note strong { color: var(--accent); }
.guide-callout p { margin: .3rem 0 0; color: var(--text-secondary); }

.essential-tool-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 2rem; }
.essential-tool-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.essential-tool-card:hover,
.essential-tool-card:focus-within { transform: translateY(-3px); border-color: var(--accent-border); box-shadow: var(--shadow-hover); }
.essential-tool-card__media { min-height: 100%; display: grid; place-items: center; padding: .75rem; background: #0d0f0e; border-right: 1px solid var(--border); }
.essential-tool-card__media img { width: 100%; height: 100%; max-height: 170px; object-fit: contain; }
.essential-tool-card > div:last-child { min-width: 0; display: flex; flex-direction: column; padding: 1.1rem; }
.essential-tool-card > div:last-child > span { color: var(--accent); font-size: .65rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.essential-tool-card h3 { margin: .35rem 0 .5rem; color: var(--text-primary); font-size: 1.08rem; }
.essential-tool-card p { margin: 0 0 .9rem; color: var(--text-secondary); font-size: .84rem; line-height: 1.52; }
.essential-tool-card a { margin-top: auto; color: var(--accent-hover); font-size: .77rem; font-weight: 750; text-decoration: none; }

.guide-job-table { margin-top: 1.75rem; overflow-x: auto; border: 1px solid var(--border-strong); border-radius: 12px; box-shadow: var(--shadow-card); }
.guide-job-table table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--bg-card); }
.guide-job-table th,
.guide-job-table td { padding: 1rem; color: var(--text-secondary); border-bottom: 1px solid var(--border); font-size: .86rem; line-height: 1.52; text-align: left; vertical-align: top; }
.guide-job-table thead th { color: #111; background: var(--accent); font-size: .72rem; letter-spacing: .07em; text-transform: uppercase; }
.guide-job-table tbody th { width: 22%; color: var(--text-primary); }
.guide-job-table tbody tr:last-child th,
.guide-job-table tbody tr:last-child td { border-bottom: 0; }

.guide-check-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 1.75rem; }
.guide-check-grid ul { display: grid; gap: .55rem; padding-left: 1.1rem; margin: .8rem 0 0; }
.guide-check-grid li { color: var(--text-secondary); font-size: .86rem; line-height: 1.48; }

.guide-selection-list { counter-reset: guide-choice; display: grid; gap: .75rem; padding: 0; margin: 1.8rem 0 0; list-style: none; }
.guide-selection-list li {
  counter-increment: guide-choice;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.guide-selection-list li::before {
  content: counter(guide-choice, decimal-leading-zero);
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #111;
  background: var(--accent);
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 850;
}
.guide-selection-list strong { color: var(--text-primary); }
.guide-selection-list span { margin-top: .18rem; color: var(--text-secondary); font-size: .88rem; line-height: 1.55; }

.guide-care-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin-top: 1.75rem; }
.guide-safety {
  margin-top: -20px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-left: 6px solid var(--accent);
  border-radius: 0 14px 14px 0;
  box-shadow: var(--shadow-card);
}
.guide-safety h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.guide-safety p { max-width: 880px; margin-bottom: 0; color: var(--text-secondary); line-height: 1.7; }

.guide-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin-top: 48px;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: var(--bg-header);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
}
.guide-next h2 { margin-bottom: .55rem; font-size: clamp(1.65rem, 3vw, 2.4rem); }
.guide-next p:not(.eyebrow) { max-width: 720px; margin: 0; color: var(--text-secondary); }
.guide-next .button { white-space: nowrap; }

@media (max-width: 1080px) {
  .guide-summary__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .guide-summary__grid > div:nth-child(2) { border-right: 1px solid var(--border); }
  .guide-summary__grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-toc { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .guide-toc strong { grid-column: 1 / -1; }
  .guide-toc a { border-right: 1px solid var(--border); }
  .guide-toc a:nth-of-type(3n) { border-right: 0; }
}

@media (max-width: 820px) {
  .guide-hero__inner { padding-block: 52px 60px; }
  .guide-priority-grid,
  .guide-check-grid { grid-template-columns: 1fr; }
  .essential-tool-grid { grid-template-columns: 1fr; }
  .guide-next { grid-template-columns: 1fr; }
  .guide-next .button { width: 100%; }
}

@media (max-width: 600px) {
  .guide-summary__grid { grid-template-columns: 1fr; }
  .guide-summary__grid > div { min-height: 92px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .guide-summary__grid > div:last-child { border-bottom: 0; }
  .guide-layout { padding-block: 48px 64px; }
  .guide-toc { grid-template-columns: 1fr; }
  .guide-toc strong { grid-column: auto; }
  .guide-toc a { border-right: 0; }
  .guide-section { padding-bottom: 52px; margin-bottom: 52px; }
  .essential-tool-card { grid-template-columns: 108px minmax(0, 1fr); }
  .essential-tool-card__media { padding: .45rem; }
  .guide-care-grid { grid-template-columns: 1fr; }
  .guide-selection-list li { grid-template-columns: 40px minmax(0, 1fr); column-gap: .75rem; }
  .guide-selection-list li::before { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .essential-tool-card { transition: none; }
  .essential-tool-card:hover,
  .essential-tool-card:focus-within { transform: none; }
}

/* ============================================
   V7 — PRODUCT + CATEGORY SEARCH
   ============================================ */
body.tool-categories-page .directory-search {
  margin: 0 0 28px;
  padding: clamp(20px, 3vw, 28px);
  color: var(--text-secondary);
  background: var(--bg-section);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}

body.tool-categories-page .directory-search__heading,
body.tool-categories-page .directory-search-results__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

body.tool-categories-page .directory-search__heading { margin-bottom: 20px; }
body.tool-categories-page .directory-search__heading .eyebrow { margin-bottom: 6px; }
body.tool-categories-page .directory-search__heading h3,
body.tool-categories-page .directory-search-results__heading h3,
body.tool-categories-page .directory-search-empty h3 {
  margin: 0;
  color: var(--text-primary);
}

body.tool-categories-page .directory-search__clear {
  padding: 8px 0;
  color: var(--accent);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
}

body.tool-categories-page .directory-search__clear:hover { color: var(--accent-hover); }
body.tool-categories-page .directory-search__clear:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

body.tool-categories-page .directory-search__controls {
  display: grid;
  grid-template-columns: minmax(260px, 1.7fr) minmax(180px, .75fr) minmax(190px, .85fr);
  gap: 14px;
}

body.tool-categories-page .directory-search__field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

body.tool-categories-page .directory-search__field > span {
  color: var(--text-secondary);
  font-size: .76rem;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
}

body.tool-categories-page .directory-search input,
body.tool-categories-page .directory-search select {
  width: 100%;
  min-height: 48px;
  padding: 10px 13px;
  color: var(--text-primary);
  background: #0d0f0e;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  font: inherit;
  font-size: .92rem;
}

body.tool-categories-page .directory-search input::placeholder { color: #818985; }
body.tool-categories-page .directory-search input:focus,
body.tool-categories-page .directory-search select:focus {
  border-color: var(--accent);
  outline: 2px solid var(--accent-soft);
  outline-offset: 2px;
}

body.tool-categories-page .directory-search__status {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: .84rem;
}

body.tool-categories-page .directory-search-results {
  margin: 0 0 34px;
  padding: 24px;
  background: #0f1211;
  border: 1px solid var(--border);
  border-radius: 14px;
}

body.tool-categories-page .directory-search-results__heading {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

body.tool-categories-page .directory-search-results__heading span {
  color: var(--text-muted);
  font-size: .82rem;
}

body.tool-categories-page .directory-search-results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.tool-categories-page .directory-product-result {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

body.tool-categories-page .directory-product-result:hover,
body.tool-categories-page .directory-product-result:focus-within {
  transform: translateY(-3px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-hover);
}

body.tool-categories-page .directory-product-result__category {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.tool-categories-page .directory-product-result h4 {
  margin: 0 0 8px;
  color: var(--text-primary);
  font-size: 1rem;
  line-height: 1.3;
}

body.tool-categories-page .directory-product-result__type {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: .82rem;
  line-height: 1.45;
}

body.tool-categories-page .directory-product-result a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--accent);
  font-size: .84rem;
  font-weight: 700;
}

body.tool-categories-page .directory-product-result a:hover { color: var(--accent-hover); }

body.tool-categories-page .directory-search-empty {
  margin: 0 0 34px;
  padding: 28px;
  text-align: center;
  background: var(--bg-section);
  border: 1px dashed var(--border-strong);
  border-radius: 12px;
}

body.tool-categories-page .directory-search-empty p {
  margin: 8px 0 0;
  color: var(--text-muted);
}

body.tool-categories-page .directory-search [hidden],
body.tool-categories-page .directory-search-results[hidden],
body.tool-categories-page .directory-search-empty[hidden],
body.tool-categories-page .category-list > [hidden] { display: none !important; }

@media (max-width: 960px) {
  body.tool-categories-page .directory-search__controls {
    grid-template-columns: 1fr 1fr;
  }
  body.tool-categories-page .directory-search__field--query { grid-column: 1 / -1; }
  body.tool-categories-page .directory-search-results__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  body.tool-categories-page .directory-search__heading,
  body.tool-categories-page .directory-search-results__heading {
    align-items: start;
    flex-direction: column;
    gap: 8px;
  }
  body.tool-categories-page .directory-search__controls,
  body.tool-categories-page .directory-search-results__grid { grid-template-columns: 1fr; }
  body.tool-categories-page .directory-search__field--query { grid-column: auto; }
  body.tool-categories-page .directory-search-results { padding: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  body.tool-categories-page .directory-product-result { transition: none; }
  body.tool-categories-page .directory-product-result:hover,
  body.tool-categories-page .directory-product-result:focus-within { transform: none; }
}

/* V9 — exact product-card search targets */
body.directory-page .product-option-card[id] {
  scroll-margin-top: 120px;
}

body.directory-page .product-option-card:target {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft), var(--shadow-hover);
}

/* V12 — original thread-restoration category artwork */
body.directory-page .product-option-image--thread-restoring-files {
  min-height: 210px;
  background-image: url("assets/tools/group-thread-repair-restoration-tools.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.directory-page .product-option-image--thread-restoring-files::after { content: none; }

/* ============================================
   V12 — APPROVED MILLWRIGHT EMBLEM
   ============================================ */

body .brand img[src*="millwrightsupply-header-mark"] {
  display: block;
  object-fit: contain;
  border-radius: 21%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.09),
    0 5px 14px rgba(0, 0, 0, 0.34);
}

body .site-header .brand img[src*="millwrightsupply-header-mark"] {
  width: 48px;
  height: 48px;
}

body .site-footer .brand img[src*="millwrightsupply-header-mark"] {
  width: 42px;
  height: 42px;
}

@media (max-width: 680px) {
  body .site-header .brand img[src*="millwrightsupply-header-mark"] {
    width: 42px;
    height: 42px;
  }
}

/* V10 — compact product identification and affiliate-status scanline */
body.directory-page .product-card-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 12px 0 16px;
  padding: 1px;
  overflow: hidden;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}

body.directory-page .product-card-facts > div {
  min-width: 0;
  padding: 10px 11px;
  background: #111513;
}

body.directory-page .product-card-facts dt {
  margin: 0 0 3px;
  color: var(--text-muted);
  font-size: .64rem;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.directory-page .product-card-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--text-primary);
  font-size: .79rem;
  font-weight: 700;
  line-height: 1.32;
}

body.directory-page .product-card-facts__affiliate dd {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

body.directory-page .product-card-facts__affiliate dd::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

body.directory-page .product-card-facts__affiliate--available dd {
  color: var(--accent-hover);
}

body.directory-page .product-card-facts__affiliate--coming-soon dd {
  color: #b7bfbb;
}

@media (max-width: 380px) {
  body.directory-page .product-card-facts {
    grid-template-columns: 1fr;
  }
}

/* V11 — compact product-card details disclosure */
body.directory-page .product-card-quick-view {
  margin: 0 0 14px;
}

body.directory-page .product-card-quick-view__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

body.directory-page .product-card-quick-view .product-best-for {
  margin: 0;
  padding: 10px 0 0;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  font-size: .79rem;
  line-height: 1.45;
}

body.directory-page .product-card-quick-view .product-best-for strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text-primary);
  font-size: .64rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

body.directory-page .product-card-details {
  margin: 0 0 14px;
  overflow: hidden;
  color: var(--text-secondary);
  background: #111513;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
}

body.directory-page .product-card-details[open] {
  border-color: var(--accent-border);
}

body.directory-page .product-card-details > summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: .02em;
  transition: color .18s ease, background-color .18s ease;
}

body.directory-page .product-card-details > summary::-webkit-details-marker {
  display: none;
}

body.directory-page .product-card-details > summary::after {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  content: "";
  transform: rotate(45deg);
  transition: transform .2s ease;
}

body.directory-page .product-card-details[open] > summary::after {
  transform: rotate(225deg);
}

body.directory-page .product-card-details > summary:hover {
  color: var(--accent-hover);
  background: var(--accent-soft);
}

body.directory-page .product-card-details > summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}

body.directory-page .product-card-details__content {
  padding: 0 14px 14px;
  border-top: 1px solid var(--border);
}

body.directory-page .product-card-details__content .product-positioning {
  margin-top: 14px;
}

body.directory-page .product-card-details__content .product-option-field-note {
  margin-bottom: 0;
}

@media (max-width: 680px) {
  body.directory-page .product-card-quick-view__badges {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.directory-page .product-card-details > summary,
  body.directory-page .product-card-details > summary::after {
    transition: none;
  }
}

/* V15 — Option B compact product cards */
/* Approved direction: keep identity/affiliate facts and grade visible; collapse intended-use and best-for copy. */
body.directory-page .product-option-card__body {
  padding: .9rem;
}

body.directory-page .product-option-card__type {
  margin-bottom: .25rem;
  font-size: .64rem;
}

body.directory-page .product-option-card h5 {
  margin-bottom: .58rem;
  font-size: 1.02rem;
  line-height: 1.18;
}

body.directory-page .product-card-facts {
  margin: 8px 0 10px;
  border-radius: 8px;
}

body.directory-page .product-card-facts > div {
  padding: 7px 9px;
}

body.directory-page .product-card-facts dt {
  margin-bottom: 2px;
  font-size: .59rem;
  line-height: 1.15;
}

body.directory-page .product-card-facts dd {
  font-size: .75rem;
  line-height: 1.25;
}

body.directory-page .product-card-facts__affiliate dd {
  gap: 6px;
}

body.directory-page .product-card-facts__affiliate dd::before {
  width: 6px;
  height: 6px;
  flex-basis: 6px;
}

body.directory-page .product-card-quick-view {
  margin: 0 0 8px;
}

body.directory-page .product-card-quick-view__badges {
  display: block;
  margin: 0 0 7px;
}

body.directory-page .product-card-quick-view__badges .product-grade-badge {
  display: flex;
  width: 100%;
  min-height: 30px;
  padding: 5px 9px;
  border-radius: 7px;
  font-size: .61rem;
}

body.directory-page .product-card-compact-detail {
  margin: 0 0 6px;
  overflow: hidden;
  color: var(--text-secondary);
  background: #111513;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
}

body.directory-page .product-card-compact-detail[open] {
  border-color: var(--accent-border);
}

body.directory-page .product-card-compact-detail > summary {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 10px;
  color: var(--text-muted);
  cursor: pointer;
  list-style: none;
  font-size: .65rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .065em;
  text-transform: uppercase;
  transition: color .18s ease, background-color .18s ease;
}

body.directory-page .product-card-compact-detail > summary::-webkit-details-marker {
  display: none;
}

body.directory-page .product-card-compact-detail > summary::after {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-right: 1.5px solid var(--text-muted);
  border-bottom: 1.5px solid var(--text-muted);
  content: "";
  transform: rotate(45deg);
  transition: transform .18s ease, border-color .18s ease;
}

body.directory-page .product-card-compact-detail[open] > summary::after {
  transform: rotate(225deg);
  border-color: var(--accent);
}

body.directory-page .product-card-compact-detail > summary:hover,
body.directory-page .product-card-compact-detail > summary:focus-visible {
  color: var(--text-primary);
  background: var(--accent-soft);
}

body.directory-page .product-card-compact-detail > summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}

body.directory-page .product-card-compact-detail > p {
  margin: 0;
  padding: 8px 10px 9px;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
  font-size: .75rem;
  line-height: 1.36;
}

body.directory-page .product-card-details {
  margin-bottom: 9px;
  border-radius: 8px;
}

body.directory-page .product-card-details > summary {
  min-height: 39px;
  padding: 8px 11px;
  font-size: .76rem;
}

body.directory-page .product-card-details__content {
  padding: 0 11px 11px;
}

body.directory-page .product-card-details__content .product-positioning {
  margin-top: 11px;
}

body.directory-page .product-option-button {
  min-height: 42px;
  padding: .56rem .7rem;
  font-size: .76rem;
}

@media (max-width: 680px) {
  body.directory-page .product-option-card__body {
    padding: .85rem;
  }
  body.directory-page .product-card-quick-view__badges {
    display: block;
  }
  body.directory-page .product-card-compact-detail > summary {
    min-height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.directory-page .product-card-compact-detail > summary,
  body.directory-page .product-card-compact-detail > summary::after {
    transition: none;
  }
}

/* V17 - unified black media background system */
body.home-page #categories .category-card__icon,
body.home-page #featured-tools .tool-card__visual,
body.home-page .field-guides-home .guide-card__visual,
body.tool-categories-page .directory-card--with-media .directory-card__media,
body.directory-page .group-grid .group-card__media,
body.directory-page .featured-tool__visual,
body.directory-page .featured-tool__visual--approved-image,
body.directory-page .featured-tool__visual--image,
body.directory-page .product-option-image,
body.directory-page .product-option-image--asset,
body.directory-page .essential-tool-card__media {
  background: #0d0f0e !important;
  background-color: #0d0f0e !important;
}

body.home-page #categories .category-card__icon img,
body.home-page #featured-tools .tool-card__visual img,
body.home-page .field-guides-home .guide-card__visual img,
body.tool-categories-page .directory-card--with-media .directory-card__media img,
body.directory-page .group-grid .group-card__media img,
body.directory-page .featured-tool__visual img,
body.directory-page .product-option-image--asset img,
body.directory-page .essential-tool-card__media img {
  background: transparent !important;
  object-fit: contain;
  object-position: center;
}

body.directory-page .product-option-image--asset img {
  padding: .9rem;
}

body.directory-page .featured-tool__visual--approved-image img,
body.directory-page .featured-tool__reused-image,
body.directory-page .featured-tool__visual--image img {
  max-width: 100%;
  max-height: 100%;
}

/* V19 - compact individual product-card images */
body.directory-page .product-option-image,
body.directory-page .product-option-image--asset {
  min-height: 128px;
  padding: .35rem;
}

body.directory-page .product-option-image--asset img {
  width: 100%;
  height: 160px;
  min-height: 0;
  max-height: 160px;
  padding: .9rem 1.25rem;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 680px) {
  body.directory-page .product-option-image,
  body.directory-page .product-option-image--asset {
    min-height: 118px;
    padding: .25rem;
  }

  body.directory-page .product-option-image--asset img {
    height: 138px;
    max-height: 138px;
    padding: .75rem 1rem;
  }
}

/* V20 - sitewide visual refinement pass for product comparison cards */
body.directory-page .product-options-section {
  margin: 0 0 2.4rem;
  padding: 1.2rem 1.2rem 1.05rem;
  border-radius: 14px;
}

body.directory-page .product-options-heading {
  gap: .8rem;
  margin-bottom: .9rem;
}

body.directory-page .product-options-heading .eyebrow {
  margin-bottom: .2rem;
}

body.directory-page .product-options-heading h4 {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.12;
}

body.directory-page .product-options-heading > p {
  font-size: .86rem;
  line-height: 1.45;
}

body.directory-page .product-option-group {
  margin-top: 1rem;
}

body.directory-page .product-option-group-heading {
  margin-bottom: .25rem;
  font-size: .96rem;
}

body.directory-page .product-option-group-description {
  margin-bottom: .65rem;
  font-size: .82rem;
  line-height: 1.44;
}

body.directory-page .product-options-grid {
  gap: .82rem;
}

body.directory-page .product-option-card {
  border-radius: 11px;
  box-shadow: 0 6px 16px rgba(16,24,32,.05);
}

body.directory-page .product-option-card__body {
  padding: .84rem;
}

body.directory-page .product-option-card__type {
  margin-bottom: .24rem;
  font-size: .64rem;
}

body.directory-page .product-option-card h5 {
  margin-bottom: .58rem;
  font-size: 1rem;
  line-height: 1.16;
}

body.directory-page .product-option-specs {
  gap: .34rem;
  margin-bottom: .72rem;
}

body.directory-page .product-option-specs div {
  padding-bottom: .34rem;
}

body.directory-page .product-option-specs dt {
  margin-bottom: .08rem;
  font-size: .6rem;
}

body.directory-page .product-option-specs dd {
  font-size: .76rem;
  line-height: 1.34;
}

body.directory-page .product-option-field-note {
  margin-bottom: .72rem;
  padding: .62rem .68rem;
  font-size: .75rem;
  line-height: 1.34;
}

body.directory-page .product-card-compact-detail > summary,
body.directory-page .product-card-details > summary {
  min-height: 36px;
  padding: 7px 10px;
  font-size: .74rem;
}

body.directory-page .product-card-compact-detail > p {
  padding: 7px 10px 8px;
  font-size: .73rem;
  line-height: 1.32;
}

body.directory-page .product-card-details {
  margin-bottom: 8px;
}

body.directory-page .product-card-details__content {
  padding: 0 10px 10px;
}

body.directory-page .product-positioning {
  margin-bottom: .8rem;
  padding: .68rem;
}

body.directory-page .product-positioning-badges {
  gap: .34rem;
  margin-bottom: .55rem;
}

body.directory-page .product-grade-badge,
body.directory-page .product-value-badge,
body.directory-page .product-price-position,
body.directory-page .product-duty-level {
  min-height: 24px;
  padding: .23rem .42rem;
  font-size: .58rem;
}

body.directory-page .product-positioning-item {
  padding: .32rem 0;
  font-size: .72rem;
  line-height: 1.34;
}

body.directory-page .product-positioning-item strong {
  font-size: .58rem;
}

body.directory-page .product-option-button {
  min-height: 40px;
  padding: .54rem .68rem;
  font-size: .74rem;
}

body.directory-page .product-options-reminder,
body.directory-page .product-classification-guide,
body.directory-page .product-positioning-reminder {
  font-size: .84rem;
}

body.directory-page .product-classification-guide {
  margin-bottom: 1.45rem;
  padding: 1.05rem 1.1rem;
}

body.directory-page .product-classification-guide h3 {
  font-size: 1rem;
}

body.directory-page .product-classification-guide p {
  font-size: .84rem;
  line-height: 1.46;
}

@media (max-width: 960px) {
  body.directory-page .product-options-section {
    padding: 1rem .95rem .95rem;
  }

  body.directory-page .product-options-grid {
    gap: .72rem;
  }
}

@media (max-width: 680px) {
  body.directory-page .product-options-section {
    margin-bottom: 2rem;
    padding: .9rem;
  }

  body.directory-page .product-option-card__body {
    padding: .78rem;
  }

  body.directory-page .product-option-card h5 {
    font-size: .96rem;
  }

  body.directory-page .product-option-specs dd {
    font-size: .74rem;
  }
}

/* ================================================================
   V45 — MACHINERY INSTALLATION HERO PHOTO
   Approved image 3: millwrights positioning heavy machinery.
   Full-width industrial photo with a protected dark copy zone at left.
   ================================================================ */
body.machinery-installation-page .page-hero {
  background: #070b0f;
}
body.machinery-installation-page .page-hero__texture {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  opacity: 1 !important;
  background: url("assets/optimized/machinery-installation-hero-v45.webp") right center / cover no-repeat !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
}
body.machinery-installation-page .page-hero::after {
  background:
    linear-gradient(90deg,
      rgba(5,9,12,.99) 0%,
      rgba(5,9,12,.97) 30%,
      rgba(5,9,12,.83) 44%,
      rgba(5,9,12,.50) 58%,
      rgba(5,9,12,.17) 76%,
      rgba(5,9,12,.06) 100%),
    linear-gradient(180deg, rgba(3,6,8,.18), transparent 28%, transparent 72%, rgba(3,6,8,.26));
}

@media (max-width: 680px) {
  body.machinery-installation-page .page-hero__inner {
    padding-right: 0;
    padding-bottom: 50px;
  }
  body.machinery-installation-page .page-hero__texture {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    transform: none !important;
    background-image: url("assets/optimized/machinery-installation-hero-v45-mobile.webp") !important;
    background-size: cover !important;
    background-position: 58% center !important;
    opacity: .78 !important;
  }
  body.machinery-installation-page .page-hero::after {
    background:
      linear-gradient(90deg, rgba(5,9,12,.95) 0%, rgba(5,9,12,.88) 66%, rgba(5,9,12,.62) 100%),
      linear-gradient(180deg, rgba(5,9,12,.72) 0%, rgba(5,9,12,.58) 54%, rgba(5,9,12,.80) 100%);
  }
}


/* V47 search-anchor visibility correction — 2026-08-22 */
.tool-categories-page #directory-search {
  scroll-margin-top: 104px;
}
@media (max-width: 980px) {
  .tool-categories-page #directory-search { scroll-margin-top: 92px; }
}
@media (max-width: 680px) {
  .tool-categories-page #directory-search { scroll-margin-top: 82px; }
}


/* ================================================================
   V65 — PRACTICAL FIELD-GUIDE VISUAL SYSTEM — 2026-08-24
   Logo-free field photography, deterministic technical diagrams and
   concise process visuals. Scoped to field-guide pages only.
   ================================================================ */
body.field-guide-page .guide-field-figure {
  margin: 2rem 0 2.2rem;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}
body.field-guide-page .guide-field-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #0b0d0c;
}
body.field-guide-page .guide-field-figure figcaption,
body.field-guide-page .guide-tech-figure figcaption {
  padding: .9rem 1.05rem 1rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  font-size: .78rem;
  line-height: 1.55;
}
body.field-guide-page .guide-field-figure figcaption strong,
body.field-guide-page .guide-tech-figure figcaption strong { color: var(--accent); }

body.field-guide-page .guide-tech-figure {
  margin: 2rem 0 1.2rem;
  overflow: hidden;
  color: var(--text-secondary);
  background:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
    #111513;
  background-size: 28px 28px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
}
body.field-guide-page .guide-tech-figure__header { padding: 1.15rem 1.2rem 0; }
body.field-guide-page .guide-tech-figure__header span {
  color: var(--accent);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.field-guide-page .guide-tech-figure__header h3 {
  margin: .35rem 0 0;
  color: var(--text-primary);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}
body.field-guide-page .guide-tech-svg { display: block; width: 100%; height: auto; min-height: 250px; padding: .8rem 1rem .25rem; }
body.field-guide-page .guide-tech-svg text { fill: var(--text-secondary); font: 700 18px Inter, Arial, sans-serif; }
body.field-guide-page .guide-tech-svg .label-small { fill: var(--text-muted); font-size: 15px; font-weight: 650; }
body.field-guide-page .guide-tech-svg .accent-text { fill: var(--accent); }

body.field-guide-page .guide-zone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.15rem;
}
body.field-guide-page .guide-zone-grid article {
  min-width: 0;
  padding: 1.15rem;
  background: rgba(12,14,13,.88);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 10px;
}
body.field-guide-page .guide-zone-grid article > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #111;
  background: var(--accent);
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 900;
}
body.field-guide-page .guide-zone-grid h4 { margin: .65rem 0 .45rem; color: var(--text-primary); font-size: 1rem; }
body.field-guide-page .guide-zone-grid p { margin: 0; color: var(--text-secondary); font-size: .82rem; line-height: 1.55; }

body.field-guide-page .guide-flow-map {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .65rem;
  align-items: stretch;
  padding: 1.25rem;
}
body.field-guide-page .guide-flow-map div {
  position: relative;
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  padding: .8rem;
  color: var(--text-primary);
  background: rgba(12,14,13,.9);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}
body.field-guide-page .guide-flow-map div:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -.62rem;
  color: var(--accent);
  font-size: 1.25rem;
  transform: translate(50%,-50%);
}

body.field-guide-page .guide-process-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.8rem 0 2rem;
}
body.field-guide-page .guide-process-step {
  position: relative;
  min-width: 0;
  padding: 1.1rem 1.1rem 1.15rem 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 11px;
}
body.field-guide-page .guide-process-step > span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #111;
  background: var(--accent);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 900;
}
body.field-guide-page .guide-process-step h3 { margin: 0 0 .35rem; color: var(--text-primary); font-size: 1rem; }
body.field-guide-page .guide-process-step p { margin: 0; color: var(--text-secondary); font-size: .8rem; line-height: 1.52; }

@media (max-width: 820px) {
  body.field-guide-page .guide-zone-grid,
  body.field-guide-page .guide-process-visual { grid-template-columns: 1fr; }
  body.field-guide-page .guide-flow-map { grid-template-columns: 1fr; }
  body.field-guide-page .guide-flow-map div { min-height: 70px; }
  body.field-guide-page .guide-flow-map div:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -.68rem;
    transform: translate(50%,50%) rotate(90deg);
  }
}
@media (max-width: 600px) {
  body.field-guide-page .guide-field-figure { margin-inline: -2px; }
  body.field-guide-page .guide-tech-svg { min-height: 205px; padding-inline: .35rem; }
  body.field-guide-page .guide-tech-svg text { font-size: 15px; }
  body.field-guide-page .guide-tech-svg .label-small { font-size: 13px; }
}


/* ================================================================
   V66 — RECENT UPDATES + CONTEXTUAL INTERNAL LINKS — 2026-08-24
   Lightweight discovery component for home and directory pages.
   ================================================================ */
.recent-updates {
  color: var(--text-secondary);
  background:
    radial-gradient(circle at 88% 12%, rgba(240,166,43,.09), transparent 24%),
    var(--bg-section);
  border-block: 1px solid var(--border);
}
.recent-updates__inner { padding-block: clamp(3.4rem, 7vw, 5.5rem); }
.recent-updates__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.7rem;
}
.recent-updates__heading h2 {
  max-width: 720px;
  margin: .3rem 0 0;
  color: var(--text-primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.recent-updates__heading > p { margin: 0; color: var(--text-secondary); line-height: 1.65; }
.recent-updates__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.recent-updates--home .recent-updates__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.recent-update-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 1.25rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.recent-update-card:hover,
.recent-update-card:focus-visible {
  color: var(--text-secondary);
  transform: translateY(-3px);
  border-color: var(--accent-border);
  box-shadow: var(--shadow-hover);
}
.recent-update-card__meta { display: flex; flex-wrap: wrap; gap: .45rem; align-items: center; }
.recent-update-card__badge {
  display: inline-flex;
  padding: .28rem .48rem;
  color: #111;
  background: var(--accent);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.recent-update-card time { color: var(--text-muted); font-size: .68rem; font-weight: 700; }
.recent-update-card h3 { margin: .85rem 0 .55rem; color: var(--text-primary); font-size: 1.08rem; line-height: 1.25; }
.recent-update-card p { margin: 0; color: var(--text-secondary); font-size: .84rem; line-height: 1.56; }
.recent-update-card__link { margin-top: auto; padding-top: 1rem; color: var(--accent-hover); font-size: .76rem; font-weight: 800; }

body.directory-page .recent-updates { background-color: var(--bg-body); }
body.directory-page .recent-updates__inner { padding-block: clamp(3rem, 6vw, 4.8rem); }
body.tool-categories-page .recent-updates { border-top: 0; }

@media (max-width: 1080px) {
  .recent-updates--home .recent-updates__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .recent-updates__heading { grid-template-columns: 1fr; gap: .8rem; }
  .recent-updates__grid { grid-template-columns: 1fr; }
  .recent-update-card { min-height: 0; }
}
@media (max-width: 600px) {
  .recent-updates--home .recent-updates__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .recent-update-card { transition: none; }
  .recent-update-card:hover,
  .recent-update-card:focus-visible { transform: none; }
}


/* ================================================================
   V67 — BREADCRUMBS + STICKY MAIN TOOL-GROUP NAV — 2026-08-24
   ================================================================ */
.tool-group-nav {
  position: sticky;
  top: 76px;
  z-index: 90;
  color: var(--text-secondary);
  background: rgba(13, 16, 15, .97);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.tool-group-nav__scroll {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-border) transparent;
}
.tool-group-nav__scroll::-webkit-scrollbar { height: 4px; }
.tool-group-nav__scroll::-webkit-scrollbar-thumb { background: var(--accent-border); border-radius: 999px; }
.tool-group-nav__link {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 47px;
  align-items: center;
  padding: .72rem .82rem .68rem;
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.tool-group-nav__link::after {
  content: "";
  position: absolute;
  right: .82rem;
  bottom: 0;
  left: .82rem;
  height: 3px;
  background: transparent;
  border-radius: 3px 3px 0 0;
}
.tool-group-nav__link:hover,
.tool-group-nav__link:focus-visible { color: var(--text-primary); background: rgba(255,255,255,.035); }
.tool-group-nav__link[aria-current="page"],
.tool-group-nav__link[aria-current="location"] { color: var(--accent-hover); }
.tool-group-nav__link[aria-current="page"]::after,
.tool-group-nav__link[aria-current="location"]::after { background: var(--accent); }
.tool-group-nav__link--context::before {
  content: "Guide topic";
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

body.has-tool-group-nav main [id] { scroll-margin-top: 150px; }
.legal-hero .breadcrumbs,
.home-page .hero .breadcrumbs { margin-bottom: 1.45rem; }
.legal-hero .breadcrumbs { color: var(--text-muted); }
.legal-hero .breadcrumbs a,
.home-page .hero .breadcrumbs a { color: var(--text-secondary); }
.legal-hero .breadcrumbs a:hover,
.legal-hero .breadcrumbs a:focus-visible,
.home-page .hero .breadcrumbs a:hover,
.home-page .hero .breadcrumbs a:focus-visible { color: var(--accent-hover); }

@media (max-width: 1080px) {
  .tool-group-nav { top: 72px; }
  body.has-tool-group-nav main [id] { scroll-margin-top: 142px; }
}
@media (max-width: 600px) {
  .tool-group-nav { top: 66px; }
  .tool-group-nav__scroll { padding-inline: 10px; }
  .tool-group-nav__link { min-height: 44px; padding-inline: .7rem; font-size: .69rem; }
  .tool-group-nav__link::after { right: .7rem; left: .7rem; }
  body.has-tool-group-nav main [id] { scroll-margin-top: 128px; }
}


/* ================================================================
   V68 — PROMINENT COMPLETE-DIRECTORY CTA — 2026-08-24
   ================================================================ */
body.home-page #categories a.complete-directory-cta,
body.home-page .field-guides-home__note > a.complete-directory-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 52px;
  padding: .82rem 1.25rem;
  color: #111;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .015em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  backdrop-filter: none;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, box-shadow .18s ease;
}
body.home-page #categories a.complete-directory-cta span,
body.home-page .field-guides-home__note > a.complete-directory-cta span {
  color: inherit;
  font-size: 1em;
  line-height: 1;
  transition: transform .18s ease;
}
body.home-page #categories a.complete-directory-cta:hover,
body.home-page #categories a.complete-directory-cta:focus-visible,
body.home-page .field-guides-home__note > a.complete-directory-cta:hover,
body.home-page .field-guides-home__note > a.complete-directory-cta:focus-visible {
  color: #111;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .3);
  transform: translateY(-2px);
}
body.home-page #categories a.complete-directory-cta:hover span,
body.home-page #categories a.complete-directory-cta:focus-visible span,
body.home-page .field-guides-home__note > a.complete-directory-cta:hover span,
body.home-page .field-guides-home__note > a.complete-directory-cta:focus-visible span {
  transform: translateX(4px);
}

@media (max-width: 600px) {
  body.home-page .category-directory-action { width: 100%; }
  body.home-page #categories a.complete-directory-cta,
  body.home-page .field-guides-home__note > a.complete-directory-cta {
    width: 100%;
    min-height: 50px;
    padding-inline: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page #categories a.complete-directory-cta,
  body.home-page .field-guides-home__note > a.complete-directory-cta,
  body.home-page #categories a.complete-directory-cta span,
  body.home-page .field-guides-home__note > a.complete-directory-cta span {
    transition: none;
  }
  body.home-page #categories a.complete-directory-cta:hover,
  body.home-page #categories a.complete-directory-cta:focus-visible,
  body.home-page .field-guides-home__note > a.complete-directory-cta:hover,
  body.home-page .field-guides-home__note > a.complete-directory-cta:focus-visible {
    transform: none;
  }
}


/* ================================================================
   V69 — LONG DIRECTORY MOBILE + PERFORMANCE PASS — 2026-08-24
   ================================================================ */
.directory-jump-nav {
  color: var(--text-secondary);
  background: var(--bg-header);
  border-bottom: 1px solid var(--border-strong);
}
.directory-jump-nav__inner {
  display: grid;
  grid-template-columns: minmax(220px, .34fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
  padding-block: 1.35rem;
}
.directory-jump-nav__heading .eyebrow { margin-bottom: .22rem; }
.directory-jump-nav__heading h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: 1.15rem;
  line-height: 1.2;
}
.directory-jump-nav__heading > p:last-child {
  margin: .4rem 0 0;
  color: var(--text-muted);
  font-size: .78rem;
  line-height: 1.45;
}
.directory-jump-nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.directory-jump-nav__links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: .55rem .72rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 720;
  line-height: 1.25;
  text-decoration: none;
}
.directory-jump-nav__links a:hover,
.directory-jump-nav__links a:focus-visible {
  color: #111;
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Skip expensive below-the-fold layout and paint work until a group nears view. */
body.directory-page .featured-tool {
  content-visibility: auto;
  contain-intrinsic-size: auto 1800px;
}

@media (max-width: 820px) {
  .directory-jump-nav__inner { grid-template-columns: 1fr; gap: .9rem; }
  .directory-jump-nav__heading > p:last-child { max-width: 560px; }
  .directory-jump-nav__links {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 0 .45rem;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-border) transparent;
  }
  .directory-jump-nav__links a {
    flex: 0 0 auto;
    min-height: 44px;
    max-width: 240px;
    scroll-snap-align: start;
  }
}

@media (max-width: 680px) {
  .directory-jump-nav__inner { padding-block: 1rem; }
  .directory-jump-nav__heading h2 { font-size: 1.05rem; }

  body.directory-page .product-option-card { overflow: clip; }
  body.directory-page .product-card-compact-detail > summary,
  body.directory-page .product-card-details > summary {
    min-height: 44px;
    padding-block: 10px;
    touch-action: manipulation;
  }
  body.directory-page .product-card-details__content,
  body.directory-page .product-positioning-item,
  body.directory-page .product-option-specs dd { overflow-wrap: anywhere; }
  body.directory-page .product-option-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

@media (prefers-reduced-motion: reduce) {
  .directory-jump-nav__links { scroll-behavior: auto; }
}


/* ================================================================
   V70 — TRADE-SPECIFIC FAQ + SEO CONTENT PASS — 2026-08-24
   ================================================================ */
.seo-faq {
  color: var(--text-secondary);
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.seo-faq__inner {
  display: grid;
  grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-block: clamp(3.4rem, 7vw, 5.4rem);
}
.seo-faq__heading { align-self: start; }
.seo-faq__heading h2 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.seo-faq__heading > p:last-child {
  margin: .85rem 0 0;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.62;
}
.seo-faq__list { display: grid; gap: .7rem; }
.seo-faq__item {
  overflow: hidden;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
}
.seo-faq__item[open] { border-color: var(--accent-border); }
.seo-faq__item > summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  font-size: .92rem;
  font-weight: 760;
  line-height: 1.4;
}
.seo-faq__item > summary::-webkit-details-marker { display: none; }
.seo-faq__item > summary::after {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  content: "";
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.seo-faq__item[open] > summary::after { transform: rotate(225deg); }
.seo-faq__item > summary:hover,
.seo-faq__item > summary:focus-visible { color: var(--accent-hover); background: var(--accent-soft); }
.seo-faq__item > summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -3px; }
.seo-faq__answer { padding: 0 1rem 1rem; border-top: 1px solid var(--border); }
.seo-faq__answer p { margin: .9rem 0 0; color: var(--text-secondary); font-size: .86rem; line-height: 1.68; }

body.field-guide-page .seo-faq { margin: clamp(3rem, 6vw, 4.6rem) calc(50% - 50vw) 0; }
body.field-guide-page .seo-faq__inner { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

@media (max-width: 820px) {
  .seo-faq__inner { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (max-width: 600px) {
  .seo-faq__inner { width: min(calc(100% - 28px), var(--container)); padding-block: 3rem; }
  .seo-faq__item > summary { min-height: 48px; padding: .8rem .85rem; font-size: .86rem; }
  .seo-faq__answer { padding: 0 .85rem .9rem; }
  .seo-faq__answer p { font-size: .82rem; }
}
@media (prefers-reduced-motion: reduce) {
  .seo-faq__item > summary::after { transition: none; }
}


/* V71: lightweight sitewide footer */
.site-footer {
  padding-top: clamp(2.7rem, 5vw, 3.8rem);
  color: #c4cdd3;
  background: #0b1016;
}
.site-footer .footer__grid--sitewide {
  grid-template-columns: minmax(210px, 1.15fr) minmax(300px, 1.45fr) minmax(190px, .9fr) minmax(155px, .7fr);
  gap: clamp(1.7rem, 3.5vw, 3.2rem);
  align-items: start;
  padding-bottom: 2rem;
}
.site-footer .footer__brand-column p {
  max-width: 360px;
  margin: .9rem 0 .65rem;
  color: #a9b3ba;
  font-size: .86rem;
  line-height: 1.6;
}
.site-footer .footer__trade-line {
  display: block;
  color: #d4dbe0;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .035em;
}
.site-footer .footer__nav {
  display: block;
  min-width: 0;
}
.site-footer .footer__nav h2 {
  margin: 0 0 .7rem;
  padding-bottom: .55rem;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .74rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.site-footer .footer__links {
  display: grid;
  gap: .18rem .95rem;
}
.site-footer .footer__links--categories {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.site-footer .footer__links a,
.site-footer .footer__links .footer-privacy-choices {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: .22rem 0;
  color: #aeb8c0;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: .82rem;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color .16s ease;
}
.site-footer .footer__links a:hover,
.site-footer .footer__links a:focus-visible,
.site-footer .footer__links .footer-privacy-choices:hover,
.site-footer .footer__links .footer-privacy-choices:focus-visible {
  color: var(--accent);
  transform: none;
}
.site-footer .affiliate-disclosure {
  padding: .9rem 1rem;
  font-size: .76rem;
  line-height: 1.55;
}
.site-footer .footer__bottom-band {
  margin-top: 1.5rem;
  background: #070b0f;
  border-top: 1px solid rgba(255,255,255,.06);
}
.site-footer .footer__bottom {
  min-height: 58px;
}
@media (max-width: 1100px) {
  .site-footer .footer__grid--sitewide {
    grid-template-columns: 1fr 1.25fr 1fr;
  }
  .site-footer .footer__brand-column { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .site-footer .footer__grid--sitewide {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem 1.25rem;
  }
  .site-footer .footer__brand-column,
  .site-footer .footer__nav--categories { grid-column: 1 / -1; }
  .site-footer .footer__links a,
  .site-footer .footer__links .footer-privacy-choices { min-height: 44px; }
}
@media (max-width: 520px) {
  .site-footer .footer__grid--sitewide { grid-template-columns: 1fr; }
  .site-footer .footer__brand-column,
  .site-footer .footer__nav--categories { grid-column: auto; }
  .site-footer .footer__links--categories { grid-template-columns: 1fr 1fr; }
  .site-footer .footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: .8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .site-footer .footer__links a,
  .site-footer .footer__links .footer-privacy-choices { transition: none; }
}


/* V72: field-guide print / save-as-PDF controls */
body.field-guide-page .guide-print-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem 1rem;
  margin-top: .85rem;
}
body.field-guide-page .button--print-guide {
  min-height: 46px;
  padding-inline: 1rem;
  color: var(--text-primary);
  background: rgba(255,255,255,.055);
  border: 1px solid var(--border-strong);
  cursor: pointer;
}
body.field-guide-page .button--print-guide:hover,
body.field-guide-page .button--print-guide:focus-visible {
  color: #fff;
  background: var(--bg-card-hover);
  border-color: var(--accent);
}
body.field-guide-page .guide-print-tools span {
  max-width: 320px;
  color: var(--text-muted);
  font-size: .76rem;
  line-height: 1.45;
}
body.field-guide-page .guide-print-source { display: none; }

@media (max-width: 560px) {
  body.field-guide-page .guide-print-tools { align-items: stretch; flex-direction: column; }
  body.field-guide-page .button--print-guide { width: 100%; min-height: 48px; }
  body.field-guide-page .guide-print-tools span { max-width: none; }
}

@media print {
  @page { margin: .55in .58in .62in; }

  html,
  body.field-guide-page {
    min-width: 0 !important;
    color: #111 !important;
    background: #fff !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 10.5pt;
    line-height: 1.45;
  }

  body.field-guide-page .topbar,
  body.field-guide-page .site-header,
  body.field-guide-page .tool-group-nav,
  body.field-guide-page .skip-link,
  body.field-guide-page .breadcrumbs,
  body.field-guide-page .guide-hero__actions,
  body.field-guide-page .guide-print-tools,
  body.field-guide-page .guide-toc,
  body.field-guide-page .guide-next,
  body.field-guide-page .site-footer,
  body.field-guide-page .analytics-consent,
  body.field-guide-page .button {
    display: none !important;
  }

  body.field-guide-page main,
  body.field-guide-page article,
  body.field-guide-page .container,
  body.field-guide-page .guide-hero__inner,
  body.field-guide-page .guide-layout,
  body.field-guide-page .guide-content,
  body.field-guide-page .seo-faq__inner {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
  }

  body.field-guide-page .guide-hero {
    margin: 0 0 .26in !important;
    padding: 0 0 .18in !important;
    color: #111 !important;
    background: #fff !important;
    border-bottom: 2px solid #c86421;
  }
  body.field-guide-page .guide-hero .eyebrow {
    margin: 0 0 .05in !important;
    color: #8b3e12 !important;
    font-size: 8.5pt !important;
  }
  body.field-guide-page .guide-hero h1 {
    margin: 0 !important;
    color: #111 !important;
    font-size: 25pt !important;
    line-height: 1.08 !important;
    letter-spacing: -.02em !important;
  }
  body.field-guide-page .guide-hero__lead {
    max-width: none !important;
    margin: .08in 0 0 !important;
    color: #333 !important;
    font-size: 11pt !important;
  }
  body.field-guide-page .guide-print-source {
    display: block !important;
    margin: .06in 0 0 !important;
    color: #555 !important;
    font-size: 8pt !important;
    overflow-wrap: anywhere;
  }

  body.field-guide-page .guide-summary,
  body.field-guide-page .guide-section,
  body.field-guide-page .seo-faq {
    margin: 0 0 .22in !important;
    padding: 0 !important;
    color: #111 !important;
    background: #fff !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  body.field-guide-page h2,
  body.field-guide-page h3,
  body.field-guide-page h4 {
    color: #111 !important;
    break-after: avoid-page;
    page-break-after: avoid;
  }
  body.field-guide-page h2 { margin: .2in 0 .08in !important; font-size: 17pt !important; }
  body.field-guide-page h3 { margin: .14in 0 .06in !important; font-size: 13pt !important; }
  body.field-guide-page h4 { font-size: 11pt !important; }
  body.field-guide-page p,
  body.field-guide-page li,
  body.field-guide-page dd,
  body.field-guide-page figcaption,
  body.field-guide-page .guide-section__lead {
    color: #222 !important;
  }
  body.field-guide-page a {
    color: #111 !important;
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  body.field-guide-page .guide-summary__grid,
  body.field-guide-page .essential-tool-grid,
  body.field-guide-page .guide-priority-grid,
  body.field-guide-page .guide-check-grid,
  body.field-guide-page .guide-care-grid,
  body.field-guide-page .guide-zone-grid,
  body.field-guide-page .guide-process-visual,
  body.field-guide-page .guide-flow-map {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: .1in !important;
  }
  body.field-guide-page .essential-tool-card,
  body.field-guide-page .guide-priority-grid > *,
  body.field-guide-page .guide-check-grid > *,
  body.field-guide-page .guide-care-grid > *,
  body.field-guide-page .guide-zone-grid > *,
  body.field-guide-page .guide-process-step,
  body.field-guide-page .guide-flow-map > *,
  body.field-guide-page .guide-callout,
  body.field-guide-page .guide-note,
  body.field-guide-page .guide-safety {
    color: #111 !important;
    background: #fff !important;
    border: 1px solid #aeb4b8 !important;
    box-shadow: none !important;
    break-inside: avoid-page;
    page-break-inside: avoid;
  }

  body.field-guide-page figure,
  body.field-guide-page table,
  body.field-guide-page svg,
  body.field-guide-page img {
    break-inside: avoid-page;
    page-break-inside: avoid;
  }
  body.field-guide-page figure {
    max-width: 7.1in !important;
    margin: .14in auto !important;
    color: #111 !important;
    background: #fff !important;
    border: 1px solid #aeb4b8 !important;
    box-shadow: none !important;
  }
  body.field-guide-page img,
  body.field-guide-page svg {
    max-width: 100% !important;
    height: auto !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  body.field-guide-page table {
    width: 100% !important;
    font-size: 8.5pt !important;
    border-collapse: collapse !important;
  }
  body.field-guide-page th,
  body.field-guide-page td {
    padding: .06in !important;
    color: #111 !important;
    background: #fff !important;
    border: 1px solid #999 !important;
  }

  body.field-guide-page .seo-faq__heading > p { display: none !important; }
  body.field-guide-page .seo-faq__list { display: block !important; }
  body.field-guide-page .seo-faq__item {
    margin: 0 0 .08in !important;
    color: #111 !important;
    background: #fff !important;
    border: 1px solid #aaa !important;
    box-shadow: none !important;
    break-inside: avoid-page;
    page-break-inside: avoid;
  }
  body.field-guide-page .seo-faq__item > summary {
    min-height: 0 !important;
    padding: .08in .1in !important;
    color: #111 !important;
    background: #f1f1f1 !important;
    font-size: 10pt !important;
    list-style: none !important;
  }
  body.field-guide-page .seo-faq__item > summary::after { display: none !important; }
  body.field-guide-page .seo-faq__item:not([open]) > *:not(summary) { display: block !important; }
  body.field-guide-page .seo-faq__answer {
    display: block !important;
    padding: .02in .1in .08in !important;
    border-top: 1px solid #aaa !important;
  }
  body.field-guide-page .seo-faq__answer p { margin: .06in 0 0 !important; font-size: 9pt !important; }
}


/* V73: accurate Hand Tools overview-card destinations */
body.hand-tools-page .hand-tool-group-anchor {
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  scroll-margin-top: 150px;
}
body.hand-tools-page .hand-tool-group-anchor:target + .featured-tool,
body.hand-tools-page .hand-tool-group-overview:target {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft), var(--shadow-hover);
}
body.hand-tools-page .hand-tool-group-overviews {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  color: var(--text-primary);
  background: var(--bg-section);
  border-top: 1px solid var(--border);
}
body.hand-tools-page .hand-tool-group-overviews__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
body.hand-tools-page .hand-tool-group-overview {
  min-width: 0;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  scroll-margin-top: 150px;
  transition: border-color .16s ease, box-shadow .16s ease;
}
body.hand-tools-page .hand-tool-group-overview h3 {
  margin: .2rem 0 .55rem;
  color: var(--text-primary);
  font-size: 1.18rem;
}
body.hand-tools-page .hand-tool-group-overview > p:not(.eyebrow) {
  margin: 0;
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.65;
}
body.hand-tools-page .hand-tool-group-overview > span {
  display: block;
  margin-top: .8rem;
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 750;
}
@media (max-width: 1080px) {
  body.hand-tools-page .hand-tool-group-anchor,
  body.hand-tools-page .hand-tool-group-overview { scroll-margin-top: 142px; }
}
@media (max-width: 700px) {
  body.hand-tools-page .hand-tool-group-overviews__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body.hand-tools-page .hand-tool-group-anchor,
  body.hand-tools-page .hand-tool-group-overview { scroll-margin-top: 128px; }
}
@media (prefers-reduced-motion: reduce) {
  body.hand-tools-page .hand-tool-group-overview { transition: none; }
}


/* V74: direct article targets replace the ambiguous zero-height aliases */
body.hand-tools-page .featured-tool[id^="hand-tool-group-"] {
  scroll-margin-top: 150px;
}
body.hand-tools-page .featured-tool[id^="hand-tool-group-"]:target,
body.hand-tools-page .featured-tool:has(> .featured-tool__visual:target) {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft), var(--shadow-hover);
}
@media (max-width: 1080px) {
  body.hand-tools-page .featured-tool[id^="hand-tool-group-"] { scroll-margin-top: 142px; }
}
@media (max-width: 600px) {
  body.hand-tools-page .featured-tool[id^="hand-tool-group-"] { scroll-margin-top: 128px; }
}
