/* ==========================================================================
   Hammer Tech (NI) Ltd — site stylesheet
   Brand: ~80% black / 20% orange. Industrial, sharp-cornered, premium.
   Edit colours in one place: the :root block below.
   ========================================================================== */

/* ---------- fonts: self-hosted (SIL Open Font Licence), latin subset ---------- */
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:500;font-display:swap;src:url(../fonts/barlow-condensed-500-latin.woff2) format('woff2')}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:600;font-display:swap;src:url(../fonts/barlow-condensed-600-latin.woff2) format('woff2')}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:700;font-display:swap;src:url(../fonts/barlow-condensed-700-latin.woff2) format('woff2')}
@font-face{font-family:'Barlow Condensed';font-style:normal;font-weight:800;font-display:swap;src:url(../fonts/barlow-condensed-800-latin.woff2) format('woff2')}
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/ibm-plex-sans-latin.woff2) format('woff2')}
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:500;font-display:swap;src:url(../fonts/ibm-plex-sans-latin.woff2) format('woff2')}
@font-face{font-family:'IBM Plex Sans';font-style:normal;font-weight:600;font-display:swap;src:url(../fonts/ibm-plex-sans-latin.woff2) format('woff2')}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:400;font-display:swap;src:url(../fonts/ibm-plex-mono-400-latin.woff2) format('woff2')}
@font-face{font-family:'IBM Plex Mono';font-style:normal;font-weight:500;font-display:swap;src:url(../fonts/ibm-plex-mono-500-latin.woff2) format('woff2')}

:root {
  --black:      #0B0B0C;
  --panel:      #131315;
  --panel-alt:  #0E0E10;
  --line:       rgba(255,255,255,0.09);
  --line-soft:  rgba(255,255,255,0.055);
  --text:       #F5F4F2;
  --body:       #B4B3B0;
  --muted:      #9C9B98;
  --dim:        #8A8986;   /* was #6E6D6A (3.6:1). Now 5.3:1 on panels, AA */
  --faint:      #828180;   /* was #5C5B58 (2.7:1). Now 4.8:1 on panels, AA */
  --orange:     #F0590A;
  --orange-hi:  #FF7A33;
  --orange-dim: rgba(240,89,10,0.40);

  --display: 'Barlow Condensed', 'Arial Narrow', Impact, sans-serif;
  --sans:    'IBM Plex Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  --mono:    'IBM Plex Mono', ui-monospace, Menlo, Consolas, monospace;

  --gutter: 72px;
  --maxw:   1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-hi); }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 5.2vw, 76px); }
h2 { font-size: clamp(30px, 3.6vw, 50px); }
h3 { font-size: clamp(22px, 1.9vw, 28px); font-weight: 700; }
h4 { font-size: 20px; font-weight: 700; }

p { margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- small shared pieces ---------- */

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--orange); flex: none; }

.kicker {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dim);
}

.lede { max-width: 66ch; color: var(--muted); font-size: 17px; }

.arrow-link {
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  align-self: flex-start;
}
.arrow-link::after { content: " \2192"; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 32px;
  border: 1px solid transparent;
  font: 600 14px/1 var(--sans);
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--orange); color: var(--black); }
.btn-primary:hover { background: var(--orange-hi); color: var(--black); }
.btn-ghost { border-color: rgba(255,255,255,0.28); color: var(--text); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { min-height: 46px; padding: 0 20px; font-size: 12px; }
.btn-block { width: 100%; }
.btn[disabled], .btn.is-disabled {
  background: transparent; border-color: var(--line);
  color: var(--dim); cursor: not-allowed;
}

.tag {
  display: inline-block; padding: 6px 10px;
  background: var(--orange);
  font: 600 11px/1 var(--sans);
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black);
}
.tag-quiet { background: transparent; border: 1px solid var(--line); color: var(--muted); }

.note {
  padding: 20px 24px;
  background: var(--panel);
  border-left: 3px solid var(--orange);
  color: var(--body);
  font-size: 15px;
}

/* ---------- utility bar + header ---------- */

