@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');
/* Shared brand tokens — themed by [data-brand] on <html>.
 * Canonical source for the four web properties. MUST stay in lock-step with
 * edge/src/brands.ts and docs/web-platform/design-system.md — change one, change all.
 * Set <html data-brand="forge|laser|welding|nextday"> and the brand custom
 * properties below switch; styles/base.css consumes them via var(--brand) etc. */

:root {
  /* layout */
  --maxw: 1400px;
  --pad: clamp(16px, 4vw, 28px);
  --gap: 24px;
  --radius: 16px;
  --radius-sm: 9px;
  --radius-pill: 999px;
  /* type scale */
  --fs-eyebrow: .8rem;
  --fs-h1: clamp(2.3rem, 5.5vw, 3.6rem);
  --fs-h2: clamp(1.55rem, 3.2vw, 2.2rem);
  --fs-h3: 1.15rem;
  --lh-tight: 1.08;
  --lh-body: 1.6;
  /* neutral surface palette (brand-agnostic) */
  --bg: #ffffff;
  --fg: #16181c;
  --muted: #5b6168;
  --line: #e7e9ee;
  --card: #ffffff;
  --shadow: 0 1px 2px rgba(16,18,28,.05), 0 12px 32px -12px rgba(16,18,28,.14);
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: var(--font-body);
  /* WCAG AA: --brand-strong doubles as a button-hover *background* in places,
   * so it can't always be dark enough to read as *text* on white/tint. --brand-text
   * is the AA-safe colour for brand-coloured TEXT on light surfaces (links, eyebrows,
   * chips, price-on-request, etc.). Defaults to --brand-strong (already AA for the
   * dark brand palettes); the light amber welding brand overrides it below. */
  --brand-text: var(--brand-strong);
  /* AA-safe error/validation red on white. Brands may override (welding does). */
  --error: #C42A1A;
}

[data-brand="forge"] {
  --brand: #151716; --brand-strong: #050606; --brand-bright: #A9B0AC; --brand-text: #151716;
  --ink: #090A0A; --tint: #ECEDEA; --on: #ffffff;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}
[data-brand="laser"] {
  --brand: #F71D25; --brand-strong: #C50D14; --brand-bright: #FF5A54;
  --ink: #1A1210; --tint: #F6EBEA; --on: #ffffff;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}
[data-brand="welding"] {
  /* --brand-strong is the button-hover *background* (with the dark --on text on it),
   * so it's kept light enough for dark text to stay AA (#C07414 ⇒ 4.66:1). Brand-coloured
   * TEXT on white/tint instead uses the darker --brand-text (#8A530F ⇒ 6.3:1 on white,
   * 5.2:1 on tint). --deal/--error darkened from #E5341F (4.34 — failed) to #C42A1A (5.7). */
  --brand: #EAAE1E; --brand-strong: #C07414; --brand-bright: #F5BF44; --brand-text: #8A530F;
  --ink: #1C1C1E; --tint: #F8E8C9; --on: #1C1C1E; --deal: #C42A1A; --error: #C42A1A;
  --font-display: "Archivo", system-ui, sans-serif;
}
[data-brand="nextday"] {
  --brand: #1F6FEB; --brand-strong: #10408F; --brand-bright: #38BDF8;
  --ink: #0C1220; --tint: #E7F0FE; --on: #ffffff;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

@media (prefers-color-scheme: dark) {
  /* landing pages stay light for now; reserved for future dark surfaces */
}
/* Shared landing-page component library. Themed only via the custom properties
 * in tokens.css (var(--brand) …). Brand-neutral: works for any [data-brand]. */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; color: var(--fg); background: var(--bg);
  font-family: var(--font-body); font-size: 17px; line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); line-height: var(--lh-tight); color: var(--ink); margin: 0 0 .4em; }
h1 { font-size: var(--fs-h1); letter-spacing: -.02em; }
h2 { font-size: var(--fs-h2); letter-spacing: -.01em; }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1em; }
a { color: var(--brand-text); text-underline-offset: 2px; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.muted { color: var(--muted); }
.eyebrow { font-size: var(--fs-eyebrow); letter-spacing: .14em; text-transform: uppercase; color: var(--brand-text); font-weight: 700; margin: 0 0 12px; }
section { padding: clamp(48px, 8vw, 88px) 0; }
section.alt { background: var(--tint); }
.section-head { max-width: 60ch; margin: 0 auto clamp(28px,5vw,44px); text-align: center; }

/* header */
header { position: sticky; top: 0; z-index: 30; background: color-mix(in srgb, var(--bg) 86%, transparent); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 18px; height: 64px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--ink); text-decoration: none; }
.logo .mark { width: 30px; height: 30px; border-radius: 9px; background: var(--brand); color: var(--on); display: grid; place-items: center; flex: 0 0 auto; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--fg); text-decoration: none; font-weight: 600; font-size: .96rem; }
.nav-links a:hover { color: var(--brand-text); }
.navtoggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line); border-radius: 9px; padding: 8px; color: var(--ink); cursor: pointer; }
.i { width: 1.1em; height: 1.1em; vertical-align: -.18em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: .98rem; text-decoration: none; border-radius: var(--radius-pill); padding: 12px 22px; border: 1.5px solid transparent; cursor: pointer; transition: transform .08s, background .15s, box-shadow .15s; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: var(--on); box-shadow: 0 8px 20px -8px color-mix(in srgb, var(--brand) 60%, transparent); }
.btn-primary:hover { background: var(--brand-strong); }
.btn-ghost { background: transparent; color: var(--brand-text); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.btn-ghost:hover { background: var(--tint); }

/* hero */
.hero { background: linear-gradient(180deg, var(--tint), var(--bg)); padding: clamp(56px,9vw,104px) 0 clamp(40px,6vw,72px); }
.hero h1 { max-width: 17ch; }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 56ch; color: var(--muted); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.chip { font-size: .82rem; font-weight: 600; color: var(--brand-text); background: color-mix(in srgb, var(--brand) 10%, var(--bg)); border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent); border-radius: var(--radius-pill); padding: 6px 13px; }

/* layout helpers */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px,5vw,56px); align-items: center; }
.grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.card .n { width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: var(--on); display: grid; place-items: center; font-weight: 700; margin-bottom: 12px; }
.card img { border-radius: var(--radius-sm); margin: -4px -4px 14px; width: calc(100% + 8px); aspect-ratio: 4/3; object-fit: cover; }
.tag { font-size: .8rem; font-weight: 600; color: var(--muted); }

/* cta / forms */
.cta { max-width: 640px; margin: 0 auto; text-align: center; }
.qform { display: grid; gap: 12px; margin-top: 22px; text-align: left; }
.qform .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qform input, .qform textarea { width: 100%; font: inherit; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--fg); }
.qform input:focus, .qform textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent); }
.qform button { background: var(--brand); color: var(--on); border: none; border-radius: var(--radius-pill); padding: 14px; font-weight: 700; font-size: 1rem; cursor: pointer; }
.qform button:hover { background: var(--brand-strong); }
.filewrap label { display: block; font-size: .9rem; font-weight: 600; margin-bottom: 6px; }

/* sub-page head (interior pages — a compact tinted banner) */
.pagehead { background: var(--tint); border-bottom: 1px solid var(--line); padding: clamp(36px,6vw,60px) 0; }
.pagehead h1 { max-width: 22ch; margin-bottom: 10px; }
.pagehead .lede { margin-top: 0; }

/* numbered process steps (how-it-works) */
.steps { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); counter-reset: step; }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.step .n { width: 38px; height: 38px; border-radius: 11px; background: var(--brand); color: var(--on); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); margin-bottom: 14px; }
.step h3 { margin: 0 0 6px; }

/* material card (image + spec) */
.matcard { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); box-shadow: var(--shadow); }
.matcard img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.matcard .body { padding: 16px 18px 18px; }
.matcard h3 { margin: 0 0 2px; }
.matcard .thk { font-weight: 700; color: var(--brand-text); font-size: .92rem; }
.matcard .grade { font-size: .88rem; color: var(--muted); margin-top: 5px; }

