/* =========================================================
   Erbo Tactical — Holster Store Framework
   Structure modeled after Bravo Concealment
   Edit the color tokens below to re-brand the whole site.
   ========================================================= */

:root {
  /* Brand colors — change these to re-theme everything */
  --ink:        #14171a;   /* near-black, header/footer/text */
  --ink-2:      #1f242a;   /* dark panels */
  --paper:      #ffffff;   /* page background */
  --muted:      #6b7480;   /* secondary text */
  --line:       #e4e7eb;   /* borders */
  --accent:     #e8541b;   /* tactical orange — CTAs */
  --accent-2:   #c8430f;   /* accent hover */
  --ok:         #1f9d55;   /* in-stock / success */
  --star:       #f5a623;   /* review stars */

  /* Phase 2 — B2B Americas design tokens */
  --surface:    #f6f7f9;
  --surface-2:  #eef1f4;
  --focus:      #1a5cff;
  --header-h:   64px;
  --announce-h: 36px;
  --mobile-bar-h: 56px;
  --sticky-z:   80;

  --maxw: 1240px;
  --radius: 6px;
  --shadow: 0 2px 10px rgba(0,0,0,.08);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  --head: "Oswald", "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

h1,h2,h3 { font-family: var(--head); font-weight: 600; line-height: 1.1; letter-spacing: .2px; margin: 0 0 .5em; }
.section { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 34px; }
.section-head h2 { font-size: 30px; text-transform: uppercase; }
.section-head p { color: var(--muted); margin: 0; }
.eyebrow { color: var(--accent); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; cursor: pointer; border: 0;
  font-family: var(--head); text-transform: uppercase; letter-spacing: 1px;
  font-size: 14px; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius);
  transition: .15s ease; background: var(--accent); color: #fff;
}
.btn:hover { background: var(--accent-2); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid #fff; padding: 11px 26px; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Top inquiry / utility bar (injected) ---------- */
.topbar { background: var(--ink-2); color: #c4ccd4; font-size: 13px; border-bottom: 1px solid #2a3038; }
.topbar-row { display: flex; justify-content: space-between; align-items: center; height: 38px; gap: 16px; }
.topbar-contact { display: flex; gap: 20px; }
.topbar-contact a:hover { color: #fff; }
.topbar .tb-wa { color: #25d366; font-weight: 600; }
.topbar-cta { display: flex; align-items: center; gap: 16px; }
.topbar-cta span { color: #8b94a0; }
.topbar .tb-quote { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.topbar .tb-quote:hover { color: #fff; }
@media (max-width: 760px) {
  .topbar-contact a:not(.tb-wa), .topbar-cta span { display: none; }
  .topbar-row { justify-content: space-between; }
}

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed; bottom: 22px; left: 22px; z-index: 90;
  background: #25d366; color: #fff; border-radius: 50px;
  display: flex; align-items: center; gap: 0; padding: 0;
  height: 56px; width: 56px; overflow: hidden;
  box-shadow: 0 6px 20px rgba(37,211,102,.45); transition: width .25s ease;
}
.wa-float .wa-ic { min-width: 56px; height: 56px; display: grid; place-items: center; font-size: 28px; }
.wa-float .wa-label { white-space: nowrap; font-weight: 700; font-size: 15px; padding-right: 20px; opacity: 0; transition: opacity .2s; }
.wa-float:hover { width: 190px; }
.wa-float:hover .wa-label { opacity: 1; }
@media (max-width: 760px) { .wa-float { bottom: 16px; left: 16px; } }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink); color: #fff; text-align: center;
  font-size: 13px; letter-spacing: .3px; padding: 9px 12px;
}
.announce strong { color: var(--accent); }

/* ---------- Header ---------- */
.header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-row { display: flex; align-items: center; gap: 24px; height: 72px; }
.logo { font-family: var(--head); font-weight: 700; font-size: 24px; letter-spacing: 1px; text-transform: uppercase; display: inline-flex; align-items: center; line-height: 0; text-decoration: none; }
.logo span { color: var(--accent); }
.logo__img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 148px;
  object-fit: contain;
}
.nav { display: flex; gap: 26px; margin-left: 8px; }
.nav a { font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; padding: 6px 0; position: relative; }
.nav a:hover { color: var(--accent); }
.nav a.has-caret::after { content: "▾"; font-size: 10px; margin-left: 4px; color: var(--muted); }
.header-tools { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.icon-btn { background: none; border: 0; cursor: pointer; font-size: 20px; color: var(--ink); position: relative; display: flex; }
.cart-count {
  position: absolute; top: -8px; right: -10px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px;
  display: grid; place-items: center; padding: 0 4px;
}
.burger { display: none; background: none; border: 0; font-size: 24px; cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(rgba(10,12,14,.62), rgba(10,12,14,.72)),
              url("../img/hero.jpg") center/cover no-repeat, var(--ink-2);
  color: #fff; text-align: center; padding: 96px 20px;
}
.hero h1 { font-size: 52px; text-transform: uppercase; margin-bottom: 14px; }
.hero p { font-size: 18px; max-width: 620px; margin: 0 auto 28px; color: #d7dce1; }
.hero-search {
  max-width: 560px; margin: 0 auto; display: flex; background: #fff; border-radius: var(--radius); overflow: hidden;
}
.hero-search input { flex: 1; border: 0; padding: 16px 18px; font-size: 15px; outline: none; }
.hero-search .btn { border-radius: 0; }
.hero-actions { margin-top: 22px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Trust bar ---------- */
.trust { background: var(--ink); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 26px 0; }
.trust-item { display: flex; gap: 12px; align-items: center; justify-content: center; text-align: left; }
.trust-item .ic { font-size: 26px; color: var(--accent); }
.trust-item b { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
.trust-item small { color: #aab2bb; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4;
  background: var(--ink-2); display: flex; align-items: flex-end; color: #fff;
}
.cat-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .85; transition: .3s; }
.cat-card:hover img { transform: scale(1.06); }
.cat-card .cap { position: relative; padding: 22px; width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,.8)); }
.cat-card h3 { font-size: 22px; text-transform: uppercase; margin: 0 0 4px; }
.cat-card .cap span { color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Product grid / cards ---------- */
.grid-tools { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.product-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: #fff; display: flex; flex-direction: column; transition: .15s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card .thumb { position: relative; aspect-ratio: 1/1; background: #f3f5f7; }
.card .thumb img { height: 100%; object-fit: cover; }
.badge {
  position: absolute; top: 10px; left: 10px; background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  padding: 4px 9px; border-radius: 3px;
}
.badge.sale { background: var(--ink); }
.card .body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card .cat-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.card h3 { font-family: var(--font); font-size: 15px; font-weight: 700; margin: 0; line-height: 1.35; }
.stars { color: var(--star); font-size: 13px; letter-spacing: 1px; }
.stars small { color: var(--muted); margin-left: 4px; }
.price { font-family: var(--head); font-size: 20px; font-weight: 600; margin-top: auto; }
.price del { color: var(--muted); font-size: 15px; font-weight: 400; margin-right: 6px; }

/* ---------- Promo banner ---------- */
.promo {
  background: linear-gradient(rgba(10,12,14,.78), rgba(10,12,14,.82)),
              url("../img/promo.jpg") center/cover no-repeat, var(--ink-2);
  color: #fff; text-align: center; padding: 70px 20px; border-radius: var(--radius);
}
.promo h2 { font-size: 36px; text-transform: uppercase; }
.promo p { color: #d7dce1; max-width: 540px; margin: 0 auto 24px; }

/* ---------- Social proof ---------- */
.proof { background: #f7f8fa; }
.proof .big { font-family: var(--head); font-size: 40px; text-transform: uppercase; text-align: center; }
.proof .big span { color: var(--accent); }
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.review .stars { margin-bottom: 8px; }
.review p { margin: 0 0 14px; font-size: 15px; }
.review .who { font-weight: 700; font-size: 14px; }
.review .who small { display: block; color: var(--muted); font-weight: 400; }

/* ---------- Newsletter ---------- */
.news { background: var(--ink); color: #fff; text-align: center; }
.news h2 { font-size: 28px; text-transform: uppercase; }
.news p { color: #aab2bb; margin: 0 0 22px; }
.news form { max-width: 480px; margin: 0 auto; display: flex; gap: 10px; }
.news input { flex: 1; border: 0; padding: 14px 16px; border-radius: var(--radius); font-size: 15px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #c4ccd4; padding: 56px 0 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { color: #fff; font-family: var(--head); text-transform: uppercase; font-size: 15px; letter-spacing: 1px; margin: 0 0 16px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a:hover { color: var(--accent); }
.footer .logo { color: #fff; margin-bottom: 12px; background: #fff; border-radius: var(--radius); padding: 6px 10px; display: inline-block; }
.footer .logo__img { height: 36px; }
.footer .social { display: flex; gap: 14px; font-size: 20px; margin-top: 14px; }
.footer-bottom {
  border-top: 1px solid #2a3038; margin-top: 40px; padding: 18px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #8b94a0; font-size: 13px;
}

/* ---------- Breadcrumb ---------- */
.crumb { padding: 16px 0; color: var(--muted); font-size: 13px; }
.crumb a:hover { color: var(--accent); }

/* ---------- Shop layout (listing) ---------- */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 32px; align-items: start; }
.filters { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; position: sticky; top: 90px; }
.filter-group { padding: 14px 0; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border-bottom: 0; }
.filter-group h4 { font-family: var(--head); text-transform: uppercase; font-size: 14px; letter-spacing: .5px; margin: 0 0 12px; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: 14px; padding: 4px 0; cursor: pointer; color: #3a414a; }
.filter-group label:hover { color: var(--accent); }
.select { border: 1px solid var(--line); border-radius: var(--radius); padding: 9px 12px; font-size: 14px; background: #fff; }

/* ---------- Product page ---------- */
.pdp { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: start; padding-top: 8px; }
.gallery .main {
  aspect-ratio: 1/1; background: #f3f5f7; border-radius: var(--radius); overflow: hidden; margin-bottom: 12px;
}
.gallery .main img { height: 100%; object-fit: cover; }
.thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
.thumbs button { border: 2px solid var(--line); border-radius: var(--radius); overflow: hidden; padding: 0; cursor: pointer; background: #f3f5f7; aspect-ratio: 1/1; }
.thumbs button.active { border-color: var(--accent); }
.pdp h1 { font-size: 32px; text-transform: uppercase; }
.pdp .price { font-size: 30px; margin: 6px 0 14px; }
.pdp-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.in-stock { color: var(--ok); font-weight: 700; font-size: 14px; }
.opt { margin-bottom: 20px; }
.opt > label { display: block; font-family: var(--head); text-transform: uppercase; font-size: 13px; letter-spacing: .5px; margin-bottom: 8px; }
.opt > label b { color: var(--accent); }
.swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.swatch {
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 9px 14px; font-size: 13px;
  cursor: pointer; background: #fff; font-weight: 600; transition: .12s;
}
.swatch:hover { border-color: var(--ink); }
.swatch.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.qty-row { display: flex; gap: 12px; align-items: stretch; margin: 24px 0 16px; }
.qty { display: flex; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.qty button { width: 42px; border: 0; background: #f3f5f7; font-size: 18px; cursor: pointer; }
.qty input { width: 50px; border: 0; text-align: center; font-size: 16px; }
.pdp-trust { display: grid; gap: 10px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.pdp-trust div { display: flex; gap: 10px; align-items: center; font-size: 14px; color: #3a414a; }
.pdp-trust .ic { color: var(--accent); font-size: 18px; }

/* ---------- Tabs ---------- */
.tabs { margin-top: 50px; }
.tab-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--line); }
.tab-nav button {
  border: 0; background: none; padding: 14px 22px; font-family: var(--head); text-transform: uppercase;
  font-size: 15px; letter-spacing: .5px; cursor: pointer; color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -2px;
}
.tab-nav button.active { color: var(--ink); border-color: var(--accent); }
.tab-panel { display: none; padding: 26px 0; max-width: 820px; }
.tab-panel.active { display: block; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: 11px 14px; border-bottom: 1px solid var(--line); font-size: 14px; }
.spec-table th { background: #f7f8fa; width: 200px; font-family: var(--head); text-transform: uppercase; letter-spacing: .5px; }

/* ===================================================
   B2B / OEM manufacturer styles
   =================================================== */

/* Quote button in header */
.btn-quote {
  background: var(--accent); color: #fff; font-family: var(--head); text-transform: uppercase;
  letter-spacing: .5px; font-size: 13px; font-weight: 600; padding: 11px 20px; border-radius: var(--radius);
  border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.btn-quote:hover { background: var(--accent-2); }
.btn-quote .quote-count {
  background: #fff; color: var(--accent); min-width: 20px; height: 20px; border-radius: 10px;
  font-size: 12px; display: grid; place-items: center; padding: 0 5px;
}

/* MOQ + unit price on cards */
.card .moq { font-size: 12px; color: var(--muted); letter-spacing: .3px; }
.card .price span { font-size: 13px; color: var(--muted); font-weight: 400; }
.card .body .btn { margin-top: 6px; }

/* Stats / capacity bar */
.stats { background: var(--ink); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 38px 0; text-align: center; }
.stat .num { font-family: var(--head); font-size: 40px; font-weight: 700; color: var(--accent); line-height: 1; }
.stat small { display: block; color: #aab2bb; margin-top: 6px; text-transform: uppercase; letter-spacing: .5px; font-size: 12px; }

/* Capabilities grid */
.cap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cap-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: .15s; }
.cap-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cap-card .ic { font-size: 30px; color: var(--accent); }
.cap-card h3 { font-family: var(--font); font-size: 17px; font-weight: 700; margin: 12px 0 8px; }
.cap-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* Two-column feature (image + text) */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.feature.rev .feat-media { order: 2; }
.feat-media { aspect-ratio: 4/3; background: var(--ink-2); border-radius: var(--radius); overflow: hidden; }
.feat-media img { height: 100%; object-fit: cover; }
.feature ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.feature ul li { padding-left: 28px; position: relative; font-size: 15px; }
.feature ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Process steps */
.process { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.step { text-align: center; position: relative; }
.step .n { width: 54px; height: 54px; margin: 0 auto 12px; border-radius: 50%; background: var(--ink); color: #fff;
  font-family: var(--head); font-size: 22px; font-weight: 700; display: grid; place-items: center; }
.step h4 { font-family: var(--font); font-size: 14px; font-weight: 700; margin: 0 0 4px; }
.step p { font-size: 12px; color: var(--muted); margin: 0; }
.step:not(:last-child)::after { content: "→"; position: absolute; top: 18px; right: -10px; color: var(--line); font-size: 20px; }

/* Industries served */
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.ind { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; text-align: center; }
.ind .ic { font-size: 28px; color: var(--accent); }
.ind b { display: block; margin-top: 10px; font-size: 15px; }

/* Pricing tier table (product page) */
.tier-table { width: 100%; border-collapse: collapse; margin: 8px 0 4px; }
.tier-table th, .tier-table td { border: 1px solid var(--line); padding: 10px 12px; font-size: 14px; text-align: center; }
.tier-table th { background: var(--ink); color: #fff; font-family: var(--head); text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
.tier-table td:first-child { font-weight: 600; }
.tier-note { font-size: 12px; color: var(--muted); margin: 6px 0 0; }

/* OEM badge row */
.oem-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.oem-tag { background: #f3f5f7; border: 1px solid var(--line); border-radius: 20px; padding: 6px 14px; font-size: 13px; font-weight: 600; }

/* CTA band */
.cta-band { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; text-align: center; padding: 56px 20px; border-radius: var(--radius); }
.cta-band h2 { font-size: 32px; text-transform: uppercase; }
.cta-band p { max-width: 560px; margin: 0 auto 24px; opacity: .95; }
.cta-band .btn { background: #fff; color: var(--accent); }
.cta-band .btn:hover { background: var(--ink); color: #fff; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq-item summary { font-family: var(--head); text-transform: uppercase; font-size: 16px; letter-spacing: .3px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-size: 22px; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { color: var(--muted); margin: 14px 0 0; max-width: 760px; }

/* ---------- About / factory page ---------- */
.page-hero {
  background: linear-gradient(rgba(10,12,14,.7), rgba(10,12,14,.78)),
              url("../img/factory.jpg?v=3") center/cover no-repeat, var(--ink-2);
  color: #fff; text-align: center; padding: 70px 20px;
}
.page-hero h1 { font-size: 42px; text-transform: uppercase; }
.page-hero p { max-width: 640px; margin: 12px auto 0; color: #d7dce1; }

.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gallery-grid figure { margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--ink-2); position: relative; }
.gallery-grid img { height: 100%; object-fit: cover; transition: .3s; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.8)); color: #fff;
  font-family: var(--head); text-transform: uppercase; font-size: 14px; letter-spacing: .5px;
}

.cert-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cert { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; text-align: center; }
.cert .ic { font-size: 32px; color: var(--accent); }
.cert b { display: block; margin-top: 10px; }
.cert small { color: var(--muted); }

.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.member { text-align: center; }
.member .avatar { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; background: var(--ink-2); margin-bottom: 12px; }
.member .avatar img { height: 100%; object-fit: cover; }
.member b { display: block; }
.member small { color: var(--muted); }

@media (max-width: 1000px) {
  .gallery-grid, .cert-row, .team-grid { grid-template-columns: repeat(2,1fr); }
}

/* ---------- Blog ---------- */
.blog-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: .15s; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.post-card .thumb { aspect-ratio: 16/9; background: var(--ink-2); }
.post-card .thumb img { height: 100%; object-fit: cover; }
.post-card .body { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.post-card .tag { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.post-card h3 { font-family: var(--font); font-size: 17px; font-weight: 700; margin: 0; line-height: 1.35; }
.post-card p { color: var(--muted); font-size: 14px; margin: 0; }
.post-card .more { color: var(--accent); font-weight: 600; font-size: 14px; margin-top: auto; }

.article { max-width: 760px; margin: 0 auto; }
.article .meta { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.article h1 { font-size: 38px; text-transform: none; line-height: 1.15; margin-bottom: 14px; }
.article h2 { font-size: 26px; text-transform: none; margin: 38px 0 14px; }
.article h3 { font-size: 19px; font-family: var(--font); margin: 26px 0 10px; }
.article p { margin: 0 0 16px; font-size: 16.5px; line-height: 1.75; }
.article ul, .article ol { margin: 0 0 18px; padding-left: 22px; line-height: 1.8; }
.article li { margin-bottom: 6px; }
.article .lead { font-size: 19px; color: #3a414a; }
.article .callout { background: #fff6f1; border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; margin: 24px 0; }
.article .takeaways { background: #f7f8fa; border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 26px 0; }
.article .takeaways h2 { font-family: var(--head); text-transform: uppercase; font-size: 16px; letter-spacing: .5px; color: var(--accent); margin: 0 0 12px; }
.article .takeaways ul { margin: 0; padding-left: 20px; }
.article .takeaways li { margin-bottom: 8px; font-size: 15.5px; }
.article .updated { display: inline-block; background: #eef1f4; color: var(--muted); font-size: 12px; padding: 3px 10px; border-radius: 20px; margin-left: 8px; }
.post-card .meta-row { display: flex; gap: 10px; align-items: center; font-size: 12px; color: var(--muted); }
.post-card .meta-row .cat { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.article .callout b { color: var(--accent); }
.article table { width: 100%; border-collapse: collapse; margin: 18px 0; }
.article th, .article td { border: 1px solid var(--line); padding: 10px 12px; font-size: 14.5px; text-align: left; }
.article th { background: #f7f8fa; font-family: var(--head); text-transform: uppercase; letter-spacing: .5px; font-size: 13px; }
.article .toc { background: #f7f8fa; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin: 24px 0; }
.article .toc h4 { font-family: var(--head); text-transform: uppercase; font-size: 14px; margin: 0 0 10px; }
.article .toc ol { margin: 0; }
.article .toc a:hover { color: var(--accent); }

/* RFQ submit status message */
.form-status { font-size: 14px; margin-top: 12px; padding: 0; }
.form-status:empty { display: none; }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--accent-2); }

/* ---------- Quote (RFQ) page ---------- */
.quote-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; padding: 8px 0 70px; }
.q-items { border-top: 1px solid var(--line); }
.q-row { display: grid; grid-template-columns: 80px 1fr auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.q-thumb { width: 80px; aspect-ratio: 1/1; background: #f3f5f7; border-radius: var(--radius); overflow: hidden; }
.q-thumb img { height: 100%; object-fit: cover; }
.q-info { display: flex; flex-direction: column; gap: 3px; }
.q-info b { font-size: 15px; }
.q-info small { color: var(--muted); font-size: 12px; }
.q-qty label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 4px; }
.q-empty { text-align: center; padding: 50px 0; color: var(--muted); }
.rfq-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: #f7f8fa; }
.rfq-card h3 { font-family: var(--head); text-transform: uppercase; font-size: 20px; letter-spacing: .5px; margin-bottom: 6px; }
.rfq-card > p { color: var(--muted); font-size: 14px; margin: 0 0 18px; }
.rfq-card .field-grid { margin-top: 0; }
.rfq-card textarea { border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 13px; font-size: 14px; font-family: var(--font); min-height: 90px; resize: vertical; }
.rfq-card textarea:focus, .rfq-card input:focus, .rfq-card select:focus { outline: 2px solid var(--accent); border-color: var(--accent); }

@media (max-width: 1000px) {
  .cap-grid { grid-template-columns: 1fr; }
  .stats-grid, .ind-grid { grid-template-columns: repeat(2,1fr); }
  .process { grid-template-columns: repeat(3,1fr); row-gap: 28px; }
  .step::after { display: none; }
  .feature, .feature.rev { grid-template-columns: 1fr; }
  .feature.rev .feat-media { order: 0; }
  .quote-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .process { grid-template-columns: repeat(2,1fr); } }

/* ---------- Cart page ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 36px; align-items: start; padding: 8px 0 70px; }
.cart-items { border-top: 1px solid var(--line); }
.cart-row { display: grid; grid-template-columns: 90px 1fr auto auto; gap: 18px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { width: 90px; aspect-ratio: 1/1; background: #f3f5f7; border-radius: var(--radius); overflow: hidden; }
.cart-thumb img { height: 100%; object-fit: cover; }
.cart-info { display: flex; flex-direction: column; gap: 4px; }
.cart-info b { font-size: 15px; }
.cart-info small { color: var(--muted); font-size: 13px; }
.cart-remove { align-self: flex-start; background: none; border: 0; color: var(--muted); cursor: pointer; font-size: 13px; padding: 2px 0; text-decoration: underline; }
.cart-remove:hover { color: var(--accent); }
.cart-line-price { font-family: var(--head); font-size: 18px; font-weight: 600; min-width: 80px; text-align: right; }
.cart-empty { text-align: center; padding: 70px 0; }
.cart-empty .ic { font-size: 54px; color: var(--line); }
.cart-empty h2 { font-size: 24px; text-transform: uppercase; margin-top: 12px; }
.cart-empty p { color: var(--muted); margin-bottom: 22px; }

/* ---------- Order summary card ---------- */
.summary { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: 90px; }
.summary h3 { font-family: var(--head); text-transform: uppercase; font-size: 18px; letter-spacing: .5px; }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 15px; }
.summary-row.total { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-family: var(--head); font-size: 22px; font-weight: 600; }
.summary .ship-note { color: var(--accent); font-size: 13px; font-weight: 600; margin: 4px 0 12px; }
.summary .btn { margin-top: 14px; }
.summary .secure { text-align: center; color: var(--muted); font-size: 12px; margin-top: 14px; }
.code-row { display: flex; gap: 8px; margin: 14px 0; }
.code-row input { flex: 1; border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 12px; font-size: 14px; }

/* ---------- Checkout page ---------- */
.checkout-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: start; padding: 8px 0 70px; }
.co-step { margin-bottom: 30px; }
.co-step h3 { font-family: var(--head); text-transform: uppercase; font-size: 18px; letter-spacing: .5px; display: flex; align-items: center; gap: 10px; }
.co-step h3 .num { background: var(--accent); color: #fff; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: #3a414a; }
.field input, .field select { border: 1px solid var(--line); border-radius: var(--radius); padding: 11px 13px; font-size: 14px; font-family: var(--font); }
.field input:focus, .field select:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.ship-method { border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 12px; margin-top: 12px; cursor: pointer; }
.ship-method input { accent-color: var(--accent); }
.ship-method .price { margin-left: auto; font-size: 16px; }
.pay-note { background: #fff6f1; border: 1px solid #f6d2c0; border-radius: var(--radius); padding: 14px 16px; font-size: 13px; color: #8a3d1a; margin-top: 12px; }
.co-items { border-bottom: 1px solid var(--line); margin-bottom: 14px; }
.co-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; }
.co-thumb { position: relative; width: 56px; aspect-ratio: 1/1; background: #f3f5f7; border-radius: var(--radius); overflow: hidden; }
.co-thumb img { height: 100%; object-fit: cover; }
.co-badge { position: absolute; top: -8px; right: -8px; background: var(--muted); color: #fff; font-size: 11px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; }
.co-name b { font-size: 14px; display: block; }
.co-name small { color: var(--muted); font-size: 12px; }
.co-price { font-family: var(--head); font-weight: 600; }

@media (max-width: 1000px) {
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
}
@media (max-width: 480px) { .field-grid { grid-template-columns: 1fr; } }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--ink); color: #fff;
  padding: 14px 20px; border-radius: var(--radius); box-shadow: 0 6px 24px rgba(0,0,0,.25);
  transform: translateY(120%); transition: .3s; z-index: 100; font-size: 14px;
}
.toast.show { transform: translateY(0); }
.toast b { color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .product-grid, .cat-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .reviews { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
}
@media (max-width: 760px) {
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff;
    flex-direction: column; padding: 14px 20px; border-bottom: 1px solid var(--line); gap: 4px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; border-bottom: 1px solid var(--line); }
  .burger { display: block; }
  .hero h1 { font-size: 34px; }
  .section-head h2 { font-size: 24px; }
}
@media (max-width: 480px) {
  .product-grid, .cat-grid, .footer-grid { grid-template-columns: 1fr; }
  .news form, .hero-search { flex-direction: column; }
  .hero-search .btn { border-radius: var(--radius); }
}
/* ---------- Phase 2: B2B chrome (header / lang / mobile bar) ---------- */
.announce--soft {
  display: block;
  background: var(--ink-2);
  color: #c4ccd4;
  font-size: 13px;
  text-align: center;
  padding: 8px 12px;
  border-bottom: 1px solid #2a3038;
  text-decoration: none;
  line-height: 1.35;
  transition: color .15s ease, background-color .15s ease;
}
.announce--soft:hover,
.announce--soft:focus-visible {
  color: #fff;
  background: #1c2128;
  outline: none;
}
.announce--soft:focus-visible {
  box-shadow: inset 0 0 0 2px var(--accent);
}
.announce__cta {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.announce--soft:hover .announce__cta,
.announce--soft:focus-visible .announce__cta {
  color: var(--accent);
}
.announce__short { display: none; }
@media (max-width: 760px) {
  .announce__full { display: none; }
  .announce__short { display: inline; }
  .announce--soft { font-size: 12px; padding: 8px 10px; }
}
.sticky-header {
  position: sticky;
  top: 0;
  z-index: var(--sticky-z);
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
  overflow: visible;
}
.header--b2b {
  overflow: visible;
}
.header--b2b .header-row {
  position: relative;
  gap: 10px 16px;
  flex-wrap: nowrap;
  overflow: visible;
}
.header--b2b .header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: auto;
}
.header--b2b .logo {
  flex-shrink: 0;
}
.header--b2b .logo__img {
  height: 38px;
  max-width: 132px;
}
.header--b2b .btn-quote {
  white-space: nowrap;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}
.lang-switch__btn { color: var(--muted); padding: 4px 2px; }
.lang-switch__btn:hover,
.lang-switch__btn.is-active { color: var(--ink); }
.lang-switch__btn.is-active { text-decoration: underline; text-underline-offset: 3px; }
.lang-switch__sep { color: var(--line); }
.nav--b2b {
  display: flex;
  align-items: center;
  gap: 2px 12px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}
.nav--b2b .nav-link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35px;
  padding: 10px 0;
  white-space: nowrap;
}
.nav-item[data-nav-item="grips"] .nav-link,
.nav-item[data-nav-item="holsters"] .nav-link,
.nav-item[data-nav-item="accessories"] .nav-link {
  white-space: normal;
  text-align: center;
  line-height: 1.15;
  max-width: 7.5em;
}
.nav--b2b .nav-link:hover,
.nav--b2b .nav-link:focus-visible { color: var(--accent); outline: none; }
.nav-item.has-mega { position: relative; }
.nav-item__trigger {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.nav-mega__toggle {
  appearance: none;
  border: 0;
  background: transparent;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  border-radius: 4px;
}
.nav-mega__toggle span {
  display: block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform .15s ease;
}
.nav-item.is-open .nav-mega__toggle span { transform: rotate(180deg); }
.nav-mega__toggle:hover,
.nav-mega__toggle:focus-visible { color: var(--accent); outline: 2px solid var(--accent); outline-offset: 1px; }
.nav-mega-wrap {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  transform: none;
  z-index: 120;
  padding-top: 8px;
}
/* Wide card megas: anchor to header row so the panel stays in viewport */
.nav-item[data-nav-item="grips"],
.nav-item[data-nav-item="holsters"],
.nav-item[data-nav-item="accessories"] {
  position: relative;
}
.nav-item[data-nav-item="grips"] .nav-mega-wrap,
.nav-item[data-nav-item="holsters"] .nav-mega-wrap,
.nav-item[data-nav-item="accessories"] .nav-mega-wrap {
  left: 0;
  right: auto;
  transform: none;
  width: auto;
}
/* Desktop: hover / focus / click-open all show the mega */
@media (min-width: 1024px) {
  .nav-item.has-mega:hover > .nav-mega-wrap,
  .nav-item.has-mega:focus-within > .nav-mega-wrap,
  .nav-item.has-mega.is-open > .nav-mega-wrap {
    display: block;
  }
}
@media (max-width: 1023px) {
  .nav-item.has-mega.is-open > .nav-mega-wrap {
    display: block;
  }
}
.nav-mega {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(20, 23, 26, 0.1);
  padding: 14px;
}
.nav-mega--list,
.nav-mega--flyout {
  display: grid;
  gap: 0;
  min-width: 230px;
  max-width: 280px;
  padding: 12px 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(20, 23, 26, 0.1);
}
.nav-mega--flyout .nav-mega__title {
  display: none;
}
.nav-mega--list .nav-mega__link,
.nav-mega--flyout .nav-mega__link {
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 0;
  line-height: 1.35;
}
.nav-mega--list .nav-mega__link:hover,
.nav-mega--list .nav-mega__link:focus-visible,
.nav-mega--flyout .nav-mega__link:hover,
.nav-mega--flyout .nav-mega__link:focus-visible {
  background: var(--surface);
  color: var(--accent);
  outline: none;
}
.nav-item[data-nav-item="holsters"] .nav-mega-wrap,
.nav-item[data-nav-item="accessories"] .nav-mega-wrap {
  width: auto;
}
.nav-mega--cards {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  box-sizing: border-box;
}
.nav-mega--cards[data-cols="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.nav-mega--cards[data-cols="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nav-mega--cards[data-cols="6"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.nav-mega__link {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  color: var(--ink);
  border-radius: 4px;
}
.nav-mega__link:hover,
.nav-mega__link:focus-visible { background: var(--surface); color: var(--accent); outline: none; }
.nav-mega__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.nav-mega__card:hover,
.nav-mega__card:focus-visible {
  border-color: var(--line);
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  outline: none;
  color: var(--accent);
}
.nav-mega__media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: #f3f5f7;
  overflow: hidden;
}
.nav-mega__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.nav-mega__card-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0 2px 4px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.footer-disclaimer {
  font-size: 12px;
  color: #8b94a0;
  line-height: 1.45;
  margin-top: 12px;
}
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: var(--mobile-bar-h);
  background: var(--ink);
  color: #fff;
  z-index: var(--sticky-z);
  border-top: 1px solid #2a3038;
  grid-template-columns: repeat(3, 1fr);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #c4ccd4;
}
.mobile-bar a:hover { color: #fff; }
.page-draft {
  max-width: 720px;
  margin: 48px auto;
  padding: 0 20px 80px;
}
.page-draft.page-landing {
  max-width: 1100px;
}
.page-draft.page-landing .blog-list {
  margin-top: 28px;
}
@media (max-width: 900px) {
  .page-draft.page-landing .blog-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .page-draft.page-landing .blog-list { grid-template-columns: 1fr; }
}
/* Brand / specialty product landings (B2B wholesale template) */
.pl-bc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--muted);
}
.pl-bc a {
  color: var(--muted);
  text-decoration: none;
}
.pl-bc a:hover,
.pl-bc a:focus-visible {
  color: var(--accent);
  outline: none;
}
.pl-bc__sep { opacity: 0.5; }
.pl-answer {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 14px;
  max-width: 62ch;
}
.pl-disclaimer {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 8px;
  max-width: 62ch;
}
.pl-note {
  font-size: 13px;
  color: var(--muted);
  margin: 10px 0 0;
}
.pl-section {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.pl-section--tight {
  margin-top: 24px;
  padding-top: 0;
  border-top: 0;
}
.pl-section h2 {
  font-family: Oswald, Impact, sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
  color: var(--ink);
}
.pl-list {
  margin: 0;
  padding-left: 1.15em;
  max-width: 62ch;
}
.pl-list li { margin: 0.35em 0; }
.pl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pl-chips li {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 12px;
}
.pl-table-wrap {
  overflow-x: auto;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.pl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pl-table th,
.pl-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.pl-table th {
  background: var(--surface);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.pl-table tr:last-child td { border-bottom: 0; }
.pl-table a { color: var(--accent); font-weight: 600; text-decoration: none; }
.pl-table a:hover { text-decoration: underline; }
.pl-order {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
}
.pl-order > div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 12px;
}
.pl-order dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 6px;
}
.pl-order dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink);
}
.pl-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 18px;
  counter-reset: none;
}
.pl-steps li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 0;
  border-top: 2px solid var(--accent);
}
.pl-steps__n {
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 600;
}
.pl-steps strong { color: var(--ink); font-size: 15px; }
.pl-steps span:last-child {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.pl-faq { margin: 0; }
.pl-faq__item {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.pl-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 0;
  list-style: none;
  color: var(--ink);
}
.pl-faq__item summary::-webkit-details-marker { display: none; }
.pl-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}
.pl-faq__item[open] summary::after { content: "–"; }
.pl-faq__item p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 62ch;
  font-size: 15px;
}
.pl-related {
  margin: 28px 0 0;
  font-size: 14px;
}
.pl-related a { color: var(--ink); font-weight: 600; }
.pl-related a:hover { color: var(--accent); }
.pl-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 40px 0 8px;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--ink) 0%, #2a323a 100%);
  color: #fff;
  border-radius: var(--radius);
}
.pl-cta h2 {
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.4rem;
  margin: 0 0 8px;
  color: #fff;
}
.pl-cta p {
  margin: 0;
  color: #c4ccd4;
  max-width: 48ch;
  font-size: 14px;
  line-height: 1.45;
}
.pl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pl-cta .btn-ghost {
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.pl-cta .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}
@media (max-width: 900px) {
  .pl-order { grid-template-columns: repeat(2, 1fr); }
  .pl-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pl-order { grid-template-columns: 1fr; }
  .pl-steps { grid-template-columns: 1fr; }
  .pl-cta { padding: 22px 18px; }
}

.page-landing__cta { margin-top: 28px; }

/* Brand landing: 4×4 product image grid */
.landing-shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0 8px;
}
.landing-shots__item {
  margin: 0;
  overflow: hidden;
  background: var(--surface-2);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.landing-shots__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.landing-shots__item:hover img {
  transform: scale(1.05);
}
.landing-shots--named {
  margin-top: 12px;
}
.landing-shots__card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  transition: transform 0.2s ease;
}
.landing-shots__card:hover,
.landing-shots__card:focus-visible {
  outline: none;
}
.landing-shots__card:hover .landing-shots__item,
.landing-shots__card:focus-visible .landing-shots__item {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.landing-shots--named .landing-shots__item {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.landing-shots--named .landing-shots__item img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
}
.landing-shots__name {
  display: block;
  margin: 0;
  padding: 10px 10px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  background: #fff;
  border-top: 1px solid var(--line);
  text-align: center;
}
.landing-shots__card:hover .landing-shots__name {
  color: var(--accent);
}
.pl-sku {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
  margin: 8px 0 8px;
}
.pl-sku__media {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-2);
}
.pl-sku__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.pl-sku__copy .pl-answer { margin-top: 0; }
@media (max-width: 900px) {
  .landing-shots { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pl-sku { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 480px) {
  .landing-shots { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .landing-shots__name { font-size: 12px; padding: 8px 6px 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .landing-shots__item img { transition: none; }
  .landing-shots__card { transition: none; }
}

/* About hub: each topic = left copy + right linked image */
.about-split {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0 8px;
}
.about-split__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.85fr);
  gap: 24px 36px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.about-split__row:first-child { padding-top: 0; }
.about-split__row:last-child { border-bottom: 0; }
.about-split__copy { min-width: 0; }
.about-split__label {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 8px;
}
.about-split__label:hover,
.about-split__label:focus-visible {
  color: var(--accent);
  outline: none;
}
.about-split__blurb {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 42em;
}
.about-split__media {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.about-split__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-split__media:hover,
.about-split__media:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  outline: none;
}
@media (max-width: 800px) {
  .about-split__row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Product hub: one horizontal row per category (name | img img img img) */
.cat-rows {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 36px 0 12px;
  clear: both;
}
.cat-rows__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  box-sizing: border-box;
}
.cat-rows__row:last-child { border-bottom: 0; }
.cat-rows__name {
  flex: 0 0 200px;
  width: 200px;
  max-width: 200px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  text-decoration: none;
}
.cat-rows__name:hover,
.cat-rows__name:focus-visible {
  color: var(--accent);
  outline: none;
}
.cat-rows__shots {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  gap: 10px;
  min-width: 0;
}
.cat-rows__shot {
  display: block;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 6px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cat-rows__shot img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}
.cat-rows__shot:hover,
.cat-rows__shot:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  outline: none;
}
.cat-rows--single .cat-rows__name {
  flex: 0 0 260px;
  width: 260px;
  max-width: 260px;
}
.cat-rows--single .cat-rows__shots {
  justify-content: flex-start;
}
.cat-rows--single .cat-rows__shot {
  flex: 0 1 320px;
  max-width: 360px;
  width: 100%;
}
@media (max-width: 800px) {
  .cat-rows__row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cat-rows__name {
    flex: none;
    width: auto;
    max-width: none;
  }
  .cat-rows--single .cat-rows__name {
    width: auto;
    max-width: none;
  }
  .cat-rows--single .cat-rows__shot {
    max-width: none;
    flex: 1 1 auto;
  }
}
.page-draft .badge-draft {
  display: inline-block;
  background: var(--surface-2);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}
body.nav-drawer-open { overflow: hidden; }

/* Compact desktop (keep Blog visible; shrink spacing before drawer) */
@media (max-width: 1280px) {
  .header--b2b .logo { font-size: 22px; }
  .nav--b2b { gap: 0 6px; }
  .nav--b2b .nav-link { font-size: 11px; letter-spacing: 0.15px; }
  .header--b2b .btn-quote { font-size: 11px; padding: 7px 10px; }
  .header--b2b .header-tools { gap: 6px; }
  .lang-switch { font-size: 11px; }
}
@media (max-width: 1100px) {
  .header--b2b .container.header-row { padding-left: 12px; padding-right: 12px; }
  .header--b2b .logo { font-size: 20px; letter-spacing: 0; }
  .nav--b2b { gap: 0 4px; justify-content: flex-start; }
  .nav--b2b .nav-link { font-size: 10px; letter-spacing: 0; padding: 8px 0; }
  .nav-mega__toggle { width: 20px; height: 20px; }
  .header--b2b .btn-quote { font-size: 10px; padding: 6px 8px; }
  .header--b2b .quote-count { min-width: 16px; height: 16px; font-size: 10px; }
}

/* Drawer below 1024 — Blog stays in same order inside drawer */
@media (max-width: 1023px) {
  .header--b2b .burger { display: inline-flex; }
  .nav--b2b { display: none; }
  .nav--b2b.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 8px 16px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 85;
    max-height: min(80vh, 640px);
    overflow: auto;
    gap: 0;
  }
  .nav--b2b.open > .nav-link,
  .nav--b2b.open .nav-item {
    border-bottom: 1px solid var(--line);
  }
  .nav--b2b.open > .nav-link {
    padding: 14px 4px;
    font-size: 14px;
  }
  .nav--b2b.open .nav-item__trigger {
    width: 100%;
    justify-content: space-between;
  }
  .nav--b2b.open .nav-item__trigger .nav-link {
    padding: 14px 4px;
    font-size: 14px;
  }
  .nav-mega-wrap {
    position: static;
    transform: none;
    padding: 0 0 12px;
    left: auto;
  }
  .nav-mega {
    border: 0;
    box-shadow: none;
    padding: 4px 0 0 8px;
    background: transparent;
  }
  .nav-mega--cards,
  .nav-mega--cards[data-cols="3"],
  .nav-mega--cards[data-cols="4"],
  .nav-mega--cards[data-cols="6"] {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .nav-mega--list { min-width: 0; }
  .header--b2b .header-tools .btn-quote {
    font-size: 12px;
    padding: 8px 10px;
  }
  .nav--b2b.open .nav-drawer-cta {
    display: flex;
    margin-top: 16px;
    justify-content: center;
    text-align: center;
  }
}
.nav-drawer-cta { display: none; }
@media (min-width: 1024px) {
  .header--b2b .burger { display: none; }
}
@media (max-width: 760px) {
  .mobile-bar { display: grid; }
  body.has-mobile-bar { padding-bottom: calc(var(--mobile-bar-h) + 12px); }
  .wa-float { bottom: calc(var(--mobile-bar-h) + 16px); }
  .header--b2b .lang-switch { font-size: 11px; }
}

/* ---------- Phase 3: Americas homepage ---------- */
.hero--b2b {
  background:
    linear-gradient(105deg, rgba(20,23,26,.88) 0%, rgba(20,23,26,.55) 55%, rgba(20,23,26,.35) 100%),
    url("/assets/img/hero.jpg") center/cover no-repeat;
  color: #fff;
  padding: 72px 0 64px;
  text-align: left;
}
.hero--b2b__inner { max-width: 760px; }
.hero--b2b h1 {
  font-size: clamp(32px, 5vw, 48px);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 16px;
}
.hero-lead { font-size: 18px; color: #d7dce1; margin: 0 0 24px; max-width: 640px; }
.hero--b2b .hero-actions { justify-content: flex-start; }
.trust-strip {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 0;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #c4ccd4;
}
.trust-strip li {
  border: 1px solid rgba(255,255,255,.25);
  padding: 6px 12px;
  border-radius: var(--radius);
}
.pillar-grid, .mode-grid, .buyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar-card, .mode-card, .buyer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  color: inherit;
  display: block;
}
.pillar-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.pillar-card h3, .mode-card h3, .buyer-card h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin: 16px 18px 8px;
}
.pillar-card p, .mode-card p, .buyer-card p {
  color: var(--muted);
  margin: 0 18px 12px;
  font-size: 15px;
}
.pillar-cta {
  display: inline-block;
  margin: 0 18px 18px;
  color: var(--accent);
  font-weight: 700;
}

/* Home product capabilities — expanded bands */
.cap-bands {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 8px;
}
.cap-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.6fr);
  gap: 28px 40px;
  align-items: center;
  padding: 8px 0 40px;
  border-bottom: 1px solid var(--line);
}
.cap-band:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.cap-band__copy {
  position: relative;
  padding-left: 18px;
  min-width: 0;
}
.cap-band__copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
}
.cap-band__eyebrow,
.cap-band__title,
.cap-band__blurb,
.cap-band__cta {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease;
}
html.cap-motion .cap-band:not(.is-in) .cap-band__eyebrow,
html.cap-motion .cap-band:not(.is-in) .cap-band__title,
html.cap-motion .cap-band:not(.is-in) .cap-band__blurb,
html.cap-motion .cap-band:not(.is-in) .cap-band__cta {
  opacity: 0;
  transform: translate3d(-22px, 10px, 0);
}
.cap-band__eyebrow { transition-delay: 0.05s; margin-bottom: 8px; }
.cap-band__title {
  font-size: clamp(26px, 3.2vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
  line-height: 1.15;
  transition-delay: 0.14s;
}
.cap-band__blurb {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 34em;
  transition-delay: 0.24s;
}
.cap-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition-delay: 0.34s;
}
.cap-band__cta:hover,
.cap-band__cta:focus-visible {
  border-bottom-color: var(--accent);
  outline: none;
}
.cap-band.is-in .cap-band__copy::before { transform: scaleY(1); }
.cap-band.is-in .cap-band__eyebrow,
.cap-band.is-in .cap-band__title,
.cap-band.is-in .cap-band__blurb,
.cap-band.is-in .cap-band__cta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.cap-band:hover .cap-band__title { color: var(--accent); }

.cap-band__grid {
  display: grid;
  gap: 10px;
  min-width: 0;
}
.cap-band__grid--grips {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.cap-band__grid--holsters {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.cap-band__grid--accessories {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cap-band__shot {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  opacity: 1;
  transform: none;
  transition:
    opacity 0.45s ease,
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
html.cap-motion .cap-band:not(.is-in) .cap-band__shot {
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.96);
}
.cap-band__shot:nth-child(1) { transition-delay: 0.08s; }
.cap-band__shot:nth-child(2) { transition-delay: 0.12s; }
.cap-band__shot:nth-child(3) { transition-delay: 0.16s; }
.cap-band__shot:nth-child(4) { transition-delay: 0.2s; }
.cap-band__shot:nth-child(5) { transition-delay: 0.24s; }
.cap-band__shot:nth-child(6) { transition-delay: 0.28s; }
.cap-band__shot:nth-child(7) { transition-delay: 0.32s; }
.cap-band__shot:nth-child(8) { transition-delay: 0.36s; }
.cap-band__shot:nth-child(9) { transition-delay: 0.4s; }
.cap-band__shot:nth-child(10) { transition-delay: 0.44s; }
.cap-band.is-in .cap-band__shot {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.cap-band__shot img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.cap-band__shot:hover,
.cap-band__shot:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  outline: none;
}
.cap-band__shot:hover img,
.cap-band__shot:focus-visible img {
  transform: scale(1.04);
}

@media (max-width: 1000px) {
  .cap-band {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cap-band__grid--grips {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .cap-bands { gap: 36px; }
  .cap-band__grid--grips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cap-band__grid--holsters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cap-band__grid--accessories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cap-band__title { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  html.cap-motion .cap-band:not(.is-in) .cap-band__eyebrow,
  html.cap-motion .cap-band:not(.is-in) .cap-band__title,
  html.cap-motion .cap-band:not(.is-in) .cap-band__blurb,
  html.cap-motion .cap-band:not(.is-in) .cap-band__cta,
  html.cap-motion .cap-band:not(.is-in) .cap-band__shot {
    opacity: 1 !important;
    transform: none !important;
  }
  .cap-band__copy::before { transform: scaleY(1) !important; }
}
.mode-card, .buyer-card { padding: 22px; }
.mode-card .btn { margin-top: 8px; }
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.matrix-item {
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  padding: 18px 10px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}
.matrix-note { color: var(--muted); font-size: 14px; margin-top: 16px; text-align: center; }
.process-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  counter-reset: step;
}
.process-rail li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 12px;
  min-height: 110px;
}
.process-rail b { display: block; font-family: var(--head); text-transform: uppercase; margin-bottom: 6px; }
.process-rail span { font-size: 13px; color: var(--muted); }
.resource-links {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}
.resource-links a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 600;
}
.resource-links a:hover { border-color: var(--accent); color: var(--accent); }
.home-rfq {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
  background: var(--ink);
  color: #fff;
  padding: 36px;
  border-radius: var(--radius);
}
.home-rfq h2 { color: #fff; text-transform: uppercase; }
.home-rfq p { color: #c4ccd4; }
.home-rfq__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #fff;
  color: var(--ink);
  padding: 20px;
  border-radius: var(--radius);
}
.home-rfq__form .field--full,
.field-grid .field--full { grid-column: 1 / -1; }
.home-rfq__form .btn { grid-column: 1 / -1; }
.check-label { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.lead { color: var(--muted); font-size: 18px; }
@media (max-width: 1000px) {
  .pillar-grid, .mode-grid, .buyer-grid, .process-rail, .matrix-grid, .home-rfq {
    grid-template-columns: 1fr 1fr;
  }
  .process-rail { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .pillar-grid, .mode-grid, .buyer-grid, .matrix-grid, .home-rfq, .home-rfq__form, .process-rail {
    grid-template-columns: 1fr;
  }
}

/* ---------- Home wireframe layout ---------- */
.hero--home {
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  padding: 88px 0 80px;
  position: relative;
}
.hero--home::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(20, 23, 26, 0.35));
}
.hero--home .hero--b2b__inner { position: relative; z-index: 1; }
.hero-brand {
  font-family: var(--head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: #fff;
}
.hero--home h1 {
  font-size: clamp(26px, 3.6vw, 40px);
  max-width: 18ch;
}
.hero--home .hero-lead { max-width: 36rem; }

.home-cats-section { padding-top: 36px; padding-bottom: 36px; }
.home-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.home-cat {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: var(--ink-2);
  isolation: isolate;
}
.home-cat__media,
.home-cat__veil { position: absolute; inset: 0; }
.home-cat__media { z-index: 0; }
.home-cat__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s ease;
}
.home-cat__veil {
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 23, 26, 0.15) 0%, rgba(20, 23, 26, 0.72) 100%);
  transition: background 0.35s ease;
}
.home-cat__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: rgba(20, 23, 26, 0.35);
  backdrop-filter: blur(2px);
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.home-cat__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent #fff;
  transform: translate(-50%, -50%);
}
.home-cat__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 2;
  text-align: center;
  font-family: var(--head);
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 12px;
  transition: transform 0.35s ease;
}
.home-cat:hover .home-cat__media img,
.home-cat:focus-visible .home-cat__media img { transform: scale(1.08); }
.home-cat:hover .home-cat__veil,
.home-cat:focus-visible .home-cat__veil {
  background: linear-gradient(180deg, rgba(20, 23, 26, 0.1) 0%, rgba(20, 23, 26, 0.78) 100%);
}
.home-cat:hover .home-cat__play,
.home-cat:focus-visible .home-cat__play {
  transform: scale(1.08);
  background: rgba(232, 84, 27, 0.85);
  border-color: #fff;
}
.home-cat:hover .home-cat__label,
.home-cat:focus-visible .home-cat__label { transform: translateY(-4px); }
.home-cat:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 36px 48px;
  align-items: center;
}
.home-about__media {
  display: block;
  overflow: hidden;
  background: var(--ink-2);
}
.home-about__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.home-about__media:hover img,
.home-about__media:focus-visible img { transform: scale(1.04); }
.home-about__copy h2 { margin-top: 0; text-transform: uppercase; }
.home-about__copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 40rem;
}
.home-about__copy .btn { margin-top: 8px; }

.home-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.home-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 1;
}
.home-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.home-gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 12px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(20, 23, 26, 0.75));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.home-gallery__item.is-featured figcaption,
.home-gallery__item:hover figcaption,
.home-gallery__item:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}
.home-gallery__item:hover img { transform: scale(1.05); }

.home-contact-section {
  background: var(--ink);
  color: #fff;
  padding-top: 56px;
  padding-bottom: 56px;
}
.home-contact {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}
.home-contact__intro .eyebrow { color: #c4ccd4; }
.home-contact__intro h2 {
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.home-contact__intro p { color: #c4ccd4; max-width: 36rem; }
.home-contact__meta {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 8px;
}
.home-contact__meta a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-contact__meta a:hover { color: var(--accent); }
.home-contact__form { margin: 0; }

@media (max-width: 1000px) {
  .home-cats { gap: 12px; }
  .home-cat__play {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
  }
  .home-cat__play::after { border-width: 7px 0 7px 11px; }
  .home-about,
  .home-contact { grid-template-columns: 1fr; }
  .home-gallery { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .hero--home { min-height: auto; padding: 64px 0 56px; }
  .home-cats { grid-template-columns: 1fr; }
  .home-cat { aspect-ratio: 16 / 10; }
  .home-gallery { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .home-cat__media img,
  .home-cat__play,
  .home-cat__label,
  .home-cat__veil,
  .home-about__media img,
  .home-gallery__item img,
  .home-gallery__item figcaption { transition: none; }
}