.util {
  background: #000;
  border-bottom: 1px solid var(--line-soft);
  font: 500 12px/1 var(--sans);
  letter-spacing: 0.06em;
  color: var(--muted);
}
.util .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 24px; }
.util strong { color: var(--orange); font-weight: 600; }
.util-side { display: flex; gap: 24px; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(11,11,12,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; min-height: 92px;
}
.brand { display: flex; align-items: center; gap: 14px; flex: none; max-width: 260px; overflow: hidden; }
.brand img { height: 72px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav > li { position: relative; list-style: none; }
.nav { margin: 0; padding: 0; }
.nav a {
  display: block; padding: 8px 0;
  font: 600 13px/1 var(--sans);
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--text); }
.nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--orange); }

.has-sub > a::after { content: " \25BE"; color: var(--dim); font-size: 10px; }
.sub {
  position: absolute; top: 100%; left: -18px; min-width: 240px;
  margin: 0; padding: 8px 0;
  background: var(--panel); border: 1px solid var(--line);
  list-style: none;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.14s ease, transform 0.14s ease, visibility 0.14s;
}
.has-sub:hover .sub, .has-sub:focus-within .sub { opacity: 1; visibility: visible; transform: none; }
.sub a { padding: 10px 18px; letter-spacing: 0.06em; text-transform: none; font-size: 14px; }

.header-cta { display: flex; align-items: center; gap: 18px; flex: none; }
.phone-block { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.phone-block .num { font: 700 19px/1 var(--display); letter-spacing: 0.04em; color: var(--text); }

.burger {
  display: none;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid rgba(255,255,255,0.22);
  color: var(--text); cursor: pointer;
}

/* ---------- hero ---------- */

.hero { position: relative; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,11,12,0.97) 0%, rgba(11,11,12,0.90) 42%, rgba(11,11,12,0.40) 100%);
}
.hero-inner {
  position: relative;
  display: flex; flex-direction: column; justify-content: center; gap: 28px;
  min-height: 620px; padding: 80px 0;
  max-width: 720px;
}
.hero h1 .hl { color: var(--orange); }
.hero p { max-width: 580px; color: var(--body); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 4px; }

.page-head {
  border-bottom: 1px solid var(--line);
  background: var(--panel-alt);
}
.page-head .wrap { display: flex; flex-direction: column; gap: 18px; padding-top: 72px; padding-bottom: 72px; }

/* ---------- stat strip ---------- */

.stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px; background: var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { display: flex; flex-direction: column; gap: 8px; padding: 30px 40px; background: var(--black); }
.stat b { font: 700 34px/1 var(--display); color: var(--orange); }
.stat span { font-size: 14px; color: var(--muted); }

/* ---------- sections ---------- */

.section { padding: 96px 0; }
.section-tint { background: var(--panel-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; flex-direction: column; gap: 16px; max-width: 780px; }
.section-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 60px; margin-bottom: 44px;
}
.stack { display: flex; flex-direction: column; gap: 44px; }

.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ---------- product card ---------- */

.card {
  display: flex; flex-direction: column;
  background: var(--panel); border: 1px solid var(--line);
}
.card-feature { border-color: var(--orange-dim); }
.card-media { position: relative; aspect-ratio: 4 / 3; background: var(--panel-alt); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media .tag { position: absolute; left: 12px; top: 12px; }
.card-body { display: flex; flex-direction: column; gap: 14px; padding: 22px; flex: 1; }
.card-body h3 { font-size: 24px; }
.spec { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--muted); }
.spec div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dotted var(--line); padding-bottom: 5px; }
.spec dt, .spec .k { color: var(--dim); }
.price { font: 700 28px/1 var(--display); color: var(--orange); }
.price small { font: 500 12px/1 var(--mono); letter-spacing: 0.1em; color: var(--dim); text-transform: uppercase; }
.price-poa { font: 700 22px/1 var(--display); color: var(--text); }
.card-actions { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }

/* ---------- brand cards ---------- */