/* spec / pricing tables */
.spec { width: 100%; border-collapse: collapse; font-size: .96rem; }
.spec caption { text-align: left; font-weight: 700; color: var(--ink); padding-bottom: 10px; }
.spec th, .spec td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.spec thead th { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.spec tbody th { font-weight: 600; }
.spec td.num { text-align: right; font-variant-numeric: tabular-nums; }

/* drag-drop upload zone (quote pages) */
.dropzone { border: 2px dashed color-mix(in srgb, var(--brand) 42%, var(--line)); border-radius: var(--radius); background: var(--tint); padding: 28px 20px; text-align: center; cursor: pointer; transition: border-color .15s, background .15s; }
.dropzone:hover, .dropzone:focus-within { border-color: var(--brand); }
.dropzone.drag { border-color: var(--brand); background: color-mix(in srgb, var(--brand) 12%, var(--bg)); }
.dropzone .dz-icon { width: 30px; height: 30px; color: var(--brand-text); margin: 0 auto 8px; }
.dropzone .dz-hint { color: var(--muted); font-size: .9rem; margin: 4px 0 0; }
.dropzone strong { color: var(--brand-text); }
.dropzone input[type=file] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.dz-file { margin-top: 12px; font-weight: 600; font-size: .92rem; color: var(--ink); display: none; }
.dz-file.show { display: block; }

/* live estimate panel (quote pages) */
.estimate { border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); box-shadow: var(--shadow); padding: 22px 24px; position: sticky; top: 80px; }
.estimate .lab { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.estimate .amount { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 2.6rem); font-weight: 700; color: var(--ink); line-height: 1.05; margin: 6px 0 2px; }
.estimate .amount small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.estimate .erow { display: flex; justify-content: space-between; gap: 12px; font-size: .92rem; padding: 7px 0; border-top: 1px solid var(--line); }
.estimate .erow:first-of-type { border-top: 0; }
.estimate .note { font-size: .82rem; color: var(--muted); margin: 12px 0 0; padding-top: 12px; border-top: 1px solid var(--line); }
.qgrid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px,5vw,44px); align-items: start; }
.qfield { display: grid; gap: 6px; margin-bottom: 14px; }
.qfield label { font-weight: 700; font-size: .9rem; }
.qfield input, .qfield select, .qfield textarea { width: 100%; font: inherit; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--fg); }
.qfield input:focus, .qfield select:focus, .qfield textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent); }
.qrow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* footer */
footer { background: var(--ink); color: color-mix(in srgb, #fff 78%, var(--ink)); padding: 44px 0; font-size: .92rem; }
.foot { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; }
footer a { color: color-mix(in srgb, #fff 70%, var(--ink)); }
footer .fname { color: #fff; font-family: var(--font-display); font-weight: 700; margin-bottom: 6px; }

@media (max-width: 760px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px; box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; border-radius: 9px; }
  .nav-links a.btn { margin: 6px 4px; justify-content: center; }
  .navtoggle { display: inline-flex; }
  .split { grid-template-columns: 1fr; }
  .qform .row { grid-template-columns: 1fr; }
  .qgrid { grid-template-columns: 1fr; }
  .qrow { grid-template-columns: 1fr; }
  .estimate { position: static; }
}
/* Commerce component library — product grid, product page, cart, checkout.
 * Themed entirely via tokens.css (var(--brand) …). Brand-neutral; works for any
 * [data-brand]. Loaded after base.css on shop/product/checkout pages. */

/* ── shop toolbar + category rail ─────────────────────────────────── */
.shop-head { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.shop-head h1 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.shop-layout { display: grid; grid-template-columns: 224px 1fr; gap: clamp(20px, 4vw, 38px); align-items: start; }
.cats { position: sticky; top: 80px; display: grid; gap: 2px; }
.cats a { display: flex; justify-content: space-between; gap: 8px; padding: 9px 12px; border-radius: 9px; color: var(--fg); text-decoration: none; font-weight: 600; font-size: .94rem; }
.cats a:hover { background: var(--tint); }
.cats a.active { background: var(--brand); color: var(--on); }
.cats a .ct { opacity: .6; font-weight: 500; }
.shop-bar { display: flex; gap: 10px; align-items: center; }
.search { flex: 1; min-width: 0; }
.search input { width: 100%; font: inherit; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-pill); }
.search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent); }
.select { font: inherit; padding: 10px 12px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); }

/* ── shop discovery toolbar (sort / filters / count / pager) ──────── */
.shop-tools { margin-bottom: 16px; }
.shop-tools-row { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.result-count { font-size: .9rem; font-weight: 600; color: var(--muted); margin-right: auto; }
.sortctl { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--muted); }
.sortctl .select { padding: 9px 11px; }
.filterbtn { font: inherit; font-weight: 600; font-size: .9rem; padding: 9px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-pill); background: var(--bg); color: var(--fg); cursor: pointer; }
.filterbtn:hover { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.filterbtn[aria-expanded="true"] { border-color: var(--brand); background: var(--tint); color: var(--brand-text); }
.filter-panel { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 22px; margin-top: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--card); }
.filter-panel .fgroup { border: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.filter-panel legend { font-size: .82rem; font-weight: 700; color: var(--ink); padding: 0; margin-bottom: 2px; }
.prange { display: flex; align-items: center; gap: 8px; }
.prange label { display: inline-flex; flex-direction: column; gap: 4px; font-size: .74rem; font-weight: 600; color: var(--muted); }
.prange input { width: 92px; font: inherit; padding: 9px 11px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); }
.prange input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent); }
.prange span { align-self: flex-end; padding-bottom: 9px; color: var(--muted); }
.favail { display: inline-flex; flex-wrap: wrap; gap: 7px; }
.favail button { font: inherit; font-size: .85rem; font-weight: 600; padding: 8px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-pill); background: var(--bg); color: var(--fg); cursor: pointer; }
.favail button:hover { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.favail button.on { border-color: var(--brand); background: var(--brand); color: var(--on); }
.fclear { font: inherit; font-size: .85rem; font-weight: 600; color: var(--brand-text); background: none; border: none; cursor: pointer; padding: 9px 4px; align-self: flex-end; }
.fclear:hover { text-decoration: underline; }
.linklike { font: inherit; color: var(--brand-text); background: none; border: none; cursor: pointer; padding: 0; font-weight: 600; text-decoration: underline; }
.loadmore-wrap { display: flex; justify-content: center; margin-top: clamp(22px, 4vw, 34px); }
.loadmore-wrap .btn { min-width: 220px; justify-content: center; }

/* ── product grid + card ──────────────────────────────────────────── */
.prod-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fill, minmax(208px, 1fr)); }
.pcard { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--card); text-decoration: none; color: inherit; transition: transform .1s, box-shadow .15s, border-color .15s; }
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.pcard .pim { aspect-ratio: 1; background: var(--tint); display: grid; place-items: center; overflow: hidden; }
.pcard .pim picture { display: contents; }
.pcard .pim img { width: 100%; height: 100%; object-fit: contain; padding: 10px; mix-blend-mode: multiply; }
.pcard .pb { padding: 13px 14px 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.pcard h3 { font-size: 1rem; margin: 0; line-height: 1.25; }
.pcard .ppr { margin-top: auto; font-weight: 800; color: var(--ink); }
.pcard .ppr small { font-weight: 500; color: var(--muted); font-size: .76rem; }
/* Price-on-request label (made-to-order / not-yet-priced lines) — grid + PDP. */
.por { color: var(--brand-text); font-weight: 800; }
.pcard .ppr .por { font-size: .95rem; }
.pdp .price .por { font-size: 1.35rem; }
.badge { align-self: flex-start; font-size: .68rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--on); background: var(--brand); border-radius: var(--radius-pill); padding: 3px 9px; }

/* ── card badges (New in / Made to order) ─────────────────────────── */
.pim { position: relative; }
.pbadge { position: absolute; top: 9px; left: 9px; z-index: 2; font-size: .64rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; border-radius: var(--radius-pill); padding: 3px 9px; line-height: 1.5; }
.pbadge-new { background: var(--brand); color: var(--on); }
.pbadge-order { background: color-mix(in srgb, var(--bg) 88%, var(--ink)); color: var(--ink); border: 1px solid var(--line); }

/* ── favourite / wishlist heart toggle ────────────────────────────── */
.favtoggle { position: absolute; top: 7px; right: 7px; z-index: 2; width: 36px; height: 36px; display: grid; place-items: center; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: color-mix(in srgb, var(--bg) 82%, transparent); color: var(--muted); cursor: pointer; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); transition: color .12s, border-color .12s, transform .1s; }
.favtoggle .i { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.favtoggle:hover { color: var(--brand-text); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
.favtoggle:active { transform: scale(.92); }
.favtoggle.on { color: var(--brand); border-color: color-mix(in srgb, var(--brand) 45%, var(--line)); }
.favtoggle.on .i { fill: currentColor; }
.favtoggle:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.favtoggle-lg { position: static; width: auto; height: 44px; gap: 8px; padding: 0 16px; border-radius: var(--radius-pill); font: inherit; font-weight: 700; font-size: .92rem; color: var(--fg); background: var(--bg); }
.favtoggle-lg.on { color: var(--brand-text); background: var(--tint); }
.favtoggle-lg .favtoggle-t { line-height: 1; }
.favbtn { position: relative; display: inline-flex; align-items: center; justify-content: center; color: var(--fg); text-decoration: none; }
.favbtn:hover { color: var(--brand-text); }
.favbtn .i { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.7; }
.favbtn .cnt { position: absolute; top: -7px; right: -8px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--brand); color: var(--on); font-size: .68rem; font-weight: 800; display: grid; place-items: center; }

/* ── product page ─────────────────────────────────────────────────── */
.pdp { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px,5vw,52px); align-items: start; }
.pdp .gallery { border: 1px solid var(--line); border-radius: var(--radius); background: var(--tint); aspect-ratio: 1; display: grid; place-items: center; overflow: hidden; }
.pdp .gallery picture { display: contents; }
.pdp .gallery img { width: 100%; height: 100%; object-fit: contain; padding: 24px; mix-blend-mode: multiply; }
.pdp h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
.pdp .price { font-size: 1.7rem; font-weight: 800; color: var(--ink); margin: 8px 0 2px; }
.pdp .price small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.opt { margin: 18px 0; }
.opt label, .opt .opt-label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 8px; }
.swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.swatch { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--line); cursor: pointer; position: relative; }
.swatch[aria-pressed="true"] { border-color: var(--ink); box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--brand); }
.sizes { display: flex; flex-wrap: wrap; gap: 8px; }
.size { padding: 9px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; font-weight: 600; background: var(--bg); }
.size[aria-pressed="true"] { border-color: var(--brand); background: var(--tint); color: var(--brand-text); }
.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line); border-radius: var(--radius-pill); overflow: hidden; }
.qty button { width: 38px; height: 40px; border: none; background: var(--bg); font-size: 1.2rem; cursor: pointer; color: var(--ink); }
.qty input { width: 44px; text-align: center; border: none; font: inherit; }
.pdp .buy { display: flex; gap: 12px; align-items: center; margin-top: 20px; flex-wrap: wrap; }
.pdp .meta { margin-top: 22px; border-top: 1px solid var(--line); padding-top: 18px; font-size: .92rem; color: var(--muted); display: grid; gap: 6px; }
.pdp .gallery { position: relative; }
.pdp .gallery .favtoggle { top: 12px; right: 12px; width: 42px; height: 42px; }
.pdp .gallery .favtoggle .i { width: 22px; height: 22px; }
.finish-note { display: flex; align-items: center; gap: 8px; margin: 4px 0 0; font-size: .86rem; color: var(--muted); }
.finish-note .i { width: 1.05em; height: 1.05em; flex: none; fill: none; stroke: var(--brand); stroke-width: 1.7; }
.share-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 18px; }
.share-lbl { font-size: .82rem; font-weight: 700; color: var(--muted); }
.sharebtn { display: inline-flex; align-items: center; gap: 7px; font: inherit; font-size: .85rem; font-weight: 600; padding: 8px 13px; border: 1.5px solid var(--line); border-radius: var(--radius-pill); background: var(--bg); color: var(--fg); text-decoration: none; cursor: pointer; }
.sharebtn:hover { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); color: var(--brand-text); }
.sharebtn .i { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.sharebtn.ok { border-color: var(--brand); color: var(--brand-text); background: var(--tint); }
.sharebtn:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.spec-list { margin: 0 0 16px; display: grid; gap: 0; max-width: 52ch; }
.spec-row { display: grid; grid-template-columns: 38% 1fr; gap: 12px; padding: 8px 0; border-bottom: 1px dotted var(--line); font-size: .92rem; }
.spec-row:last-child { border-bottom: none; }
.spec-row dt { font-weight: 700; color: var(--ink); margin: 0; }
.spec-row dd { margin: 0; color: var(--muted); }

/* ── breadcrumbs ──────────────────────────────────────────────────── */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .86rem; color: var(--muted); margin-bottom: 6px; }
.crumbs a { color: var(--muted); text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--brand-text); text-decoration: underline; }
.crumbs span[aria-hidden] { opacity: .5; }
.crumbs [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* ── delivery / returns info block ────────────────────────────────── */
.info-block { margin-top: 22px; border-top: 1px solid var(--line); display: grid; }
.info-block details { border-bottom: 1px solid var(--line); }
.info-block summary { cursor: pointer; list-style: none; padding: 14px 28px 14px 2px; font-weight: 700; position: relative; }
.info-block summary::-webkit-details-marker { display: none; }
.info-block summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.2rem; color: var(--muted); font-weight: 400; }
.info-block details[open] summary::after { content: "–"; }
.info-block p { margin: 0 0 16px; color: var(--muted); font-size: .92rem; line-height: 1.6; max-width: 52ch; }

/* ── product strips (you-may-also-like / recently viewed) ─────────── */
.pstrip { margin-top: clamp(36px, 6vw, 56px); }
.pstrip h2 { font-size: 1.2rem; margin: 0 0 16px; }
.pstrip-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 1fr); gap: var(--gap); overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x proximity; }
.pstrip-row .pcard { scroll-snap-align: start; }

/* category landing pages + featured strips */
/* Tinted category banner (sits above the locked product grid). Pairs with the
 * shared .pagehead but adds a count line + a "back to shop" crumb row. */