.brand-card { display: flex; flex-direction: column; background: var(--panel); border: 1px solid var(--line); }
.brand-card.is-lead { border-color: var(--orange-dim); }
.brand-card .card-media { aspect-ratio: 4 / 3; background: #ffffff; border-bottom-color: rgba(0,0,0,0.10); }
/* several of the supplied photos are portrait; bias the crop upward so the
   business end of the attachment stays in frame */
.card-media img, .feature-media img, .split-media img { object-position: center 35%; }
.brand-body { display: flex; flex-direction: column; gap: 16px; padding: 28px; flex: 1; }
.brand-title { display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.brand-title h3 { font-size: 30px; font-weight: 800; }
.brand-body p { color: var(--body); font-size: 15px; }
.brand-range { font-size: 13px; line-height: 1.7; color: var(--muted); }

/* ---------- capability cards ---------- */

.cap { display: flex; flex-direction: column; gap: 18px; padding: 30px 26px; background: var(--panel); border: 1px solid var(--line); }
.cap.is-lead { border-color: var(--orange-dim); }
.cap svg { color: var(--orange); flex: none; }
.cap h3 { font-size: 22px; font-weight: 700; }
.cap p { font-size: 14px; color: var(--muted); }

/* ---------- positioning block ---------- */

.split { display: grid; grid-template-columns: 1.15fr 1fr; background: var(--panel-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split-copy { display: flex; flex-direction: column; gap: 26px; padding: 92px var(--gutter); }
.split-copy .pull { font: 700 clamp(28px, 2.9vw, 40px)/1.18 var(--display); text-transform: uppercase; }
.split-copy p { color: var(--body); max-width: 60ch; }
.split-media { position: relative; border-left: 1px solid var(--line); min-height: 420px; }
.split-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.feature { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.feature-media { aspect-ratio: 4 / 3; border: 1px solid var(--line); overflow: hidden; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { display: flex; flex-direction: column; gap: 22px; }

/* ---------- contact ---------- */

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-rows { display: flex; flex-direction: column; gap: 1px; background: var(--line); margin-top: 8px; }
.crow { display: flex; align-items: flex-start; gap: 20px; padding: 20px 24px; background: var(--panel); }
.crow .k { width: 88px; flex: none; padding-top: 3px; font: 500 11px/1 var(--mono); letter-spacing: 0.16em; text-transform: uppercase; color: var(--dim); }
.crow .v { font-size: 15px; color: var(--text); }
.crow .v.big { font: 700 24px/1 var(--display); letter-spacing: 0.03em; }

form.enquiry { display: flex; flex-direction: column; gap: 20px; padding: 36px; background: var(--panel); border: 1px solid var(--line); }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font: 500 11px/1 var(--sans); letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; min-height: 50px; padding: 13px 14px;
  background: var(--black); border: 1px solid rgba(255,255,255,0.14);
  color: var(--text); font-family: var(--sans); font-size: 15px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--orange); }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
form.enquiry .fineprint { font-size: 13px; color: var(--dim); }

/* ---------- gallery ---------- */

.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.gallery a { display: block; aspect-ratio: 1; background: var(--panel); border: 1px solid var(--line); overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery a:hover img { transform: scale(1.05); }

/* ---------- footer ---------- */

.site-footer { background: #000; border-top: 1px solid var(--line); padding: 64px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.foot-col { display: flex; flex-direction: column; gap: 14px; }
.foot-col h2, .foot-col h4 { font: 500 11px/1 var(--mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); }
.foot-col a, .foot-col span { font-size: 14px; color: var(--muted); }
.foot-col a:hover { color: var(--text); }
.foot-about p { font-size: 14px; color: var(--dim); max-width: 34ch; }
.foot-about .foot-logo { height: 76px; width: 76px; align-self: flex-start; object-fit: contain; }
.foot-base {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line-soft);
  font-size: 13px; color: var(--faint);
}
.foot-base a { color: var(--faint); }
.foot-legal { display: flex; gap: 22px; }

/* ---------- product detail ---------- */

.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.pdp-media { border: 1px solid var(--line); background: var(--panel); overflow: hidden; }
.pdp-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.pdp-thumbs img { aspect-ratio: 1; object-fit: cover; border: 1px solid var(--line); cursor: pointer; }
.pdp-buy { display: flex; flex-direction: column; gap: 22px; }
.pdp-price { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.pdp-price .price { font-size: 44px; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table th, .spec-table td { text-align: left; padding: 13px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table th { width: 42%; font-weight: 500; color: var(--dim); }
.spec-table td { color: var(--text); }

.trust-row { display: flex; flex-direction: column; gap: 12px; padding: 22px 24px; background: var(--panel); border: 1px solid var(--line); }
.trust-row div { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--body); }
.trust-row svg { color: var(--orange); flex: none; margin-top: 2px; }

/* ---------- shop filters ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filters button {
  padding: 11px 20px; min-height: 44px;
  background: transparent; border: 1px solid var(--line);
  color: var(--muted); font: 600 12px/1 var(--sans);
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
}
.filters button:hover { border-color: var(--orange); color: var(--text); }
.filters button[aria-pressed="true"] { background: var(--orange); border-color: var(--orange); color: var(--black); }

.empty { padding: 60px 0; color: var(--muted); }

/* ---------- mobile ---------- */

.mobile-nav {
  position: fixed; inset: 0; z-index: 90;
  background: var(--black);
  padding: 24px 20px 48px;
  overflow-y: auto;
  display: none; flex-direction: column; gap: 6px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav .mn-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.mobile-nav a {
  display: block; padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
  font: 700 22px/1.1 var(--display); text-transform: uppercase;
  color: var(--text);
}
.mobile-nav a.sub-item { font-family: var(--sans); font-size: 15px; font-weight: 400; text-transform: none; padding-left: 16px; color: var(--muted); }
.mobile-nav .mn-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

@media (max-width: 1180px) {
  :root { --gutter: 40px; }
  .nav { gap: 18px; }
  .nav a { font-size: 12px; letter-spacing: 0.06em; }
  .brand img { height: 62px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .nav, .phone-block { display: none; }
  .burger { display: inline-flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 300px; border-left: 0; border-top: 1px solid var(--line); }
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .pdp { grid-template-columns: 1fr; gap: 32px; }
  .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  body { font-size: 16px; }
  .util .wrap { min-height: 34px; font-size: 11px; }
  .util-side { display: none; }
  .site-header .wrap { min-height: 74px; }
  .brand img { height: 54px; }
  .hero-inner { min-height: 520px; padding: 56px 0; gap: 22px; }
  .hero-scrim { background: linear-gradient(180deg, rgba(11,11,12,0.72) 0%, rgba(11,11,12,0.94) 58%, rgba(11,11,12,0.99) 100%); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 56px 0; }
  .section-top { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 28px; }
  .stack { gap: 28px; }
  .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .stat { padding: 22px 20px; }
  .stat b { font-size: 26px; }
  .split-copy { padding: 56px var(--gutter); }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .foot-grid { grid-template-columns: 1fr; }
  form.enquiry { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .pdp-price .price { font-size: 34px; }
}

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


/* ---------- long-form text (terms, privacy, delivery) ---------- */

.prose { max-width: 76ch; }
.prose h2 { font-size: clamp(24px, 2.2vw, 32px); margin: 56px 0 16px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 20px; font-weight: 700; margin: 32px 0 10px; color: var(--text); }
.prose p { margin: 0 0 16px; color: var(--body); }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 22px; color: var(--body); }
.prose li { margin-bottom: 9px; }
.prose li::marker { color: var(--orange); }
.prose strong { color: var(--text); }
.prose .updated { font: 500 12px/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--dim); margin-bottom: 40px; display: block; }
.prose dl { margin: 0 0 20px; }
.prose dt { font-weight: 600; color: var(--text); margin-top: 16px; }
.prose dd { margin: 4px 0 0; color: var(--body); }
.prose table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 15px; }
.prose th, .prose td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--dim); font-weight: 500; background: var(--panel); }
.prose td { color: var(--body); }

.toc { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.toc a {
  padding: 9px 16px; border: 1px solid var(--line);
  font: 600 12px/1 var(--sans); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.toc a:hover { border-color: var(--orange); color: var(--text); }

.err-page { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; padding: 120px 0; }
.err-page .code { font: 800 clamp(80px, 12vw, 160px)/0.9 var(--display); color: var(--orange); }


/* five-across range grid */
.grid-5{grid-template-columns:repeat(5,minmax(0,1fr))}
@media (max-width:1180px){.grid-5{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:620px){.grid-5{grid-template-columns:1fr}}


/* spec tables */
.spec-wrap{overflow-x:auto;border:1px solid var(--line)}
.spec{width:100%;border-collapse:collapse;font-family:var(--mono);font-size:13px;min-width:520px}
.spec th{text-align:left;padding:13px 16px;border-bottom:1px solid var(--line);color:var(--muted);font-weight:500;letter-spacing:.09em;text-transform:uppercase;font-size:11px;font-family:var(--sans)}
.spec td{padding:13px 16px;border-bottom:1px solid var(--line-soft);color:var(--body)}
.spec td.m{color:var(--text);font-weight:600}
.spec tbody tr:last-child td{border-bottom:0}
.spec-label{margin:32px 0 18px;color:var(--muted);font-family:var(--mono);font-size:12px;letter-spacing:.08em;text-transform:uppercase}
.spec-note{margin-top:16px;color:var(--muted);font-size:13px}

/* keep card links aligned along the bottom of each card */
.brand-body .arrow-link{margin-top:auto}

/* evenly sized photo pairs */
.pic4x3{aspect-ratio:4/3;overflow:hidden;background:var(--panel)}
.pic4x3 img{width:100%;height:100%;object-fit:cover;display:block}

/* shop card spec fix — avoid collision with .spec breaker tables */
.card-body .spec{min-width:0;width:100%}
.card-body .spec>div{min-width:0}
.card-body .spec>div>span:last-child{text-align:right;color:var(--body)}

/* HT 2026-09-20 fixes */
/* product page spec list must not inherit the breaker-table min-width (was cutting content off on phones) */
.pdp-buy .spec{min-width:0;width:auto}
/* arrow links: real tap target on phones */
@media (max-width:620px){.arrow-link{font-size:13px;padding:8px 0;display:inline-block;line-height:1.2}}


/* ==========================================================================
   HT 2026-09-20 (second pass) — launch report fixes
   ========================================================================== */

/* images keep their proportions when the width is capped (width/height attributes are now on every image) */
img { height: auto; }

/* ---------- spec tables: the card spec-list rule (.spec{display:flex}) was also hitting <table class="spec">,
   so headings did not line up with their columns and tables stopped short of full width ---------- */
table.spec{display:table}

/* ---------- vertical rhythm: blocks inside a plain .wrap sat directly on top of each other ---------- */
.wrap:not(.stack)>.section-head+.grid,
.wrap:not(.stack)>.section-head+.feature,
.wrap:not(.stack)>.section-head+.spec-wrap,
.wrap:not(.stack)>.section-head+.gallery,
.wrap:not(.stack)>.section-head+details,
.wrap:not(.stack)>.section-head+div:not([class]),
.wrap:not(.stack)>.section-head+p:not([class]),
.wrap:not(.stack)>.feature+.spec-wrap,
.wrap:not(.stack)>.spec-wrap+.feature,
.wrap:not(.stack)>.feature+.grid,
.wrap:not(.stack)>.grid+.feature,
.wrap:not(.stack)>.feature+.feature,
details.fold>.feature+.spec-wrap,
details.fold>.spec-wrap+.feature,
details.fold>.feature+.feature{margin-top:44px}
.wrap:not(.stack)>.section-head+.arrow-row{margin-top:36px}
.wrap:not(.stack)>p:not([class])+p:not([class]){margin-top:18px}
.wrap:not(.stack)>details.fold,.wrap:not(.stack)>details.fold+*{margin-top:44px}
@media (max-width:620px){
  .wrap:not(.stack)>.section-head+.grid,
  .wrap:not(.stack)>.section-head+.feature,
  .wrap:not(.stack)>.section-head+.spec-wrap,
  .wrap:not(.stack)>.section-head+.gallery,
  .wrap:not(.stack)>.section-head+details,
  .wrap:not(.stack)>.section-head+div:not([class]),
  .wrap:not(.stack)>.section-head+p:not([class]),
  .wrap:not(.stack)>.feature+.spec-wrap,
  .wrap:not(.stack)>.spec-wrap+.feature,
  .wrap:not(.stack)>.feature+.grid,
  .wrap:not(.stack)>.grid+.feature,
  .wrap:not(.stack)>.feature+.feature,
  details.fold>.feature+.spec-wrap,
  details.fold>.spec-wrap+.feature,
  details.fold>.feature+.feature{margin-top:28px}
  .wrap:not(.stack)>details.fold{margin-top:24px}
  .wrap:not(.stack)>details.fold+*{margin-top:28px}
  .wrap:not(.stack)>details.fold+details.fold{margin-top:12px}
  details.fold>.spec-label{display:none}
}

/* ---------- accessibility helpers ---------- */
.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}
.skip-link{position:absolute;left:12px;top:-80px;z-index:200;padding:14px 20px;background:var(--orange);color:var(--black);font:600 14px/1 var(--sans);letter-spacing:.08em;text-transform:uppercase}
.skip-link:focus{top:12px;color:var(--black)}
main:focus{outline:none}
a:focus-visible,button:focus-visible,summary:focus-visible{outline:2px solid var(--orange-hi);outline-offset:3px}

/* ---------- breadcrumb trail (range pages) ---------- */
.crumbs ol{display:flex;flex-wrap:wrap;align-items:center;gap:0 10px;margin:0;padding:0;list-style:none;font:500 12px/1.4 var(--mono);letter-spacing:.08em;text-transform:uppercase;color:var(--dim)}
.crumbs li{display:flex;align-items:center;gap:10px}
.crumbs li+li::before{content:"/";color:var(--faint)}
.crumbs a{display:inline-block;padding:6px 3px;margin:0 -3px;color:var(--muted)}
.crumbs a:hover{color:var(--text)}

/* ---------- range pages: portrait site photo sits beside the heading on desktop ---------- */
.lead-photo{margin:0}
.lead-photo img{width:100%;height:auto;border:1px solid var(--line)}
.lead-photo .note{margin-top:12px}
.lead-split>.lead-photo{margin-top:32px}
@media (min-width:961px){
  .lead-split{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,400px);gap:72px;align-items:center}
  .lead-split>.lead-photo{margin-top:0}
}
.wrap:not(.stack)>.lead-split+*{margin-top:44px}

/* ---------- tap targets: footer, legal and utility links ---------- */
.foot-col:not(.foot-about){gap:6px}
.foot-col:not(.foot-about)>a,.foot-col:not(.foot-about)>span{padding:4px 0}
.foot-col:not(.foot-about)>h2,.foot-col:not(.foot-about)>h4{margin-bottom:8px}
.foot-legal a{display:inline-block;padding:8px 0}
.util-side{align-items:center}
.util a{display:inline-block;padding:8px 0}
.toc a{padding:12px 16px}
.phone-block .num{display:block;padding:4px 0}
.brand-body>.arrow-link,.cap>.arrow-link,.feature-copy>.arrow-link,.split-copy>.arrow-link,.section-top>.arrow-link,.card-body>.arrow-link,.arrow-row>.arrow-link{display:inline-block;padding:7px 0;line-height:1.2}
.kicker a{display:inline-block;padding:7px 0}

/* ---------- enquiry block: stop the contact rows pushing past the screen edge on phones ---------- */
.contact>*{min-width:0}
.crow .v{min-width:0;overflow-wrap:anywhere}

/* ---------- customer reviews ---------- */
.quote{margin:0;display:flex;flex-direction:column;justify-content:space-between;gap:22px;padding:32px 30px;background:var(--panel);border:1px solid var(--line);border-left:3px solid var(--orange)}
.quote blockquote{margin:0}
.quote blockquote p{font-size:18px;line-height:1.6;color:var(--text)}
.quote blockquote p::before{content:"\201C"}
.quote blockquote p::after{content:"\201D"}
.quote figcaption{font:500 12px/1.4 var(--mono);letter-spacing:.1em;text-transform:uppercase;color:var(--muted)}
.rating-line{display:flex;flex-wrap:wrap;align-items:center;gap:6px 16px;font-size:15px;color:var(--body)}
.rating-line strong{color:var(--text)}
.rating-line .stars{color:var(--orange);font-size:18px;letter-spacing:.14em;line-height:1}
.rating-line .arrow-link{display:inline-block;padding:7px 0;line-height:1.2}
@media (max-width:620px){.quote{padding:24px 20px}.quote blockquote p{font-size:17px}}

/* ---------- opening hours ---------- */
.hours{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;background:var(--line);border:1px solid var(--line)}
.hours div{display:flex;justify-content:space-between;gap:16px;padding:16px 20px;background:var(--panel);font-size:15px;color:var(--body)}
.hours div b{font-weight:500;color:var(--text)}
.hours div.is-closed span{color:var(--dim)}

/* ---------- map: loads only when asked for (no Google cookies until then) ---------- */
.map-shell{position:relative;border:1px solid var(--line);background:var(--panel);overflow:hidden}
.map-shell iframe{display:block;width:100%;height:420px;border:0;filter:grayscale(0.35) contrast(1.1)}
.map-cover{display:flex;flex-direction:column;align-items:flex-start;justify-content:center;gap:18px;min-height:300px;padding:40px;background:
  linear-gradient(135deg,rgba(240,89,10,0.10),transparent 55%),
  repeating-linear-gradient(0deg,transparent 0 39px,var(--line-soft) 39px 40px),
  repeating-linear-gradient(90deg,transparent 0 39px,var(--line-soft) 39px 40px),var(--panel)}
.map-cover p{max-width:52ch;color:var(--body);font-size:15px}
.map-cover .map-actions{display:flex;flex-wrap:wrap;gap:12px}

/* ---------- gallery lightbox ---------- */
.lightbox{width:100vw;max-width:100vw;height:100vh;height:100dvh;max-height:100dvh;margin:0;padding:0;border:0;background:rgba(5,5,6,0.96);color:var(--text)}
.lightbox::backdrop{background:rgba(5,5,6,0.96)}
.lightbox[open]{display:grid;grid-template-rows:auto minmax(0,1fr) auto}
.lb-bar{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:12px 16px;font:500 12px/1 var(--mono);letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.lb-stage{position:relative;display:flex;align-items:center;justify-content:center;min-height:0;padding:0 8px}
.lb-stage img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain}
.lb-cap{padding:14px 20px 22px;text-align:center;font-size:14px;color:var(--body)}
.lb-btn{display:inline-flex;align-items:center;justify-content:center;width:48px;height:48px;background:rgba(19,19,21,0.85);border:1px solid rgba(255,255,255,0.22);color:var(--text);cursor:pointer}
.lb-btn:hover{border-color:var(--orange);color:var(--orange)}
.lb-prev,.lb-next{position:absolute;top:50%;transform:translateY(-50%)}
.lb-prev{left:12px}.lb-next{right:12px}

/* ---------- fold: long reference sections collapse on phones, stay open on desktop ---------- */
details.fold>summary{display:none}
@media (max-width:620px){
  details.fold>summary{display:flex;align-items:center;justify-content:space-between;gap:12px;min-height:54px;padding:0 18px;background:var(--panel);border:1px solid var(--line);color:var(--text);font:600 13px/1.2 var(--sans);letter-spacing:.08em;text-transform:uppercase;cursor:pointer;list-style:none}
  details.fold>summary::-webkit-details-marker{display:none}
  details.fold>summary::after{content:"+";flex:none;font:500 24px/1 var(--mono);color:var(--orange)}
  details.fold[open]>summary::after{content:"\2212"}
  details.fold[open]>summary{margin-bottom:20px}
}

/* FAQ: each question is a native disclosure. Open by default; an inline script closes them on phones. */
details.faq{display:block}
details.faq>summary{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;list-style:none;cursor:pointer}
details.faq>summary::-webkit-details-marker{display:none}
details.faq>summary::after{content:"+";flex:none;font:500 24px/1 var(--mono);color:var(--orange)}
details.faq[open]>summary::after{content:"\2212"}
details.faq>summary h3{font-size:22px;font-weight:700}
details.faq>p{margin-top:18px;font-size:14px;color:var(--muted)}
@media (max-width:620px){
  details.faq{padding:0}
  details.faq>summary{padding:20px 18px}
  details.faq>summary h3{font-size:20px}
  details.faq>p{margin:0;padding:0 18px 22px}
}

/* ---------- sticky call bar (phones) ---------- */
.callbar{display:none}
@media (max-width:760px){
  body{padding-bottom:calc(58px + env(safe-area-inset-bottom,0px))}
  .callbar{position:fixed;left:0;right:0;bottom:0;z-index:70;display:grid;grid-template-columns:1.25fr 1fr 1fr;gap:1px;padding-bottom:env(safe-area-inset-bottom,0px);background:var(--line);border-top:1px solid rgba(255,255,255,0.16)}
  .callbar a{display:flex;align-items:center;justify-content:center;gap:8px;min-height:58px;background:#000;color:var(--text);font:600 13px/1 var(--sans);letter-spacing:.08em;text-transform:uppercase}
  .callbar a.is-call{background:var(--orange);color:var(--black)}
  .callbar svg{flex:none}
  body:has(.mobile-nav.is-open) .callbar,
  body:has(input:focus,textarea:focus,select:focus) .callbar,
  body:has(dialog[open]) .callbar{display:none}
}
@media print{.callbar,.skip-link{display:none!important}}

.rail-hint{display:none}

/* ---------- phones: label sizes, tap targets, tighter home page ---------- */
@media (max-width:620px){
  .eyebrow,.kicker,.tag,.field label,.crow .k,.foot-col h2,.foot-col h4,.spec th,.price small,.crumbs ol,.lb-bar{font-size:12px}
  .util .wrap{font-size:12px}
  .eyebrow{line-height:1.5}
  [style*="font-size:11px"]{font-size:12px!important}
  .card-body .spec,.pdp-buy .spec{font-size:14px}

  .foot-col:not(.foot-about){gap:0}
  .foot-col:not(.foot-about)>a,.foot-col:not(.foot-about)>span{padding:10px 0}
  .foot-legal{gap:0 22px;flex-wrap:wrap}
  .foot-legal a{padding:12px 0}

  .crow{gap:14px;padding:16px 18px}
  .crow .k{width:80px}
  .hours{grid-template-columns:1fr}

  .map-cover{padding:28px 20px;min-height:260px}
  .map-shell iframe{height:340px}

  /* home page: stock cards become a swipe rail, brand cards become compact rows */
  .rail{display:flex;gap:12px;overflow-x:auto;scroll-snap-type:x mandatory;scroll-padding-left:var(--gutter);-webkit-overflow-scrolling:touch;margin:0 calc(var(--gutter) * -1);padding:0 var(--gutter) 8px;scrollbar-width:none}
  .rail::-webkit-scrollbar{display:none}
  .rail>*{flex:0 0 80%;scroll-snap-align:start}
  .rail-hint{display:block;margin-top:14px;font:500 12px/1 var(--mono);letter-spacing:.12em;text-transform:uppercase;color:var(--dim)}

  .brands-compact{gap:12px}
  .brands-compact .brand-card{display:grid;grid-template-columns:112px minmax(0,1fr)}
  .brands-compact .brand-card .card-media{aspect-ratio:auto;height:100%;min-height:150px;border-bottom:0}
  .brands-compact .brand-card .card-media img{object-fit:cover;object-position:center}
  .brands-compact .brand-body{gap:10px;padding:16px 16px 14px}
  .brands-compact .brand-body>p{display:none}
  .brands-compact .brand-title h3{font-size:26px}
  .brands-compact .brand-range{font-size:12.5px;line-height:1.55}

  .caps-compact .cap{gap:12px;padding:20px 18px}
  .caps-compact .cap>p{display:none}
}