.cat-hero .kicker { display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-text); margin: 0 0 12px; }
.cat-hero .kicker a { color: var(--muted); text-decoration: none; }
.cat-hero .kicker a:hover { color: var(--brand-text); }
.cat-hero .kicker .sep { opacity: .5; }
.cat-hero .count { font-size: .9rem; font-weight: 600; color: var(--muted); margin-top: 4px; }
/* Curated category tiles on the gift-ideas / landing pages. */
.cat-tiles { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.cat-tile { display: flex; flex-direction: column; gap: 6px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: transform .1s, box-shadow .15s, border-color .15s; }
.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.cat-tile h3 { margin: 0; }
.cat-tile .more { margin-top: auto; padding-top: 10px; font-weight: 700; font-size: .9rem; color: var(--brand-text); }
/* Centred call-to-action under a grid / strip ("Shop everything"). */
.shop-cta { text-align: center; margin-top: clamp(28px, 5vw, 44px); }

/* ── cart drawer ──────────────────────────────────────────────────── */
.cartbtn { position: relative; }
.cartbtn .cnt { position: absolute; top: -7px; right: -8px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--brand); color: var(--on); font-size: .68rem; font-weight: 800; display: grid; place-items: center; }
.drawer { position: fixed; inset: 0 0 0 auto; width: min(420px, 100%); background: var(--bg); box-shadow: -16px 0 40px -16px rgba(0,0,0,.3); transform: translateX(100%); transition: transform .22s; z-index: 60; display: flex; flex-direction: column; }
.drawer.open { transform: none; }
.scrim { position: fixed; inset: 0; background: rgba(8,10,16,.42); opacity: 0; pointer-events: none; transition: opacity .22s; z-index: 55; }
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer header { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer .items { flex: 1; overflow: auto; padding: 8px 20px; }
.sitems { margin-bottom: 6px; }
.sitem { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: start; padding: 12px 0; border-bottom: 1px solid var(--line); }
.sitem picture { display: contents; }
.sitem img { width: 48px; height: 48px; object-fit: contain; background: var(--tint); border-radius: 8px; }
.sitem .sn { font-weight: 600; font-size: .9rem; line-height: 1.25; }
.sitem .tag { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.sitem .sp { font-weight: 700; font-size: .9rem; white-space: nowrap; }
.sitem .soos { font-size: .74rem; font-weight: 700; color: #b54708; margin-top: 2px; }
.soos-note { font-size: .8rem; font-weight: 700; color: #b54708; margin: 10px 0 4px; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }
.citem { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.citem picture { display: contents; }
.citem img { width: 56px; height: 56px; object-fit: contain; background: var(--tint); border-radius: 8px; }
.citem .cn { font-weight: 600; font-size: .92rem; }
.citem .cx { background: none; border: none; color: var(--muted); cursor: pointer; font-size: .85rem; }
.drawer footer { padding: 18px 20px; border-top: 1px solid var(--line); }
.subtotal { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; margin-bottom: 14px; }
.empty { text-align: center; color: var(--muted); padding: 48px 16px; }

/* ── checkout ─────────────────────────────────────────────────────── */
.checkout { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(24px,5vw,48px); align-items: start; }
.formcard { display: grid; gap: 14px; }
.fieldset { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; display: grid; gap: 12px; }
.fieldset h2 { font-size: 1.1rem; margin: 0 0 4px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field input, .field select { width: 100%; font: inherit; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); }
.field input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent); }
.field label { font-size: .82rem; font-weight: 600; color: var(--muted); display: block; margin-bottom: 5px; }
.field input.invalid { border-color: var(--error, var(--deal, #C42A1A)); }
.field input.invalid:focus { border-color: var(--error, var(--deal, #C42A1A)); }
.ferr { color: var(--error, var(--deal, #C42A1A)); font-size: .78rem; font-weight: 600; margin-top: 5px; }
.summary { position: sticky; top: 80px; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: var(--card); }
.sline { display: flex; justify-content: space-between; padding: 7px 0; font-size: .95rem; }
.sline.tot { border-top: 1px solid var(--line); margin-top: 8px; padding-top: 14px; font-weight: 800; font-size: 1.15rem; }

@media (max-width: 880px) {
  .shop-layout { grid-template-columns: 1fr; }
  .cats { position: static; grid-auto-flow: column; overflow-x: auto; padding-bottom: 6px; }
  .pdp, .checkout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .shop-tools-row { gap: 10px; }
  .result-count { flex-basis: 100%; margin-right: 0; }
  .sortctl { flex: 1; }
  .sortctl .select { flex: 1; }
  .filter-panel { gap: 16px; }
  .filter-panel .fgroup, .prange { width: 100%; }
  .prange input { flex: 1; width: auto; }
}

/* ── Forge fabrication-first homepage (2026-08-23) ─────────────────────────
 * The shop remains fully available, but the homepage now leads with the core
 * business: responsive, end-to-end sheet-metal fabrication. */
.forge-home { background: #f1f1ee; }
.forge-home header { background: color-mix(in srgb, #f4f4f1 94%, transparent); border-bottom-color: rgba(5,6,6,.14); }
.forge-home .nav { height: 76px; }
.forge-home .brandlogo { height: 42px; }
.forge-home .nav-links { gap: 18px; }
.forge-home .nav-links > a { font-size: .9rem; letter-spacing: -.01em; }
.forge-home .nav-links > .nav-quote { background: #090a0a; color: #fff; border-radius: 999px; padding: 9px 16px; }
.forge-home .nav-links > .nav-quote:hover { background: var(--brand-strong); color: #fff; }
.forge-home .hdr-search, .forge-home .megamenu { display: none; }

/* commerce.js injects mobile categories into the header on every page. */
.mobcats { display: none; }

.forge-hero { position: relative; overflow: hidden; padding: clamp(54px, 6vw, 90px) 0 clamp(58px, 6vw, 84px); background: #080909; color: #f3f3f0; }
.forge-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 72% 18%, rgba(255,255,255,.075), transparent 32%), linear-gradient(120deg, transparent 0 58%, rgba(255,255,255,.025) 58% 59%, transparent 59% 100%); }
.forge-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, .88fr); gap: clamp(42px, 7vw, 100px); align-items: center; }
.forge-hero .eyebrow { color: #c6cbc8; }
.forge-hero h1 { color: #fff; font-size: clamp(3.55rem, 6.8vw, 6.8rem); font-weight: 800; line-height: .9; letter-spacing: -.065em; max-width: 9ch; margin-bottom: .28em; }
.forge-hero h1 em { color: #aeb4b1; font-style: normal; font-weight: 500; }
.forge-hero .lede { color: #c9cdcb; font-size: clamp(1.04rem, 1.45vw, 1.24rem); line-height: 1.48; max-width: 58ch; }
.forge-hero .btn-primary { background: #f2f2ef; color: #090a0a; box-shadow: none; }
.forge-hero .btn-primary:hover { background: #fff; }
.forge-hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); }
.forge-hero .btn-ghost:hover { background: rgba(255,255,255,.08); }
.deadline-note { margin: 22px 0 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); color: #aeb3b0; font-size: .88rem; max-width: 62ch; }
.deadline-note strong { color: #fff; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; padding: 0; margin: 18px 0 0; color: #c7cbc9; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.hero-points li { display: flex; align-items: center; gap: 9px; }
.hero-points li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #aeb4b1; }
.hero-gallery { position: relative; min-height: clamp(480px, 54vw, 650px); }
.hero-shot { position: absolute; margin: 0; overflow: hidden; background: #1b1d1c; }
.hero-shot :is(img, video) { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75) contrast(1.08); }
.hero-shot-poster { position: relative; z-index: 0; }
.hero-shot-video { position: absolute; inset: 0; z-index: 1; display: block; }
.hero-shot figcaption { position: absolute; z-index: 2; left: 14px; bottom: 14px; padding: 7px 11px; border-radius: 999px; background: rgba(8,12,9,.78); color: #fff; backdrop-filter: blur(7px); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-shot-main { inset: 0 0 9% 15%; border-radius: 3px 60px 3px 3px; }
.hero-shot-main :is(img, video) { object-position: 48% center; }
.hero-shot-small { left: 0; bottom: 0; width: 48%; height: 42%; border: 7px solid #080909; border-left: 0; border-bottom: 0; }
.hero-stamp { position: absolute; right: -16px; bottom: 3%; width: 126px; height: 126px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: #f0f0ed; color: #090a0a; transform: rotate(-8deg); box-shadow: 0 16px 50px rgba(0,0,0,.32); }
.hero-stamp span { font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-stamp strong { font-size: .9rem; letter-spacing: .08em; }

.forge-proof { padding: 0; background: #fff; border-bottom: 1px solid rgba(14,18,16,.12); }
.forge-proof ul { display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; padding: 0; margin: 0; }
.forge-proof li { display: grid; grid-template-columns: 38px 1fr; gap: 2px 14px; align-content: center; min-height: 108px; padding: 18px 24px; border-right: 1px solid rgba(14,18,16,.12); }
.forge-proof li:last-child { border-right: 0; }
.forge-proof li > .proof-icon { grid-row: 1 / 3; width: 30px; height: 30px; display: grid; place-items: center; color: #69716d; }
.proof-icon svg { width: 26px; height: 26px; }
.forge-proof strong { font-size: .91rem; color: var(--ink); }
.forge-proof small { color: var(--muted); font-size: .75rem; line-height: 1.45; }

.forge-intro { padding: clamp(64px, 7vw, 100px) 0; }
.forge-intro-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1fr); gap: clamp(40px, 9vw, 130px); align-items: start; }
.forge-intro h2, .forge-section-head h2, .forge-shop h2, .forge-contact h2 { font-size: clamp(2.35rem, 4.6vw, 4.65rem); font-weight: 700; line-height: .98; letter-spacing: -.055em; }
.forge-intro-copy { font-size: clamp(1.03rem, 1.45vw, 1.16rem); line-height: 1.62; color: #3f4341; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--brand-strong); text-decoration: none; font-weight: 800; border-bottom: 1px solid currentColor; }

.forge-services { padding: clamp(64px, 7vw, 96px) 0; background: #e8e9e6; }
.forge-section-head { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(280px,.55fr); gap: clamp(32px, 6vw, 88px); align-items: end; margin-bottom: clamp(30px, 4vw, 52px); }
.forge-section-head > p { margin: 0; color: #556159; font-size: 1.02rem; line-height: 1.7; }
.service-bento { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.service-card { min-height: 285px; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(24px,3.1vw,38px); background: #f8f8f5; color: var(--ink); text-decoration: none; border: 1px solid rgba(5,6,6,.14); transition: transform .18s ease, background .18s ease; }
.service-card:hover { transform: translateY(-4px); background: #fff; }
.service-card-wide { grid-column: span 2; min-height: 310px; background: #fff; }
.service-card-wide > div { max-width: 65%; }
.service-card-dark { background: #0a0b0b; color: #e0e2e1; }
.service-card-dark:hover { background: #151716; }
.service-card-dark h3, .service-card-dark .card-link { color: #fff; }
.service-card-dark p { color: #b8bcba; }
.service-icons { display: flex; align-self: flex-end; gap: 4px; }
.service-icon { align-self: flex-end; width: 54px; height: 54px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #454a47; background: #191c1a; color: #d4d8d6; font-size: 28px; }
.service-icon svg { width: 1em; height: 1em; }
.service-icon-line svg { width: 28px; height: 28px; }
.service-kicker { margin: 0 0 12px; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); }
.service-card h3 { font-size: clamp(1.8rem, 3.5vw, 3.35rem); line-height: 1; max-width: 18ch; }
.service-card p { max-width: 54ch; color: #5a625c; }
.card-link { display: inline-flex; justify-content: space-between; align-items: center; width: 100%; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(14,18,16,.15); color: var(--ink); font-size: .84rem; font-weight: 800; }

.forge-process { padding: clamp(64px, 7vw, 100px) 0; background: #f1f1ee; }
.process-line { display: grid; grid-template-columns: repeat(4,1fr); list-style: none; padding: 0; margin: 0; counter-reset: none; }
.process-line li { position: relative; min-height: 188px; padding: 24px 28px 18px 0; border-top: 2px solid #b7bab8; }
.process-line li::before { content: ""; position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: #090a0a; box-shadow: 0 0 0 5px #f1f1ee; }
.process-line li:not(:last-child) { margin-right: 30px; }
.process-mark { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.process-no { color: #69716d; font-size: .72rem; font-weight: 800; }
.process-icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; border: 1px solid #b6bab7; color: #151817; }
.process-icon svg { width: 24px; height: 24px; }
.process-icon-stack { width: auto; min-width: 76px; gap: 7px; padding: 0 10px; }
.process-icon-triple { min-width: 102px; }
.process-icon-stack svg { width: 21px; height: 21px; }
.process-line h3 { font-size: 1.35rem; margin-top: 20px; }
.process-line p { color: var(--muted); font-size: .88rem; line-height: 1.5; }
.laser-referral { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-top: 22px; padding: 20px 24px; background: #fff; border-left: 4px solid #090a0a; }
.laser-referral span { color: var(--muted); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.laser-referral strong { text-align: right; }

.forge-work { padding: clamp(64px, 7vw, 96px) 0; background: #080909; color: #fff; }
.forge-work .eyebrow { color: #c2c7c4; }
.forge-work h2 { color: #fff; font-size: clamp(2.6rem, 5vw, 5rem); line-height: .96; letter-spacing: -.045em; }
.forge-work .forge-section-head > p { color: #b3b7b5; }
.work-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, minmax(280px, 36vw)); gap: 12px; }
.work-card { position: relative; margin: 0; overflow: hidden; background: #1d1f1e; }
.work-card-a { grid-row: span 2; }
.work-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work-card:hover img { transform: scale(1.025); }
.work-card-a img { object-position: 50% center; }
.work-card-c img { object-position: 52% center; }
.work-card figcaption { position: absolute; inset: auto 18px 18px; padding: 14px 16px; background: rgba(11,16,13,.84); backdrop-filter: blur(8px); }
.work-card figcaption span, .work-card figcaption strong { display: block; }
.work-card figcaption span { color: #c5cac7; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.work-card figcaption strong { margin-top: 3px; color: #fff; }
.work-more { margin: 30px 0 0; text-align: right; }
.forge-work .btn-ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.forge-work .btn-ghost:hover { background: rgba(255,255,255,.08); }

.forge-shop { padding: clamp(58px, 6vw, 84px) 0; background: #e4e5e2; }
.forge-shop-shell { display: grid; grid-template-columns: minmax(300px,.7fr) minmax(0,1.3fr); gap: clamp(40px,7vw,90px); align-items: center; }
.forge-shop-copy, .forge-shop-products { min-width: 0; }
.forge-shop-copy > p:not(.eyebrow) { color: #556159; font-size: 1.02rem; line-height: 1.7; }
.shop-links { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; margin-top: 26px; }
.forge-shop-products .pstrip { margin-top: 0; }
.forge-shop-products .pstrip h2 { display: none; }
.forge-shop-products .pstrip-row { grid-auto-columns: minmax(170px,1fr); gap: 10px; }
.forge-shop-products .pcard { border-radius: 3px; box-shadow: none; }
.forge-shop-products .pcard .pb { padding: 11px 12px 13px; }
.forge-shop-products .pcard h3 { font-family: var(--font-body); font-size: .86rem; }

.forge-contact { padding: clamp(64px, 7vw, 100px) 0; background: #f5f5f2; }
.forge-contact-grid { display: grid; grid-template-columns: minmax(0,.8fr) minmax(420px,1fr); gap: clamp(50px,9vw,130px); align-items: start; }
.forge-contact-copy > p:not(.eyebrow) { max-width: 50ch; color: #556159; font-size: 1.05rem; line-height: 1.7; }
.contact-direct { display: grid; gap: 8px; margin-top: 36px; }
.contact-direct a { color: var(--ink); text-decoration: none; font-weight: 800; }
.contact-direct span { max-width: 36ch; color: var(--muted); font-size: .88rem; }
.forge-qform { margin-top: 0; padding: clamp(24px,3vw,38px); background: #fff; border: 1px solid rgba(5,6,6,.14); box-shadow: 0 30px 80px -55px rgba(0,0,0,.32); }
.forge-qform label { display: grid; gap: 7px; font-size: .78rem; font-weight: 800; color: var(--ink); }
.forge-qform label small { color: var(--muted); font-weight: 500; }
.forge-qform input, .forge-qform textarea { border-width: 0 0 1px; border-radius: 0; padding: 12px 0; background: transparent; }
.forge-qform input:focus, .forge-qform textarea:focus { box-shadow: none; border-color: var(--brand); }
.forge-qform .filewrap { margin: 6px 0; padding: 14px; background: #eeeeeb; border: 1px dashed #a4a8a6; }
.forge-qform button { border-radius: 3px; }

.forge-footer { background: #050606; padding: 54px 0 22px; }
.forge-footer-lead { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.14); }
.forge-footer-lead > div { max-width: 52ch; }
.forge-footer-lead p { color: #aeb9b1; font-size: 1.05rem; }
.footer-logo { width: 160px; height: auto; filter: invert(1) grayscale(1) brightness(2); margin-bottom: 20px; }
.forge-footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1.2fr; gap: 40px; padding: 36px 0; }
.forge-footer-grid h3 { font-family: var(--font-body); color: #fff; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.forge-footer-grid a { display: block; text-decoration: none; margin: 7px 0; }
.forge-footer-grid p { color: #9da8a1; margin: 7px 0 14px; }
.forge-footer-bottom { display: flex; justify-content: space-between; gap: 22px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: #7f8982; font-size: .72rem; }
.forge-footer-bottom span:nth-child(2) { display: flex; gap: 12px; }
.forge-footer-bottom a { text-decoration: none; }

@media (max-width: 1100px) {
  .forge-home .nav-links { gap: 12px; }
  .forge-home .nav-links > a { font-size: .84rem; }
  .forge-hero-grid { grid-template-columns: minmax(0,1fr) minmax(360px,.78fr); gap: 44px; }
  .forge-proof li { padding-inline: 16px; }
  .forge-shop-shell { grid-template-columns: minmax(0,1fr); }
}

@media (max-width: 980px) {
  .forge-home .nav { height: 68px; }
  .forge-home .brandlogo { height: 36px; }
  .forge-home .navtoggle { display: inline-flex; }
  .forge-home .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; max-height: calc(100dvh - 68px); overflow-y: auto; flex-direction: column; align-items: stretch; gap: 0; padding: 10px var(--pad) 22px; background: #f4f3ef; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .forge-home .nav-links.open { display: flex; }
  .forge-home .nav-links > a { padding: 12px 10px; font-size: .96rem; }
  .forge-home .nav-links > .nav-quote { margin: 6px 0; text-align: center; }
  .forge-home .mobcats { display: block; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; }
  .mobcats-h { padding: 6px 10px; color: var(--muted); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
  .mobcat-row { display: flex; align-items: center; }
  .mobcat-top { flex: 1; }
  .mobcat-toggle { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); }
  .mobcat-sub { display: grid; padding: 2px 0 10px 16px; }
  .mobcat-sub[hidden] { display: none; }
  .mobcat-sub a, .mobcat-courses { padding: 8px 10px; color: var(--muted); text-decoration: none; font-size: .88rem; }
  .forge-hero-grid, .forge-intro-grid, .forge-contact-grid { grid-template-columns: 1fr; }
  .forge-hero-copy { max-width: 760px; }
  .hero-gallery { min-height: 560px; max-width: 680px; }
  .forge-proof ul { grid-template-columns: repeat(2,1fr); }
  .forge-proof li:nth-child(2) { border-right: 0; }
  .forge-proof li:nth-child(-n+2) { border-bottom: 1px solid rgba(14,18,16,.12); }
  .forge-section-head { grid-template-columns: 1fr; gap: 20px; }
  .forge-footer-grid { grid-template-columns: repeat(2,1fr); }
  .forge-footer-bottom { flex-wrap: wrap; }
}

@media (max-width: 680px) {
  .forge-hero { padding: 34px 0 42px; }
  .forge-hero h1 { font-size: clamp(2.85rem, 14vw, 4.15rem); line-height: .92; }
  .forge-hero .lede { line-height: 1.42; margin-bottom: 18px; }
  .hero-cta { gap: 8px; }
  .hero-cta .btn { padding: 12px 15px; }
  .deadline-note { margin-top: 16px; padding-top: 13px; }
  .hero-points { margin-top: 14px; gap: 6px 16px; }
  .hero-gallery { min-height: 330px; margin-top: 6px; }
  .hero-shot-main { left: 8%; }
  .hero-shot-small { width: 56%; height: 39%; }
  .hero-stamp { width: 88px; height: 88px; right: -4px; }
  .forge-intro, .forge-services, .forge-process, .forge-work, .forge-shop, .forge-contact { padding: 46px 0; }
  .forge-intro-grid { gap: 22px; }
  .forge-intro h2, .forge-section-head h2, .forge-shop h2, .forge-contact h2, .forge-work h2 { font-size: clamp(2.15rem, 10.5vw, 3.25rem); }
  .forge-section-head { gap: 12px; margin-bottom: 26px; }
  .forge-proof ul, .service-bento, .process-line, .work-grid { grid-template-columns: 1fr; }
  .forge-proof li { border-right: 0; border-bottom: 1px solid rgba(14,18,16,.12); min-height: 76px; padding-block: 14px; }
  .forge-proof li:last-child { border-bottom: 0; }
  .service-card-wide { grid-column: auto; }
  .service-card-wide > div { max-width: none; }
  .service-card { min-height: 215px; padding: 22px; }
  .service-card > div > p:not(.service-kicker) { display: none; }
  .service-icon { width: 46px; height: 46px; font-size: 24px; }
  .service-icon-line svg { width: 24px; height: 24px; }
  .service-card h3 { font-size: clamp(1.65rem, 8.5vw, 2.35rem); }
  .card-link { margin-top: 14px; padding-top: 12px; }
  .process-line li { min-height: 150px; padding-top: 20px; margin-right: 0 !important; }
  .process-line h3 { margin-top: 16px; }
  .laser-referral { align-items: flex-start; flex-direction: column; }
  .laser-referral strong { text-align: left; }
  .work-grid { grid-template-rows: none; }
  .work-card, .work-card-a { grid-row: auto; min-height: 250px; }
  .work-more { margin-top: 20px; }
  .forge-shop-products .pstrip-row { grid-auto-columns: minmax(165px, 78%); }
  .shop-links { margin-top: 18px; }
  .forge-contact-grid { gap: 26px; }
  .contact-direct { margin-top: 22px; }
  .forge-qform { padding: 20px; }
  .forge-qform .row { grid-template-columns: 1fr; }
  .forge-footer-lead { align-items: flex-start; flex-direction: column; }
  .forge-footer { padding-top: 42px; }
  .forge-footer-lead { padding-bottom: 28px; }
  .forge-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 20px; padding: 30px 0; }
  .forge-footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .forge-footer-grid { grid-template-columns: 1fr; }
  .hero-gallery { min-height: 300px; }
  .hero-shot-main { inset: 0 0 8% 4%; }
}

/* header search icon (links to /search/) */
.navsearch { display: inline-flex; align-items: center; justify-content: center; color: var(--fg); text-decoration: none; }
.navsearch:hover { color: var(--brand-text); }
.navsearch .i { width: 1.2em; height: 1.2em; }
.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; }

/* newsletter signup (footer capture + homepage inline block) */
.newsletter { display: grid; gap: 8px; }
.newsletter h3 { margin: 0 0 2px; }
.newsletter p { margin: 0; font-size: .92rem; color: var(--muted); }
.nl-form { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-start; }
.nl-form .nl-field { flex: 1; min-width: 200px; display: grid; gap: 4px; }
.nl-form label { font-size: .8rem; font-weight: 600; color: var(--muted); }
.nl-form input[type=email] { width: 100%; font: inherit; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); color: var(--fg); }
.nl-form input[type=email]:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 22%, transparent); }
.nl-form input.invalid { border-color: var(--error, var(--deal, #C42A1A)); }
.nl-form button { font: inherit; font-weight: 700; background: var(--brand); color: var(--on); border: none; border-radius: var(--radius-pill); padding: 12px 20px; cursor: pointer; white-space: nowrap; }
.nl-form button:hover { background: var(--brand-strong); }
.nl-form button:disabled { opacity: .6; cursor: progress; }
.nl-err { color: var(--error, var(--deal, #C42A1A)); font-size: .78rem; font-weight: 600; flex-basis: 100%; }
.nl-ok { font-weight: 600; color: var(--brand-text); }
.nl-ok .tick { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: color-mix(in srgb, var(--brand) 18%, var(--card)); color: var(--brand-text); font-size: .85rem; margin-right: 6px; vertical-align: -5px; }
.newsletter-inline { background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 32px); max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter-inline .nl-form { justify-content: center; text-align: left; }
footer .newsletter { max-width: 30ch; }
footer .newsletter h3 { color: #fff; font-family: var(--font-display); font-size: 1.02rem; }
footer .newsletter p { color: color-mix(in srgb, #fff 72%, var(--ink)); }
footer .newsletter label { color: color-mix(in srgb, #fff 60%, var(--ink)); }
footer .nl-form input[type=email] { background: color-mix(in srgb, #fff 92%, var(--ink)); border-color: transparent; color: var(--ink); }
footer .nl-ok { color: #fff; }

/* order confirmation (/order/) */
.order-done { text-align: center; max-width: 60ch; margin: 8px auto 0; }
.order-done h1 { margin: 14px 0 6px; }
.order-done .tick { width: 52px; height: 52px; border-radius: 50%; margin: 0 auto; display: grid; place-items: center; font-size: 1.5rem; font-weight: 800; background: color-mix(in srgb, var(--brand) 16%, var(--card)); color: var(--brand-text); }
.orderref { margin: 14px 0 0; font-size: .95rem; color: var(--muted); }
.orderref strong { color: var(--ink); letter-spacing: .02em; }

/* favourites / wishlist page (/favourites/) */
.fav-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 14px; margin-bottom: 20px; }
.fav-head h1 { margin: 0; }
.fav-head .favcount { font-size: .92rem; font-weight: 600; color: var(--muted); }

/* ── content pages — faq / care / news ────────────────────────────── */
/* Accessible <details> accordion (FAQ). Keyboard + screen-reader native. */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--card); margin-bottom: 12px; box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 48px 18px 20px; font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; color: var(--ink); position: relative; border-radius: var(--radius-sm); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
.faq summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; line-height: 1; color: var(--brand-text); font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details[open] summary { border-bottom: 1px solid var(--line); }
.faq .ans { padding: 4px 20px 18px; }
.faq .ans p { margin: 12px 0 0; color: var(--muted); font-size: .98rem; }
.faq .ans p:first-child { margin-top: 12px; }
.faq .ans a { font-weight: 600; }
.faq-group { margin: 0 auto clamp(28px,5vw,40px); max-width: 760px; }
.faq-group > h2 { font-size: 1.3rem; margin: 0 0 14px; }

/* Care / material guide — prose + tip callouts */
.prose { max-width: 64ch; margin: 0 auto; }
.prose h2 { margin-top: 0; }
.prose h3 { margin: 28px 0 6px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.2em; margin: 0 0 1em; }
.prose li { margin-bottom: 6px; }
.callout { border-left: 4px solid var(--brand); background: var(--tint); border-radius: var(--radius-sm); padding: 16px 20px; margin: 22px 0; }
.callout strong { color: var(--ink); }
.callout p { margin: 0; color: var(--ink); }

/* News index cards + article body */
.news-grid { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.news-card { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); text-decoration: none; color: inherit; transition: transform .1s, border-color .15s; }
.news-card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.news-card time { font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-text); }
.news-card h3 { margin: 8px 0 6px; }
.news-card p { margin: 0; color: var(--muted); font-size: .95rem; }
.news-card .more { margin-top: auto; padding-top: 14px; font-weight: 700; font-size: .9rem; color: var(--brand-text); }
.article { max-width: 68ch; margin: 0 auto; }
.article .byline { font-size: .88rem; color: var(--muted); margin: 0 0 6px; }
.article .byline time { font-weight: 700; color: var(--brand-text); }
.article h2 { font-size: 1.5rem; margin: 32px 0 8px; }
.article h3 { font-size: 1.2rem; margin: 24px 0 6px; }
.article p, .article li { color: var(--fg); }
.article ul, .article ol { padding-left: 1.2em; }
.article li { margin-bottom: 8px; }
.article .lead { font-size: 1.15rem; color: var(--muted); }
.article-foot { max-width: 68ch; margin: 36px auto 0; padding-top: 24px; border-top: 1px solid var(--line); }

/* ── testimonials / reviews (token-driven, themes per brand) ───────── */
.testimonials { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.tcard { display: flex; flex-direction: column; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.tcard .stars { display: inline-flex; gap: 2px; color: var(--brand); margin-bottom: 12px; }
.tcard .stars svg { width: 18px; height: 18px; fill: currentColor; stroke: none; }
.tcard blockquote { margin: 0 0 16px; font-size: 1.02rem; line-height: 1.55; color: var(--ink); }
.tcard blockquote::before { content: "\201C"; }
.tcard blockquote::after { content: "\201D"; }
.tcard .who { margin-top: auto; font-size: .9rem; }
.tcard .who strong { display: block; color: var(--ink); font-weight: 700; }
.tcard .who span { color: var(--muted); }
.rep-note { font-size: .82rem; color: var(--muted); text-align: center; margin: 22px auto 0; max-width: 60ch; }

/* ── why-choose-us USP rows + at-a-glance stats ────────────────────── */
.usp { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.usp .ic { width: 44px; height: 44px; border-radius: 12px; background: color-mix(in srgb, var(--brand) 12%, var(--bg)); color: var(--brand-text); display: grid; place-items: center; }
.usp .ic svg { width: 22px; height: 22px; }
.usp h3 { margin: 2px 0 6px; }
.usp p { margin: 0; color: var(--muted); }
.statrow { display: grid; gap: var(--gap); grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); text-align: center; }
.statrow .stat .big { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--brand-text); line-height: 1; font-family: var(--font-display); }
.statrow .stat .lab { color: var(--muted); margin-top: 8px; font-size: .95rem; }


/* ── accessibility: skip link, focus-visible, reduced motion ───────── */
.skip-link { position: absolute; left: 8px; top: -48px; z-index: 100; background: var(--brand); color: var(--on); padding: 10px 16px; border-radius: var(--radius-sm); font-weight: 700; text-decoration: none; transition: top .15s ease; }
.skip-link:focus { top: 8px; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero-shot-video,
  .forge-hero__visual video,
  .process-video__clip { display: none !important; }
}

/* ── trust bar: reusable conversion strip under hero / shop head (additive) ──
 * Brand-neutral; uses only tokens present in every bundle (--line, --tint,
 * --brand, --brand-strong, --maxw via .wrap). Pure presentational, no JS. */
.trustbar { border-block: 1px solid var(--line); background: color-mix(in srgb, var(--tint) 45%, #fff); }
.trustbar .wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px 26px; padding-block: 14px; margin: 0; list-style: none; }
.trustbar li { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: var(--brand-strong); }
.trustbar svg { width: 1.05em; height: 1.05em; flex: 0 0 auto; fill: none; stroke: var(--brand); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trustbar--inshop { border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 22px; }
.trustbar--inshop .wrap { padding-inline: 0; }
@media (max-width: 560px) { .trustbar li { font-size: .82rem; } .trustbar .wrap { gap: 8px 16px; } }

/* ── footer reassurance line: delivery · returns · secure payment (additive) ── */
.footreassure { margin-top: 12px; font-size: .85rem; color: var(--muted); line-height: 1.7; }
.footreassure svg { width: 1em; height: 1em; vertical-align: -.12em; fill: none; stroke: var(--brand); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footreassure a { color: var(--brand-strong); font-weight: 600; }


/* ── category mega-menu (welding — built by commerce.js from the tree) ─────── */
.megamenu { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 64px; z-index: 25; }
.mm-row { display: flex; gap: 2px; align-items: stretch; overflow-x: auto; }
.mm-item { position: relative; }
.mm-top { display: inline-flex; align-items: center; height: 46px; padding: 0 14px; font-weight: 600; font-size: .93rem; color: var(--fg); text-decoration: none; white-space: nowrap; border-bottom: 3px solid transparent; }
.mm-top:hover, .mm-item:focus-within > .mm-top { color: var(--brand-strong); border-bottom-color: var(--brand); background: var(--tint); }
.mm-all { font-weight: 700; }
.mm-panel { position: absolute; left: 0; top: 100%; min-width: 560px; max-width: 92vw; background: var(--bg); border: 1px solid var(--line); border-top: none; border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow); padding: 20px 22px; opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity .12s, transform .12s; z-index: 30; }
.mm-item.has-panel:hover .mm-panel, .mm-item.has-panel:focus-within .mm-panel { opacity: 1; visibility: visible; transform: none; }
.mm-cols { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: 14px 24px; }
.mm-col { display: grid; gap: 3px; align-content: start; }
.mm-col a { color: var(--muted); text-decoration: none; font-size: .87rem; padding: 1px 0; }
.mm-col a:hover { color: var(--brand-strong); }
.mm-col .mm-h { color: var(--ink); font-weight: 700; font-size: .92rem; margin-bottom: 3px; }
.mm-foot { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.mm-foot a { color: var(--brand-strong); font-weight: 600; font-size: .9rem; text-decoration: none; }

/* ── sub-category chips (baked into a category landing page) ───────────────── */
.subcats { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 6px; }
.subcats a { display: inline-flex; align-items: center; padding: 7px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-pill); font-size: .9rem; font-weight: 600; color: var(--fg); text-decoration: none; background: var(--bg); }
.subcats a:hover { border-color: var(--brand); color: var(--brand-strong); background: var(--tint); }

@media (max-width: 900px) {
  .megamenu { position: static; }
  .mm-row { gap: 0; }
  .mm-panel { display: none; }   /* top categories still tap through to their pages */
}

.logo{gap:0}
.brandlogo{height:38px;width:auto;display:block}
@media(max-width:520px){.brandlogo{height:32px}}


/* ── mega-menu CORRECTED: full-width hover dropdowns, no scroll box ────────── */
.megamenu { overflow: visible; }
.mm-row { display: flex; flex-wrap: nowrap; align-items: stretch; overflow: visible; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); gap: 0; }
.mm-item { position: static; }                        /* panels span the full bar width */
.mm-top { height: 44px; padding: 0 12px; font-size: .9rem; }
/* hidden by default (opacity/visibility from the base rule); shown only on hover/focus */
.mm-panel { position: absolute; left: 0; right: 0; top: 100%; min-width: 0; max-width: none; width: auto; border: none; border-bottom: 1px solid var(--line); border-radius: 0; box-shadow: 0 14px 26px -14px rgba(0,0,0,.28); padding: 22px clamp(16px,4vw,40px); transform: translateY(-6px); }
.mm-panel .mm-cols, .mm-panel .mm-foot { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.mm-item.has-panel:hover > .mm-panel, .mm-item.has-panel:focus-within > .mm-panel { opacity: 1; visibility: visible; transform: none; }
@media (max-width: 1040px) { .megamenu { display: none; } }  /* mobile uses the nav + shop rail */

/* ── product description (verbatim from the live store) ───────────────────── */
.pdesc { margin-top: 24px; }
.pdesc-h { font-size: 1.15rem; margin: 0 0 10px; }
.pdesc-body { color: var(--fg); line-height: 1.7; max-width: 70ch; }
.pdesc-body > *:first-child { margin-top: 0; }
.pdesc-body p { margin: 0 0 1em; }
.pdesc-body ul, .pdesc-body ol { margin: 0 0 1em; padding-left: 1.3em; }
.pdesc-body li { margin: 4px 0; }
.pdesc-body img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 8px 0; }
.pdesc-body a { color: var(--brand-strong); }
.pdesc-body table { border-collapse: collapse; margin: 10px 0; font-size: .95rem; max-width: 100%; }
.pdesc-body td, .pdesc-body th { border: 1px solid var(--line); padding: 6px 10px; }
.pdesc-body h2, .pdesc-body h3, .pdesc-body h4 { font-size: 1.02rem; margin: 1.2em 0 .4em; }

/* ── category "About this range" block (below the grid) ───────────────────── */
.cat-about { margin: clamp(36px, 6vw, 56px) 0 8px; padding-top: clamp(24px, 4vw, 32px); border-top: 1px solid var(--line); max-width: 74ch; }
.cat-about h2 { font-size: 1.15rem; margin: 0 0 10px; color: var(--brand-text); }
.cat-about p { margin: 0; color: var(--fg); line-height: 1.75; }

/* ── product-image gallery (PDP: primary + secondary thumbnails) ──────────── */
.gallery-wrap { display: grid; gap: 12px; }
.thumbs { display: flex; flex-wrap: wrap; gap: 8px; }
.thumb { width: 62px; height: 62px; padding: 4px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff; cursor: pointer; overflow: hidden; }
.thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: normal; }
.thumb.on, .thumb:hover { border-color: var(--brand); }

/* ── card hover (secondary image + quick add-to-basket) + availability ────── */
.pcard .pim { position: relative; }
.pim-hover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 10px; opacity: 0; transition: opacity .18s; pointer-events: none; background: #fff; }
.pcard:hover .pim-hover { opacity: 1; }
.card-actions { position: absolute; left: 8px; right: 8px; bottom: 8px; display: flex; gap: 6px; opacity: 0; transform: translateY(6px); transition: opacity .16s, transform .16s; z-index: 3; }
.pcard:hover .card-actions, .pcard:focus-within .card-actions { opacity: 1; transform: none; }
.card-add { flex: 1; text-align: center; padding: 9px 12px; border-radius: var(--radius-pill); background: var(--brand); color: var(--on); font-weight: 700; font-size: .84rem; border: none; cursor: pointer; box-shadow: var(--shadow); }
.card-add:hover { background: var(--brand-strong); }
.card-add-ghost { background: var(--card); color: var(--brand-text); border: 1.5px solid var(--brand); box-shadow: var(--shadow); }
.stockbadge { font-size: .74rem; font-weight: 700; margin-top: 5px; display: inline-flex; align-items: center; gap: 5px; }
.stockbadge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; }
.stockbadge.in { color: #1a8a4a; }
.stockbadge.in::before { background: #1a8a4a; }
.stockbadge.out { color: var(--muted); }
.stockbadge.out::before { background: #c3c7cf; }
@media (hover: none) { .card-actions { display: none; } }

/* ── nicer breadcrumbs ────────────────────────────────────────────────────── */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .82rem; margin-bottom: 8px; }
.crumbs a { color: var(--muted); text-decoration: none; font-weight: 600; }
.crumbs a:hover { color: var(--brand-text); text-decoration: underline; }
.crumbs span[aria-hidden] { opacity: .38; }
.crumbs [aria-current="page"] { color: var(--ink); }
.kicker { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; letter-spacing: .01em; }
.kicker a { text-decoration: none; }
.kicker a:hover { text-decoration: underline; }
.kicker .sep { opacity: .5; font-weight: 400; }
/* ── basket line stock level ──────────────────────────────────────────────── */
.cstock { font-size: .72rem; font-weight: 600; margin: 2px 0; }
.cstock.in { color: #1a8a4a; }
.cstock.out { color: var(--muted); }
/* ── mega-menu Welding Courses entry (icon) ───────────────────────────────── */
.mm-courses .mm-top { display: inline-flex; align-items: center; }
.mm-ic { width: 18px; height: 18px; fill: none; stroke: var(--brand-bright); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; margin-right: 7px; flex: 0 0 auto; }

/* ── customer accounts: header link, auth forms, dashboard, pay-on-account ─── */
/* Header person-icon link injected by commerce.js paintAccountLink() into every
 * .nav-links. Matches the fav/cart icon buttons; shows the first name in. */
.accountbtn { display: inline-flex; align-items: center; gap: 6px; color: var(--fg); text-decoration: none; font-weight: 600; font-size: .96rem; }
.accountbtn:hover { color: var(--brand-text); }
.accountbtn .i { width: 1.2em; height: 1.2em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.accountbtn.in { color: var(--brand-text); }
.accountbtn.in .accountbtn-t { max-width: 12ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 720px) { .accountbtn { padding: 13px 12px; border-radius: 9px; } }

/* ── account: auth (login / register / track) tabs ────────────────────────── */
.acc-mount { min-height: 40vh; }
.acc-auth { max-width: 560px; }
.acc-tabs { display: flex; gap: 4px; border-bottom: 1.5px solid var(--line); margin-bottom: 20px; flex-wrap: wrap; }
.acc-tab { appearance: none; background: none; border: none; border-bottom: 2.5px solid transparent; margin-bottom: -1.5px; padding: 10px 14px; font: inherit; font-weight: 700; font-size: .95rem; color: var(--muted); cursor: pointer; }
.acc-tab:hover { color: var(--brand-text); }
.acc-tab.on { color: var(--brand-text); border-bottom-color: var(--brand); }
.acc-tab:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }
.acc-panel[hidden] { display: none; }
.acc-form { max-width: 480px; }
.acc-err { color: var(--error, #C42A1A); font-size: .85rem; font-weight: 600; min-height: 1.1em; }
.acc-err:empty { min-height: 0; }
/* Friendly (non-error) note reusing the .acc-err slot — the "check your email for
   a set-password link" message shown to a migrated customer on first sign-in. */
.acc-err.acc-note { color: var(--fg, #1c1c1c); font-weight: 500; }
.opt-tag { color: var(--muted); font-weight: 500; }

/* ── account: signed-in dashboard ─────────────────────────────────────────── */
.acc-dash { max-width: 760px; }
.acc-loading { padding: 40px 0; text-align: center; }
.acc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.acc-head h2 { font-size: 1.4rem; }
.acc-meta { color: var(--muted); font-size: .92rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.acc-logout { flex: 0 0 auto; }
.acc-badge { display: inline-flex; align-items: center; font-size: .72rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: var(--line); color: var(--ink); }
.acc-badge.on { background: color-mix(in srgb, var(--brand) 18%, transparent); color: var(--brand-text); }
.acc-trade { margin: 16px 0 0; padding: 14px 16px; border: 1px solid var(--line); border-left: 3px solid var(--brand); border-radius: var(--radius-sm); background: var(--tint); font-size: .92rem; line-height: 1.55; }
.acc-trade a { color: var(--brand-text); font-weight: 700; }

/* order-history table (responsive: stacks to cards on narrow screens) */
.acc-table-wrap { overflow-x: auto; }
.acc-orders { width: 100%; border-collapse: collapse; font-size: .92rem; }
.acc-orders th { text-align: left; font-size: .74rem; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); font-weight: 700; padding: 0 12px 8px 0; border-bottom: 1.5px solid var(--line); }
.acc-orders td { padding: 12px 12px 12px 0; border-bottom: 1px solid var(--line); vertical-align: middle; }
.acc-ref { font-weight: 700; }
.acc-ostat { display: inline-flex; align-items: center; font-size: .74rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--line); color: var(--ink); white-space: nowrap; }
.acc-ostat::before { content: ""; width: 6px; height: 6px; border-radius: 50%; margin-right: 6px; background: currentColor; }
.acc-ostat.dispatched, .acc-ostat.completed, .acc-ostat.invoiced { background: color-mix(in srgb, #1a8a4a 16%, transparent); color: #157a40; }
.acc-ostat.in_production, .acc-ostat.open { background: color-mix(in srgb, var(--brand) 16%, transparent); color: var(--brand-text); }
@media (max-width: 560px) {
  .acc-orders, .acc-orders thead, .acc-orders tbody, .acc-orders tr, .acc-orders td { display: block; }
  .acc-orders thead { display: none; }
  .acc-orders tr { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 10px 12px; margin-bottom: 10px; }
  .acc-orders td { border: none; padding: 4px 0; display: flex; justify-content: space-between; gap: 12px; }
  .acc-orders td::before { content: attr(data-l); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); }
}

/* ── checkout: pay-on-account block (reuses the delivery .dopt look) ───────── */
.paymethod .payopt { margin-bottom: 8px; }
.paymethod .payopt:last-of-type { margin-bottom: 0; }
.paymethod .po-field { margin-top: 12px; }
.paymethod .po-field[hidden] { display: none; }

/* ── Forge social-card alignment + header/search refinement (2026-08-24) ── */
html[data-brand="forge"] header {
  background: color-mix(in srgb, #f3f3f0 96%, transparent);
  border-bottom-color: rgba(5,6,6,.18);
}
html[data-brand="forge"] .nav { height: 78px; }
html[data-brand="forge"] .brandlogo { height: 52px; width: auto; }
html[data-brand="forge"] .nav-links { gap: 16px; }
html[data-brand="forge"] .nav-links > a { font-size: .86rem; font-weight: 700; }
html[data-brand="forge"] .navsearch,
html[data-brand="forge"] .favbtn,
html[data-brand="forge"] .cartbtn,
html[data-brand="forge"] .accountbtn { color: #090a0a; }
html[data-brand="forge"] .megamenu,
html[data-brand="forge"] .mobcats { display: none !important; }

html[data-brand="forge"] .hdr-search {
  width: clamp(170px, 18vw, 260px);
  height: 40px;
  display: flex;
  align-items: stretch;
  margin-left: 4px;
  background: #0a0b0b;
  border: 1px solid #303331;
  border-radius: 0;
}
html[data-brand="forge"] .hdr-search input {
  min-width: 0;
  width: 100%;
  padding: 0 12px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: 600 .78rem/1 var(--font-body);
  letter-spacing: .01em;
}
html[data-brand="forge"] .hdr-search input::placeholder { color: #969c99; opacity: 1; }
html[data-brand="forge"] .hdr-search:focus-within { border-color: #8e9692; box-shadow: 0 0 0 2px rgba(9,10,10,.14); }
html[data-brand="forge"] .hdr-search button {
  width: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-left: 1px solid #303331;
  border-radius: 0;
  background: #151716;
  color: #fff;
  cursor: pointer;
}
html[data-brand="forge"] .hdr-search button:hover { background: #292c2a; }
html[data-brand="forge"] .hdr-search .i { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; }
html[data-brand="forge"] body:not(.forge-home) .navsearch { display: none; }
html[data-brand="forge"] .forge-home .hdr-search { display: none; }

html[data-brand="forge"] .search { position: relative; }
html[data-brand="forge"] .search input {
  min-height: 52px;
  padding: 13px 48px 13px 16px;
  border: 1px solid #343735;
  border-radius: 0;
  background-color: #0a0b0b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6cbc8' stroke-width='1.8' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 19px;
  color: #fff;
  font-weight: 600;
}
html[data-brand="forge"] .search input::placeholder { color: #959b98; opacity: 1; }
html[data-brand="forge"] .search input:focus { border-color: #929995; box-shadow: 0 0 0 3px rgba(9,10,10,.14); }

html[data-brand="forge"] .btn { border-radius: 0; text-transform: uppercase; letter-spacing: .035em; font-size: .78rem; }
.forge-home .nav-links > .nav-quote { border-radius: 0; text-transform: uppercase; letter-spacing: .035em; }
.forge-hero { border-bottom: 1px solid #353836; }
.forge-hero::before {
  background:
    linear-gradient(135deg, transparent 0 63%, rgba(210,216,212,.12) 63% 63.12%, transparent 63.12% 100%),
    linear-gradient(45deg, transparent 0 78%, rgba(210,216,212,.075) 78% 78.1%, transparent 78.1% 100%),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.075), transparent 32%);
}
.forge-hero .eyebrow,
.forge-services .eyebrow,
.forge-work .eyebrow,
.forge-contact .eyebrow { display: flex; align-items: center; gap: 12px; }
.forge-hero .eyebrow::before,
.forge-services .eyebrow::before,
.forge-work .eyebrow::before,
.forge-contact .eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.forge-hero h1 { text-transform: uppercase; max-width: 10ch; }
.hero-shot-main { border: 1px solid #686f6b; border-radius: 0; }
.hero-shot figcaption { border-radius: 0; background: rgba(5,6,6,.88); }
.hero-stamp {
  right: -8px;
  bottom: 4%;
  width: 132px;
  height: 72px;
  border: 1px solid #aab0ad;
  border-radius: 0;
  background: rgba(7,8,8,.9);
  color: #fff;
  transform: none;
  box-shadow: none;
}
.hero-stamp strong { color: #c9cecb; }

.forge-proof li > .proof-icon { color: #69716d; }
.forge-intro h2 { padding-left: 22px; border-left: 3px solid #090a0a; }
.forge-services { position: relative; overflow: hidden; background: #090a0a; color: #fff; }
.forge-services::before { content: "+"; position: absolute; right: clamp(20px,5vw,72px); top: 32px; color: #656c68; font: 300 2.1rem/1 var(--font-body); }
.forge-services h2,
.forge-services .forge-section-head > p { color: #fff; }
.forge-services .forge-section-head > p { color: #b8bdba; }
.forge-services .eyebrow { color: #c6cbc8; }
.service-card,
.service-card-wide,
.service-card-dark { position: relative; background: #121413; color: #fff; border-color: #343735; }
.service-card::after { display: none; }
.service-card:hover,
.service-card-dark:hover { background: #1b1e1c; }
.service-card h3,
.service-card-dark h3,
.service-card .card-link,
.service-card-dark .card-link { color: #fff; }
.service-card p,
.service-card-dark p { color: #aeb4b1; }
.service-card .service-kicker { color: #b9bfbc; }
.service-card .card-link { border-top-color: #353936; }

/* Forge capability pictograms: canonical shop-floor symbols, presented as one system. */
.capability-grid { grid-template-columns: repeat(5, minmax(0,1fr)); gap: 12px; }
.service-index-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.process-index-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.capability-card { min-height: 218px; display: flex; flex-direction: column; padding: 22px; border-radius: 2px; box-shadow: none; transition: transform .18s ease, border-color .18s ease; }
a.capability-card:hover { transform: translateY(-3px); border-color: #777d79; }
.card-icons { display: flex; gap: 4px; }
.card-icon { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #343836; background: #111312; color: #f0f1ef; font-size: 25px; }
.card-icon svg { width: 1em; height: 1em; }
.card-icon-line svg { width: 25px; height: 25px; }
.capability-card h3 { margin: auto 0 8px; font-size: 1.18rem; line-height: 1.2; }
.capability-card p { margin: 0; font-size: .88rem; line-height: 1.5; }

.forge-process { background: #ececea; }
.process-line li::before { box-shadow: 0 0 0 5px #ececea; }
.forge-work { border-top: 1px solid #353836; border-bottom: 1px solid #353836; }
.work-card { border: 1px solid #303331; }
.work-card figcaption { border-left: 2px solid #a9b0ac; border-radius: 0; }

/* Real-work photography shared by the Forge service pages. */
.forge-media { position: relative; margin: 0; overflow: hidden; border: 1px solid #343735; border-radius: 0; background: #151716; box-shadow: none; }
.forge-media--band { aspect-ratio: 16 / 7; max-height: 480px; margin-top: clamp(28px, 4vw, 44px); }
.forge-media--inline { aspect-ratio: 4 / 3; margin-bottom: 24px; }
.forge-media-strip { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: clamp(28px, 4vw, 44px); }
.forge-media-strip > .forge-media { aspect-ratio: 16 / 10; }
.forge-media__asset { display: block; width: 100%; height: 100%; object-fit: cover; object-position: var(--media-position, 50% 50%); }
.forge-media__caption { position: absolute; z-index: 2; inset: auto 0 0; padding: 14px 16px; border-top: 1px solid #4b504d; border-left: 2px solid #a9b0ac; background: rgba(5,6,6,.9); color: #fff; pointer-events: none; }
.forge-media__caption span,
.forge-media__caption strong { display: block; }
.forge-media__caption span { color: #c5cac7; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.forge-media__caption strong { margin-top: 3px; color: #fff; }

/* Full-width workshop photography for Forge marketing and capability heroes. */
.media-hero {
  --hero-position: 50% 50%;
  --hero-mobile-position: var(--hero-position);
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(430px, 48vw, 620px);
  align-items: center;
  overflow: hidden;
  padding: clamp(62px, 8vw, 104px) 0;
  background: #070808;
}
.media-hero__visual,
.forge-hero__visual { position: absolute; z-index: 0; inset: -3%; overflow: hidden; pointer-events: none; }
.media-hero__visual :is(img, video),
.forge-hero__visual :is(img, video) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, 50% 50%);
  transform: scale(1.045);
  filter: saturate(.7) contrast(1.08) brightness(.88);
}
.media-hero::after,
.forge-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,6,6,.96) 0%, rgba(5,6,6,.88) 34%, rgba(5,6,6,.54) 68%, rgba(5,6,6,.38) 100%),
    linear-gradient(180deg, rgba(5,6,6,.28), rgba(5,6,6,.38));
}
.media-hero__content,
.forge-hero-grid { position: relative; z-index: 2; width: 100%; }
.media-hero__content > :not(.chips) { max-width: 760px; }
.media-hero .lede { max-width: 66ch; color: #d0d4d1 !important; }
.media-hero .chips { max-width: 850px; }

/* Homepage: one calm full-bleed film, with the poster as its fallback layer. */
.forge-hero {
  isolation: isolate;
  display: flex;
  min-height: clamp(620px, 78vh, 790px);
  align-items: center;
  padding: clamp(72px, 9vw, 118px) 0;
}
.forge-hero::before {
  background:
    linear-gradient(90deg, rgba(4,5,5,.97) 0%, rgba(4,5,5,.9) 36%, rgba(4,5,5,.54) 68%, rgba(4,5,5,.34) 100%),
    linear-gradient(180deg, rgba(4,5,5,.24), rgba(4,5,5,.48));
}
.forge-hero::after { content: ""; position: absolute; z-index: 1; inset: auto 0 0; height: 34%; background: linear-gradient(transparent, rgba(4,5,5,.48)); pointer-events: none; }
.forge-hero__visual { opacity: .84; }
.forge-hero__visual video { position: absolute; inset: 0; }
.forge-hero-grid { display: block; }
.forge-hero-copy { max-width: 760px; }
.forge-hero .lede { color: #d1d5d2; }

.forge-media-strip--three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.process-video { aspect-ratio: 16 / 9; margin-top: clamp(28px, 4vw, 44px); }
.process-video__poster { position: relative; z-index: 0; }
.process-video__clip { position: absolute; z-index: 1; inset: 0; }

@media (max-width: 760px) {
  .media-hero { min-height: 500px; padding: 54px 0; }
  .media-hero__visual :is(img, video),
  .forge-hero__visual :is(img, video) { object-position: var(--hero-mobile-position, var(--hero-position, 50% 50%)); transform: scale(1.07); }
  .media-hero::after,
  .forge-hero::before {
    background:
      linear-gradient(90deg, rgba(5,6,6,.94), rgba(5,6,6,.73)),
      linear-gradient(180deg, rgba(5,6,6,.26), rgba(5,6,6,.62));
  }
  .forge-hero { min-height: 610px; padding: 58px 0; }
  .forge-media-strip--three { grid-template-columns: 1fr; }
  .process-video { aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
  .forge-hero__visual video,
  .process-video__clip { display: none !important; }
}

/* One clear capabilities family: hub first, then focused process guides. */
.capability-subnav { border-bottom: 1px solid #343735; background: #111312; }
.capability-subnav .wrap { display: flex; gap: 4px; overflow-x: auto; padding-block: 0; scrollbar-width: thin; }
.capability-subnav a { flex: 0 0 auto; padding: 15px 13px 13px; border-bottom: 2px solid transparent; color: #b9bfbc; font-size: .73rem; font-weight: 800; letter-spacing: .045em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.capability-subnav a:hover,
.capability-subnav a[aria-current="page"] { border-bottom-color: #eef0ed; color: #fff; }
.process-index-grid .capability-card { min-height: 236px; }
.process-index-grid .capability-card .card-link { margin-top: 20px; }
.process-detail-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
.process-detail-grid .card { border-radius: 2px; box-shadow: none; }
.process-detail-grid h3 { font-size: 1.08rem; }
.process-detail-grid p:last-child { margin-bottom: 0; }
.process-route { margin-top: clamp(28px,4vw,44px); }
.process-route strong { display: block; margin-bottom: 5px; }
.forge-shop { border-top: 1px solid #c4c7c5; border-bottom: 1px solid #c4c7c5; }
.forge-shop-shell { position: relative; }
.forge-shop-shell::before { content: "SHOP / READY-MADE"; position: absolute; right: 0; top: -30px; color: #7b817e; font: 800 .65rem/1 var(--font-body); letter-spacing: .14em; }

.forge-contact { background: #090a0a; color: #fff; border-top: 1px solid #353836; }
.forge-contact h2 { color: #fff; }
.forge-contact .eyebrow { color: #c6cbc8; }
.forge-contact-copy > p:not(.eyebrow),
.forge-contact .contact-direct span { color: #b4bab7; }
.forge-contact .contact-direct a { color: #fff; }
.forge-qform { background: #121413; border-color: #343735; box-shadow: none; }
.forge-qform label { color: #fff; }
.forge-qform label small { color: #969d99; }
.forge-qform input,
.forge-qform textarea { color: #fff; border-color: #4a4e4c; }
.forge-qform input::placeholder,
.forge-qform textarea::placeholder { color: #858b88; }
.forge-qform input:focus,
.forge-qform textarea:focus { border-color: #c1c7c4; }
.forge-qform .filewrap { background: #1b1e1c; border-color: #5a605d; }
.forge-qform button { background: #f0f0ed; color: #090a0a; }
.forge-qform button:hover { background: #fff; }

html[data-brand="forge"] .pagehead { background: #090a0a; color: #fff; border-bottom-color: #343735; }
html[data-brand="forge"] .pagehead h1 { color: #fff; text-transform: uppercase; }
html[data-brand="forge"] .pagehead .lede { color: #b7bcb9; }
html[data-brand="forge"] .pagehead .kicker,
html[data-brand="forge"] .pagehead .kicker a { color: #c4c9c6; }
html[data-brand="forge"] .pagehead .eyebrow,
html[data-brand="forge"] .pagehead .crumbs,
html[data-brand="forge"] .pagehead .crumbs a { color: #c4c9c6; }
html[data-brand="forge"] .pagehead .crumbs a:hover { color: #fff; }
html[data-brand="forge"] .pagehead .btn-primary { background: #f2f2ef; color: #090a0a; box-shadow: none; }
html[data-brand="forge"] .pagehead .btn-primary:hover { background: #fff; }
html[data-brand="forge"] .pagehead .btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); }
html[data-brand="forge"] .pagehead .btn-ghost:hover { background: rgba(255,255,255,.08); }

/* Every remaining top banner gets a real, softly faded workshop backdrop. */
html[data-brand="forge"] :is(.hero, .pagehead):not(.media-hero) {
  color: #fff;
  background-color: #090a0a;
  background-image:
    linear-gradient(90deg, rgba(5,6,6,.96) 0%, rgba(5,6,6,.88) 40%, rgba(5,6,6,.62) 100%),
    linear-gradient(180deg, rgba(5,6,6,.26), rgba(5,6,6,.48)),
    var(--banner-image, url("/img/fabrication/fabrication-in-progress.webp"));
  background-repeat: no-repeat;
  background-position: center, center, var(--banner-position, 58% 50%);
  background-size: cover, cover, cover;
}
html[data-brand="forge"] .hero h1,
html[data-brand="forge"] .hero h2 { color: #fff; text-transform: uppercase; }
html[data-brand="forge"] .hero .lede { color: #d0d4d1; }
html[data-brand="forge"] .hero .eyebrow { color: #c4c9c6; }
html[data-brand="forge"] .hero .btn-primary { background: #f2f2ef; color: #090a0a; box-shadow: none; }
html[data-brand="forge"] .hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); }
html[data-brand="forge"] :is(.hero, .pagehead) .chip { color: #f2f3f1; background: rgba(9,10,10,.64); border-color: rgba(255,255,255,.28); }

/* The hero stays forceful without crowding the first viewport. */
.forge-hero h1 { font-size: clamp(3rem, 5.55vw, 5.55rem); line-height: .92; max-width: 11ch; }
.forge-services .service-card h3 { font-size: clamp(1.65rem, 2.65vw, 2.5rem); }
.forge-tech-band {
  display: grid;
  grid-template-columns: 64px minmax(300px,1.3fr) minmax(220px,.72fr);
  gap: clamp(24px,4vw,56px);
  align-items: start;
  margin-top: 12px;
  padding: clamp(28px,4vw,46px);
  border: 1px solid #404441;
  background: #1a1c1b;
}
.forge-tech-band .tech-mark { align-self: start; width: 58px; height: 58px; background: #101211; }
.forge-tech-band .eyebrow { margin-bottom: 12px; color: #b9bfbc; }
.forge-tech-band h3 { margin: 0; color: #fff; font-size: clamp(1.7rem,2.8vw,2.6rem); line-height: 1.02; }
.forge-tech-copy > p:not(.eyebrow) { margin: 14px 0 0; max-width: 52ch; color: #b5bbb8; line-height: 1.6; }
.forge-tech-band ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.forge-tech-band li { padding: 0 0 10px 18px; border-bottom: 1px solid #393d3a; color: #fff; font-size: .82rem; font-weight: 750; text-transform: uppercase; letter-spacing: .045em; }
.forge-tech-band li::before { content: "+"; margin-left: -18px; margin-right: 9px; color: #9da4a0; }

@media (max-width: 980px) {
  html[data-brand="forge"] .nav { height: 68px; }
  html[data-brand="forge"] .brandlogo { height: 42px; }
  .capability-grid,
  .service-index-grid,
  .process-index-grid,
  .process-detail-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  html[data-brand="forge"] .hdr-search { display: none; }
  html[data-brand="forge"] body:not(.forge-home) .navsearch { display: inline-flex; }
  html[data-brand="forge"] .nav-links { top: 68px; }
  .forge-shop-shell::before { position: static; display: block; margin-bottom: 16px; }
  .forge-tech-band { grid-template-columns: 58px minmax(0,1fr); gap: 16px; }
  .forge-tech-band ul { grid-column: 1 / -1; }
  .capability-grid,
  .service-index-grid,
  .process-index-grid,
  .process-detail-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .forge-media-strip { grid-template-columns: 1fr; }
  .forge-media--band,
  .forge-media-strip > .forge-media { aspect-ratio: 4 / 3; }
}
@media (max-width: 520px) {
  html[data-brand="forge"] .brandlogo { height: 38px; }
  .hero-stamp { width: 104px; height: 60px; }
  .forge-hero h1 { font-size: clamp(2.4rem, 11.7vw, 3.35rem); }
  .forge-tech-band { padding: 24px 20px; gap: 18px; }
  .capability-grid,
  .service-index-grid,
  .process-index-grid,
  .process-detail-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 184px; }
  .forge-media__caption { padding: 12px 13px; }
}

/* Forge editorial density and image-led process cards — September 2026. */
html[data-brand="forge"] main > section:not(.media-hero):not(.forge-hero):not(.forge-proof) {
  padding-block: clamp(38px, 5vw, 60px);
}
.media-hero {
  min-height: clamp(330px, 38vw, 440px);
  padding: clamp(40px, 5vw, 62px) 0;
}
.media-hero h1 { max-width: 15ch; font-size: clamp(2.2rem, 4vw, 4rem); line-height: .94; }
.forge-hero {
  min-height: clamp(470px, 62vh, 560px);
  padding: clamp(48px, 6vw, 70px) 0;
}
.forge-hero h1 { font-size: clamp(2.65rem, 4.65vw, 4.65rem); }
.forge-hero .lede { max-width: 54ch; }
.forge-intro { padding-block: clamp(42px, 5vw, 62px); }
.forge-intro-grid { grid-template-columns: minmax(0,.86fr) minmax(380px,1.14fr); gap: clamp(30px,5vw,68px); align-items: stretch; }
.forge-intro-heading { display: flex; flex-direction: column; justify-content: center; }
.forge-intro h2,
.forge-section-head h2,
.forge-shop h2,
.forge-contact h2 { font-size: clamp(2.05rem, 3.7vw, 3.65rem); }
.forge-intro-copy { margin-top: 22px; max-width: 50ch; font-size: 1rem; line-height: 1.55; }
.forge-intro-media { position: relative; min-height: 350px; margin: 0; overflow: hidden; background: #1a1c1b; }
.forge-intro-media img { width: 100%; height: 100%; object-fit: cover; }
.forge-intro-media figcaption { position: absolute; inset: auto 0 0; padding: 12px 15px; border-top: 1px solid #444946; background: rgba(6,7,7,.86); color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .045em; text-transform: uppercase; }
.forge-section-head { gap: clamp(24px,4vw,60px); margin-bottom: clamp(22px,3vw,34px); }
.forge-section-head > p { line-height: 1.55; }
.forge-services { padding-block: clamp(44px,5vw,64px); }
.service-bento { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 10px; }
.service-card,
.service-card-wide { display: block; min-height: 0; padding: 0; overflow: hidden; }
.service-card-wide { grid-column: auto; }
.service-card-wide > div { max-width: none; }
.service-card__media { position: relative; aspect-ratio: 16 / 9; margin: 0; overflow: hidden; border-bottom: 1px solid #343735; background: #080909; }
.service-card__media :is(img,video) { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, opacity .28s ease; }
.service-card__media video { position: absolute; inset: 0; opacity: 0; }
.service-card:hover .service-card__media img,
.service-card:focus-visible .service-card__media img { transform: scale(1.025); }
.service-card:hover .service-card__media video,
.service-card:focus-within .service-card__media video { opacity: .88; }
.service-card__body { position: relative; padding: 18px 18px 16px; }
.service-card__body .service-icon { float: right; width: 40px; height: 40px; margin: -2px 0 10px 12px; font-size: 21px; }
.service-card__body .service-icon-line svg { width: 21px; height: 21px; }
.forge-services .service-card h3 { clear: left; min-height: 2.35em; margin: 0; font-size: clamp(1.25rem,1.55vw,1.55rem); line-height: 1.12; }
.service-card__body > p:not(.service-kicker) { display: -webkit-box; min-height: 3em; margin: 10px 0 0; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: .86rem; line-height: 1.5; }
.service-card__body .service-kicker { margin: 2px 0 11px; min-height: 1em; font-size: .61rem; }
.service-card__body .card-link { margin-top: 15px; padding-top: 12px; font-size: .73rem; }
.forge-briefs { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin-top: 10px; }
.forge-briefs a { position: relative; min-height: 190px; overflow: hidden; border: 1px solid #343735; color: #fff; text-decoration: none; }
.forge-briefs img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.7); transition: transform .4s ease, filter .4s ease; }
.forge-briefs a::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,6,6,.88),rgba(5,6,6,.16)); }
.forge-briefs a:hover img { transform: scale(1.025); filter: saturate(.85) brightness(.78); }
.forge-briefs span { position: absolute; z-index: 1; inset: auto 20px 18px; display: grid; gap: 5px; }
.forge-briefs small { color: #c5cac7; font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.forge-briefs strong { max-width: 28ch; font-size: clamp(1.25rem,2vw,1.8rem); line-height: 1.1; }
.forge-tech-band { margin-top: 10px; padding: clamp(22px,3vw,34px); }
.forge-process { padding-block: clamp(42px,5vw,62px); }
.process-line li { min-height: 160px; padding-top: 20px; }
.workflow-media { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 8px; margin-top: 20px; }
.workflow-media figure { position: relative; aspect-ratio: 16 / 9; margin: 0; overflow: hidden; background: #1b1d1c; }
.workflow-media img { width: 100%; height: 100%; object-fit: cover; }
.workflow-media figcaption { position: absolute; inset: auto 8px 8px; padding: 5px 8px; background: rgba(5,6,6,.82); color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.forge-work { padding-block: clamp(44px,5vw,64px); }
.forge-work h2 { font-size: clamp(2.1rem,3.45vw,3.45rem); line-height: .98; }
.work-grid { grid-template-columns: repeat(12,minmax(0,1fr)); grid-template-rows: repeat(3,clamp(165px,17vw,225px)); gap: 8px; }
.work-card-a { grid-column: span 7; grid-row: span 2; }
.work-card-b,
.work-card-c { grid-column: span 5; }
.work-card-d,
.work-card-e,
.work-card-f { grid-column: span 4; }
.work-card figcaption { inset: auto 10px 10px; padding: 10px 12px; }
.work-card figcaption strong { font-size: .86rem; }
.forge-contact-grid { gap: clamp(34px,6vw,82px); }
.forge-contact-copy > p:not(.eyebrow) { line-height: 1.55; }
.forge-contact-media { aspect-ratio: 16 / 8; margin: 24px 0 0; overflow: hidden; border: 1px solid #343735; }
.forge-contact-media img { width: 100%; height: 100%; object-fit: cover; }
.contact-direct { margin-top: 24px; }
.process-index-grid .capability-card { overflow: hidden; padding: 0; }
.capability-card__media { aspect-ratio: 16 / 9; overflow: hidden; border-bottom: 1px solid #343735; background: #111312; }
.capability-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
a.capability-card:hover .capability-card__media img { transform: scale(1.025); }
.capability-card__body { display: flex; flex: 1; flex-direction: column; padding: 18px; }
.capability-card__body .card-icons { margin-bottom: 18px; }
.process-index-grid .capability-card h3 { margin-top: 0; }
.process-index-grid .capability-card .card-link { margin-top: auto; }
.process-story { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(0,1.22fr); gap: clamp(28px,5vw,70px); align-items: start; }
.process-story__media { position: sticky; top: 92px; display: grid; gap: 10px; }
.process-story__media .forge-media { aspect-ratio: 4 / 3; }
.process-story__copy { display: grid; gap: clamp(28px,4vw,46px); }
.process-story__copy > * { margin: 0; }

@media (max-width: 1080px) {
  .service-bento { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .forge-intro-grid,
  .process-story { grid-template-columns: 1fr; }
  .forge-intro-media { min-height: 300px; }
  .process-story__media { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-bento { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .workflow-media { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .work-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: none; }
  .work-card,
  .work-card-a,
  .work-card-b,
  .work-card-c,
  .work-card-d,
  .work-card-e,
  .work-card-f { grid-column: auto; grid-row: auto; min-height: 220px; }
  .work-card-a { grid-column: span 2; }
}
@media (max-width: 600px) {
  .media-hero { min-height: 390px; padding: 38px 0; }
  .forge-hero { min-height: 470px; padding: 42px 0; }
  .forge-hero h1 { font-size: clamp(2.35rem,11vw,3.25rem); }
  .forge-intro h2,
  .forge-section-head h2,
  .forge-shop h2,
  .forge-contact h2,
  .forge-work h2 { font-size: clamp(1.9rem,8.5vw,2.6rem); }
  .service-bento,
  .forge-briefs { grid-template-columns: 1fr; }
  .service-card__media { aspect-ratio: 16 / 8; }
  .service-card__body { padding: 16px; }
  .service-card__body > p:not(.service-kicker) { display: -webkit-box !important; min-height: 0; }
  .forge-services .service-card h3 { min-height: 0; }
  .forge-briefs a { min-height: 165px; }
  .workflow-media { gap: 6px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card,
  .work-card-a { grid-column: auto; min-height: 225px; }
  .process-story__media { grid-template-columns: 1fr; }
}
