/*
 * Midland Fire Direct — redesign 2026-06 (branch: redesign)
 *
 * Editorial trade-supply confidence — warm cream + ink, MFD red as
 * precision accent. Standalone stylesheet, not loaded by the rest of
 * the site yet. See /index.html and /products/VIGPLUS-24/ for the
 * pages that consume this.
 */

/* ---------------------------------------------------------------- *
 * Tokens
 * ---------------------------------------------------------------- */
:root {
  --bg:            #FAF7F2;
  --bg-elevated:   #FFFFFF;
  --bg-ink:        #0A2540;
  --bg-subtle:     #F3EEE5;

  --ink:           #0A2540;
  --ink-muted:     #6B6256;
  --ink-subtle:    #6F6659;
  --ink-inverse:   #FAF7F2;

  --accent:        #B30004;
  --accent-hover:  #9A0003;
  --accent-tint:   #FBF1F1;

  --success:       #0F7B5C;
  --success-tint:  #E8F3EE;
  --info:          #1F4F8F;

  --border:        rgba(10, 37, 64, 0.08);
  --border-strong: rgba(10, 37, 64, 0.14);
  --focus:         #0A2540;

  --shadow-1: 0 1px 2px rgba(10, 37, 64, 0.06);
  --shadow-2: 0 1px 2px rgba(10, 37, 64, 0.06), 0 24px 48px rgba(10, 37, 64, 0.06);

  --radius-sm: 6px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --max-content: 1180px;
  --gutter:      24px;

  --section-y-desktop: 112px;
  --section-y-mobile:  72px;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------------------------------------------------------------- *
 * Reset + base
 * ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
body {
  font-family: var(--font-sans);
  font-feature-settings: "cv11", "ss01", "ss03";
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 2px;
}
.section--ink :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--ink-inverse);
}

/* Skip link — visible on focus only */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--bg-elevated);
  color: var(--ink);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  z-index: 100;
  transition: top .15s ease;
}
.skip-link:focus { top: 16px; }

/* ---------------------------------------------------------------- *
 * Layout primitives
 * ---------------------------------------------------------------- */
.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--section-y-desktop) 0;
  position: relative;
}
.section--cream     { background: var(--bg); }
.section--white     { background: var(--bg-elevated); }
.section--subtle    { background: var(--bg-subtle); }
.section--ink       { background: var(--bg-ink); color: var(--ink-inverse); }

.section--ink h1,
.section--ink h2,
.section--ink h3 { color: var(--ink-inverse); }

.section--ink .ink-muted { color: rgba(250, 247, 242, 0.72); }

@media (max-width: 768px) {
  .section { padding: var(--section-y-mobile) 0; }
}

/* Used inside section to constrain narrower editorial copy */
.measure   { max-width: 720px; }
.measure-l { max-width: 880px; }

/* Spacers */
.stack > * + * { margin-top: 24px; }
.stack-s > * + * { margin-top: 12px; }
.stack-l > * + * { margin-top: 40px; }

/* ---------------------------------------------------------------- *
 * Typography
 * ---------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--inverse { color: rgba(250, 247, 242, 0.72); }
/* Back-compat alias from earlier markup — same as default now */
.eyebrow--muted { color: var(--ink-muted); }

.display-xl {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-feature-settings: "cv11", "ss01";
  margin: 0;
}
.display-l {
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.10;
  letter-spacing: -0.020em;
  margin: 0;
}
.display-m {
  font-weight: 600;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}
.heading-l {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.010em;
  margin: 0;
}
.heading-m {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.30;
  letter-spacing: -0.005em;
  margin: 0;
}
.body-l {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.body {
  font-size: 16px;
  line-height: 1.60;
  color: var(--ink-muted);
}
.body-s {
  font-size: 14px;
  line-height: 1.50;
  color: var(--ink-muted);
}
.body-strong { color: var(--ink); }
.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
  letter-spacing: 0.02em;
}
.mono-sku {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.tabular { font-variant-numeric: tabular-nums; }

/* ---------------------------------------------------------------- *
 * Header / nav
 * ---------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.site-header__logo img { height: 36px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
}
.site-nav a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--ink);
  transition: background-color .15s ease, color .15s ease;
}
.site-nav a:hover { background: rgba(10, 37, 64, 0.04); }
.site-nav a.is-active { color: var(--ink); }
.site-nav a.is-active::after {
  content: '';
  display: block;
  width: 16px;
  height: 2px;
  background: var(--accent);
  margin: 6px auto 0;
  border-radius: 2px;
}
.site-header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-header__phone {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  padding: 10px 4px;
}
.site-header__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--ink);
}
.site-header__menu-toggle svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

@media (max-width: 920px) {
  .site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; }
  .site-header__phone { display: none; }
  .site-header__menu-toggle { display: inline-flex; }
  .site-header__inner { height: 64px; position: relative; }
}

/* ---------------------------------------------------------------- *
 * Buttons
 * ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { filter: brightness(0.94); }

.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn--ghost:hover { background: rgba(10, 37, 64, 0.04); }

.btn--ink {
  background: var(--ink);
  color: var(--ink-inverse);
}
.btn--ink:hover { background: #0d2e4f; }

.btn--on-ink-primary {
  background: var(--ink-inverse);
  color: var(--ink);
}
.btn--on-ink-primary:hover { background: #fff; }

.btn--on-ink-ghost {
  background: transparent;
  color: var(--ink-inverse);
  border-color: rgba(250, 247, 242, 0.28);
}
.btn--on-ink-ghost:hover { background: rgba(250, 247, 242, 0.06); }

.btn--small { padding: 8px 14px; font-size: 13px; border-radius: var(--radius-sm); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}
.btn-text:hover { color: var(--accent); }
.btn-text .arrow { transition: transform .15s ease; }
.btn-text:hover .arrow { transform: translateX(2px); }
.btn-text--accent { color: var(--accent); }
.btn-text--accent:hover { color: var(--accent-hover); }

/* ---------------------------------------------------------------- *
 * Chips
 * ---------------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--bg-subtle);
  color: var(--ink-muted);
  border: 1px solid var(--border);
}
.chip--success { background: var(--success-tint); color: var(--success); border-color: transparent; }
.chip--info    { background: #ECF1F8; color: var(--info); border-color: transparent; }
.chip--accent  { background: rgba(10, 37, 64, 0.06); color: var(--ink); border-color: transparent; }
.chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor;
}

/* ---------------------------------------------------------------- *
 * Hero
 * ---------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 112px 0 96px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(to right, rgba(10, 37, 64, 0.04) 1px, transparent 1px);
  background-size: 80px 100%;
  mask-image: radial-gradient(80% 70% at 50% 0%, #000 0%, transparent 80%);
  opacity: 0.55;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero { padding: 56px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
}
.hero__copy .display-xl { margin-top: 16px; }
.hero__copy .body-l { margin-top: 20px; max-width: 560px; }
.hero__ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Single-column hero variant — when no right-column element is present
   (e.g. the homepage after the stock-band was stripped), collapse the
   .hero__inner two-column grid to a centred single column and let the
   H1 carry the gravity. CTAs stay LEFT-aligned within the centred
   measure so the hero reads editorial, not marketing-y. */
.hero__inner--single {
  grid-template-columns: 1fr;
  gap: 0;
  justify-items: center;
  text-align: center;
}
.hero__inner--single .hero__copy {
  max-width: 880px;
  width: 100%;
}
.hero__inner--single .hero__copy .display-xl {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}
.hero__inner--single .hero__copy .body-l {
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}
.hero__inner--single .hero__ctas {
  justify-content: flex-start;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 921px) {
  .hero:has(.hero__inner--single) { padding-block: 96px 72px; }
}

/* Catalogue UI mock — dense SKU table for hero */
.catalogue-mock {
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.catalogue-mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.catalogue-mock__head-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.catalogue-mock__head-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
}
.catalogue-mock__row {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px;
}
.catalogue-mock__row:last-child { border-bottom: 0; }
.catalogue-mock__sku {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.catalogue-mock__name {
  color: var(--ink-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catalogue-mock__row .chip { font-size: 11px; padding: 3px 8px; }

/* ---------------------------------------------------------------- *
 * Metric strip
 * ---------------------------------------------------------------- */
.metric-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  background: var(--bg);
}
.metric-strip__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .metric-strip__row { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric__value {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.metric__label {
  font-size: 13px;
  color: var(--ink-muted);
}

/* ---------------------------------------------------------------- *
 * Trust strip (partner / accreditation)
 * ---------------------------------------------------------------- */
.trust-strip {
  padding: 56px 0;
  background: var(--bg);
}
.trust-strip__head {
  text-align: center;
  margin-bottom: 28px;
}
.trust-strip__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 64px;
  opacity: 0.85;
}
.trust-strip__logo {
  display: flex; align-items: center; justify-content: center;
  height: 40px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 18px;
  background: var(--bg-elevated);
}
.trust-strip__certs {
  text-align: center;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-subtle);
  letter-spacing: 0.04em;
}

/* ---------------------------------------------------------------- *
 * Editorial card / why-Gent
 * ---------------------------------------------------------------- */
.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-1);
}
.feature-card .display-l { max-width: 760px; margin-top: 12px; }
.feature-card .body-l    { margin-top: 16px; max-width: 720px; }
.feature-card__points {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .feature-card { padding: 32px 24px; }
  .feature-card__points { grid-template-columns: 1fr; }
}
.feature-point .chip { margin-bottom: 8px; }

/* ---------------------------------------------------------------- *
 * Bento — product families
 * ---------------------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(160px, auto);
  gap: 16px;
}
.bento__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
.bento__tile:hover { border-color: var(--border-strong); box-shadow: var(--shadow-1); }

/* Asymmetric bento layout */
.bento__tile--hero { grid-column: span 4; grid-row: span 2; padding: 36px; }
.bento__tile--tall { grid-column: span 2; grid-row: span 2; }
.bento__tile--wide { grid-column: span 4; }
.bento__tile--half { grid-column: span 3; }
.bento__tile--third { grid-column: span 2; }

.bento__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.bento__sku { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-subtle); }
.bento__title { font-weight: 600; font-size: 18px; letter-spacing: -0.005em; color: var(--ink); margin-top: 6px; line-height: 1.3; }
.bento__tile--hero .bento__title { font-size: 28px; line-height: 1.2; letter-spacing: -0.02em; }
.bento__body { color: var(--ink-muted); font-size: 14px; line-height: 1.55; }
.bento__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; gap: 12px; }

/* Bento product imagery — sits at the top of each tile, blends with cream */
.bento__photo {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}
.bento__tile .bento__photo               { height: 110px; margin-bottom: 4px; }
.bento__tile--hero .bento__photo         { height: 200px; margin-bottom: 8px; }
.bento__tile--wide .bento__photo         { height: 130px; margin-bottom: 4px; }

.bento__bullets { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 8px; }
.bento__bullets li {
  font-size: 14px;
  color: var(--ink-muted);
  padding-left: 18px;
  position: relative;
}
.bento__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 1px;
  background: var(--ink-subtle);
}

.bento__stat {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.bento__stat-label { font-size: 13px; color: var(--ink-muted); margin-top: 8px; }

@media (max-width: 920px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__tile,
  .bento__tile--hero,
  .bento__tile--tall,
  .bento__tile--wide,
  .bento__tile--half,
  .bento__tile--third {
    grid-column: span 2;
    grid-row: auto;
  }
  .bento__tile--hero .bento__title { font-size: 24px; }
}
@media (max-width: 540px) {
  .bento { grid-template-columns: 1fr; }
  .bento__tile,
  .bento__tile--hero,
  .bento__tile--tall,
  .bento__tile--wide,
  .bento__tile--half,
  .bento__tile--third { grid-column: span 1; }
}

/* ---------------------------------------------------------------- *
 * Big-stat band on ink (voice-vs-bells)
 * ---------------------------------------------------------------- */
.feature-stat {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 920px) { .feature-stat { grid-template-columns: 1fr; gap: 32px; } }
.feature-stat__num {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(96px, 16vw, 168px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink-inverse);
  font-variant-numeric: tabular-nums;
}
.feature-stat__caption { font-size: 20px; line-height: 1.5; }
.feature-stat__attr {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(250, 247, 242, 0.6);
  font-style: normal;
}

/* ---------------------------------------------------------------- *
 * Catalogue browse teaser
 * ---------------------------------------------------------------- */
.cat-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-elevated);
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 14px 18px;
  max-width: 560px;
  margin: 24px auto 32px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.cat-search:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(10, 37, 64, 0.06);
}
.cat-search input {
  flex: 1;
  border: 0; outline: 0; background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
}
.cat-search input::placeholder { color: var(--ink-subtle); }
.cat-search svg { width: 18px; height: 18px; stroke: var(--ink-subtle); fill: none; stroke-width: 2; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
@media (max-width: 920px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s ease;
}
.cat-tile:hover { border-color: var(--border-strong); }
.cat-tile__name { font-size: 15px; font-weight: 600; color: var(--ink); }
.cat-tile__count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-subtle);
  letter-spacing: 0.04em;
}

/* ---------------------------------------------------------------- *
 * Service tiles (overview)
 * ---------------------------------------------------------------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .service-grid { grid-template-columns: 1fr; } }
.service-tile { padding: 12px 0; }
.service-tile__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink-subtle);
  margin-bottom: 12px;
}
.service-tile__name { font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -0.005em; }
.service-tile__body { margin-top: 6px; font-size: 14.5px; color: var(--ink-muted); line-height: 1.55; }
.service-tile__cta { margin-top: 14px; }

/* ---------------------------------------------------------------- *
 * Case-study cards
 * ---------------------------------------------------------------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .case-grid { grid-template-columns: 1fr; } }
.case-card {
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 16px;
}
.case-card__sector {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-subtle);
  text-transform: uppercase;
}
.case-card__title { font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.case-card__body { font-size: 14.5px; color: var(--ink-muted); line-height: 1.55; }
.case-card__outcome {
  margin-top: auto;
  padding: 14px 16px;
  background: rgba(10, 37, 64, 0.04);
  border-left: 3px solid var(--ink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------------------------------------------------------------- *
 * Testimonials
 * ---------------------------------------------------------------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  padding: 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 20px;
}
.testimonial blockquote {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.testimonial figcaption {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px;
  color: var(--ink-muted);
}
.testimonial__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.testimonial__name { color: var(--ink); font-weight: 600; }

/* ---------------------------------------------------------------- *
 * FAQ
 * ---------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; }
.faq__item {
  border-top: 1px solid var(--border);
  background: transparent;
}
.faq__item:last-child { border-bottom: 1px solid var(--border); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--ink-muted);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { content: '−'; }
.faq__item > p,
.faq__item > div {
  padding: 0 0 22px;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 720px;
}

/* ---------------------------------------------------------------- *
 * CTA band
 * ---------------------------------------------------------------- */
.cta-band {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 720px) { .cta-band { grid-template-columns: 1fr; } }
.cta-band__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}
.cta-band__sub {
  margin-top: 12px;
  font-size: 17px;
  color: rgba(250, 247, 242, 0.72);
  max-width: 540px;
}
.cta-band__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------- *
 * Footer
 * ---------------------------------------------------------------- */
.site-footer {
  background: var(--bg-ink);
  color: var(--ink-inverse);
  padding: 80px 0 48px;
}
.site-footer .trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.08);
  margin-bottom: 48px;
  opacity: 0.6;
}
.site-footer .trust-row__logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-inverse);
  border: 1px solid rgba(250, 247, 242, 0.24);
  border-radius: var(--radius);
  padding: 8px 14px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 920px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.site-footer__brand img { height: 32px; filter: brightness(0) invert(1); margin-bottom: 24px; }
.site-footer__brand address {
  font-style: normal;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.7);
}
.site-footer__brand address strong { color: var(--ink-inverse); font-weight: 600; }
.site-footer__brand .phone {
  display: block;
  font-family: var(--font-mono);
  font-size: 18px;
  margin-top: 16px;
  color: var(--ink-inverse);
  letter-spacing: 0.02em;
}
.site-footer__col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-inverse);
  margin: 0 0 16px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin: 0 0 10px; }
.site-footer__col a {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.7);
  transition: color .15s ease;
}
.site-footer__col a:hover { color: var(--ink-inverse); }

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 242, 0.5);
}

/* ---------------------------------------------------------------- *
 * Breadcrumbs (product page)
 * ---------------------------------------------------------------- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-subtle);
  margin: 24px 0 0;
}
.breadcrumbs a { color: var(--ink-muted); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { opacity: 0.5; }

/* ---------------------------------------------------------------- *
 * Product page — header
 * ---------------------------------------------------------------- */
.product-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-top: 32px;
}
@media (max-width: 920px) { .product-head { grid-template-columns: 1fr; gap: 32px; } }
.product-photo {
  aspect-ratio: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.product-photo svg {
  width: 60%;
  height: 60%;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.2;
  opacity: 0.55;
}
.product-photo .placeholder-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.product-meta__sku { font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); }
.product-meta h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  color: var(--ink);
}
.product-meta__lead { font-size: 17px; line-height: 1.55; color: var(--ink-muted); max-width: 560px; }
.product-meta__chips { margin-top: 20px; display: flex; gap: 8px; flex-wrap: wrap; }
.product-meta__checked {
  margin: 12px 0 0;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-subtle);
}
.product-meta__checked time { color: var(--ink-muted); }
.product-meta__ship {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-muted);
  display: flex; align-items: center; gap: 8px;
}
.product-meta__actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------------------------------------------------------------- *
 * At-a-glance spec strip
 * ---------------------------------------------------------------- */
.glance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  margin-top: 56px;
  overflow: hidden;
}
@media (max-width: 720px) { .glance { grid-template-columns: repeat(2, 1fr); } }
.glance__cell {
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.glance__cell:last-child { border-right: 0; }
@media (max-width: 720px) {
  .glance__cell:nth-child(2n) { border-right: 0; }
  .glance__cell:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}
.glance__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  font-family: var(--font-mono);
}
.glance__value {
  margin-top: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------- *
 * Editorial 2-column block
 * ---------------------------------------------------------------- */
.editorial {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 920px) { .editorial { grid-template-columns: 1fr; gap: 32px; } }
.editorial__body { font-size: 17.5px; line-height: 1.65; color: var(--ink); }
.editorial__body p + p { margin-top: 16px; }
.editorial__quote {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
  border-left: 1px solid var(--border-strong);
  padding: 4px 0 4px 20px;
  letter-spacing: -0.005em;
}
.editorial__quote-attr {
  display: block;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  font-style: normal;
}

/* ---------------------------------------------------------------- *
 * Feature 6-tile grid (on product page)
 * ---------------------------------------------------------------- */
.featurelets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 920px) { .featurelets { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .featurelets { grid-template-columns: 1fr; } }
.featurelet {
  padding: 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.featurelet__icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.featurelet__icon svg { width: 16px; height: 16px; stroke: var(--ink); fill: none; stroke-width: 1.6; }
.featurelet h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin: 0 0 6px; }
.featurelet p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--ink-muted); }

/* ---------------------------------------------------------------- *
 * Compatible devices (horizontal row)
 * ---------------------------------------------------------------- */
.compat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 720px) { .compat-row { grid-template-columns: 1fr 1fr; } }
.compat-card {
  padding: 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s ease;
}
.compat-card:hover { border-color: var(--border-strong); }
.compat-card__sku { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-muted); }
.compat-card__name { font-size: 14.5px; font-weight: 600; color: var(--ink); margin-top: 4px; line-height: 1.35; }

/* ---------------------------------------------------------------- *
 * Spec table
 * ---------------------------------------------------------------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}
.spec-table th {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  font-weight: 600;
  background: var(--bg);
}
.spec-table td:first-child { color: var(--ink-muted); width: 44%; }
.spec-table td:last-child { color: var(--ink); font-family: var(--font-mono); font-size: 13.5px; }

/* ---------------------------------------------------------------- *
 * Download cards
 * ---------------------------------------------------------------- */
.downloads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 720px) { .downloads { grid-template-columns: 1fr; } }
.download-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s ease;
}
.download-card:hover { border-color: var(--border-strong); }
.download-card__icon {
  width: 40px; height: 48px;
  border: 1px solid var(--border-strong);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}
.download-card__name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.download-card__meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-subtle); margin-top: 2px; }

/* ---------------------------------------------------------------- *
 * Visually-hidden (accessibility)
 * ---------------------------------------------------------------- */
.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;
}

/* ---------------------------------------------------------------- *
 * Reduced motion
 * ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto !important; }
  .btn-text:hover .arrow { transform: none !important; }
}

/* FAQ summary focus visible */
.faq__item summary:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}
/* SKU strings can break narrow viewports */
.mono-sku, .catalogue-mock__sku, .product-meta__sku { overflow-wrap: anywhere; }

/* === Rollout 2026-06: stock + page hero + form + timeline + contact + hub === */

/* ---------------------------------------------------------------- *
 * Stock band — "in stock now" confidence widget
 * ---------------------------------------------------------------- */
.stock-band {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.stock-band--cream { background: var(--bg-subtle); }
.stock-band--white { background: var(--bg-elevated); }
.stock-band__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 37, 64, 0.02);
}
.stock-band__head-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink);
}
.stock-band__head-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
}
.stock-band__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.stock-band__row:last-child { border-bottom: 0; }
.stock-band__sku {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 160px;
  overflow-wrap: anywhere;
}
.stock-band__name {
  flex: 1;
  font-size: 14.5px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.stock-band__cta {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stock-band__cta:hover { color: var(--accent-hover); }
@media (max-width: 720px) {
  .stock-band__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .stock-band__row { flex-wrap: wrap; gap: 8px 12px; padding: 12px 16px; }
  .stock-band__sku { min-width: 0; }
  .stock-band__name { white-space: normal; flex-basis: 100%; }
  .stock-band__cta { margin-left: 0; }
}

/* ---------------------------------------------------------------- *
 * Featured stock card grid
 * ---------------------------------------------------------------- */
.stock-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) {
  .stock-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .stock-card-grid { grid-template-columns: 1fr; }
}
.stock-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.stock-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--border-strong);
}
.stock-card__photo {
  width: 112px;
  height: 112px;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.stock-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.stock-card__meta { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.stock-card__sku {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  overflow-wrap: anywhere;
}
.stock-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.stock-card__row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 600px) {
  .stock-card { grid-template-columns: 1fr; gap: 12px; }
  .stock-card__photo { width: 100%; height: auto; aspect-ratio: 1 / 1; }
}

/* ---------------------------------------------------------------- *
 * Page hero — slimmer hero without catalogue mock
 * ---------------------------------------------------------------- */
.hero--page { padding: 80px 0 56px; }
.hero--page .hero__inner {
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 760px;
}
.hero--page .hero__copy .body-l { max-width: 640px; }
.hero--page .hero__ctas { margin-top: 28px; }
@media (max-width: 720px) {
  .hero--page { padding: 48px 0 32px; }
}

/* ---------------------------------------------------------------- *
 * Form primitives
 * ---------------------------------------------------------------- */
.form {
  display: grid;
  gap: 16px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .form__row { grid-template-columns: 1fr; }
}
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.form__control,
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="number"],
.form input[type="url"],
.form input[type="search"],
.form input[type="date"],
.form select,
.form textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.form select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%),
    linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.form__control:focus,
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.12);
}
.form__control::placeholder,
.form input::placeholder,
.form textarea::placeholder { color: var(--ink-muted); opacity: 0.7; }
.form__note {
  font-size: 12.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  cursor: pointer;
}
.form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.form__submit { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
@media (max-width: 540px) {
  .form__submit { flex-direction: column; align-items: stretch; }
  .form__submit .btn { width: 100%; justify-content: center; }
}

/* ---------------------------------------------------------------- *
 * Timeline — about page
 * ---------------------------------------------------------------- */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 1px solid var(--border-strong);
  padding-left: 32px;
  position: relative;
}
.timeline__item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 20px 0;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.timeline__item:last-child { border-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -38px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--border-strong);
}
.timeline__year {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.timeline__content h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.timeline__content p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.6;
}
@media (max-width: 720px) {
  .timeline { padding-left: 24px; }
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 0;
  }
  .timeline__item::before { left: -30px; top: 22px; }
}

/* ---------------------------------------------------------------- *
 * Contact grid — 4 cards
 * ---------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 920px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  border-color: var(--border-strong);
}
.contact-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.contact-card__body {
  margin: 0;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.55;
  font-style: normal;
}
.contact-card__body a { color: var(--ink); }
.contact-card__cta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.contact-card__cta:hover { color: var(--accent-hover); }

/* ---------------------------------------------------------------- *
 * Products hub — search + category groups
 * ---------------------------------------------------------------- */
.hub-search {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.hub-search:focus-within {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.12);
}
.hub-search svg {
  width: 18px;
  height: 18px;
  stroke: var(--ink-muted);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.hub-search__input {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  padding: 4px 0;
}
.hub-search__input::placeholder { color: var(--ink-muted); opacity: 0.7; }

.hub-cat-section { margin-top: 48px; }
.hub-cat-section:first-of-type { margin-top: 0; }
.hub-cat-section__title {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-strong);
}
.hub-cat-group {
  border-bottom: 1px solid var(--border);
  padding: 4px 0;
}
.hub-cat-group > summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.hub-cat-group > summary::-webkit-details-marker { display: none; }
.hub-cat-group > summary::after {
  content: '+';
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-muted);
  line-height: 1;
  transition: transform .15s ease;
}
.hub-cat-group[open] > summary::after { content: '−'; }
.hub-cat-group__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 22px;
  padding: 0 8px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  background: var(--accent-tint);
  border-radius: var(--radius-pill);
}
.hub-cat-group__name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hub-sku-list {
  list-style: none;
  padding: 0 0 16px 46px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hub-sku-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink);
  transition: background-color .15s ease, color .15s ease;
}
.hub-sku-list a:hover {
  background: var(--accent-tint);
  color: var(--accent);
}
.hub-sku-list .mono-sku {
  font-size: 12px;
  color: var(--ink-muted);
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .hub-sku-list { padding-left: 12px; }
  .hub-sku-list a { flex-wrap: wrap; gap: 4px; }
}

/* ---------------------------------------------------------------- *
 * Footer column heading — markup uses <h2>/<h3>, mirror the h4 rule
 * ---------------------------------------------------------------- */
.site-footer__col h2,
.site-footer__col h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-inverse);
  margin: 0 0 16px;
}

/* ---------------------------------------------------------------- *
 * Stock narrative block — ink banner inside feature sections
 * ---------------------------------------------------------------- */
.stock-narrative {
  background: var(--bg-ink);
  color: var(--ink-inverse);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stock-narrative__heading {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-inverse);
}
.stock-narrative__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.85);
}
.stock-narrative__row svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--accent);
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stock-narrative__row strong { color: var(--ink-inverse); font-weight: 600; }
@media (max-width: 540px) {
  .stock-narrative { padding: 24px; }
  .stock-narrative__heading { font-size: 19px; }
}

/* ---------------------------------------------------------------- *
 * Small utilities
 * ---------------------------------------------------------------- */
.text-center { text-align: center; }
.gap-12 { gap: 12px; }
.gap-24 { gap: 24px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
}

/* ---------------------------------------------------------------- *
 * Accreditation badges (Gent Platinum / BAFE / FIA) — fixed-size
 * cards so the three JPGs sit on consistent cream tiles, not
 * fighting each other for visual weight.
 * ---------------------------------------------------------------- */
.trust-strip__logos--badges {
  gap: 32px 48px;
  opacity: 1;
}
.trust-strip__logo--badge {
  display: block;
  height: 96px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

/* ---------------------------------------------------------------- *
 * Manufacturer logo strip — official Honeywell Gent / Morley / Xtralis
 * marks. Each sits on a generous cream card so the cream + ink palette
 * stays consistent even when a source artwork carries its own white
 * background.
 * ---------------------------------------------------------------- */
.manufacturer-strip {
  display: grid;
  /* Gent is the prime brand — give it twice the column width so the
     stacked Honeywell + GENT mark can scale much larger than the wide
     Morley wordmark and the small Xtralis mark. */
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 920px) { .manufacturer-strip { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .manufacturer-strip { grid-template-columns: 1fr; } }

.manufacturer-strip__tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  padding: 18px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .15s ease, transform .15s ease;
}
.manufacturer-strip__tile:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
}
.manufacturer-strip__tile img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Override the global product-image desaturation — these are
     brand marks and must read at full saturation. */
  filter: none;
  aspect-ratio: auto;
}
/* Per-mark target heights — each artwork has a different intrinsic
   aspect ratio, so locking explicit heights is the only way to keep
   the visual weights balanced. Gent dominates by both width
   (2-column tile) and height. */
.manufacturer-strip__tile[aria-label*="Gent"] {
  padding: 14px 24px;
}
.manufacturer-strip__tile[aria-label*="Gent"] img {
  height: 220px;
  max-height: 220px;
  width: auto;
  max-width: 100%;
}
.manufacturer-strip__tile[aria-label*="Morley"] img {
  height: 96px;
  max-height: 96px;
  width: auto;
  max-width: 92%;
}
.manufacturer-strip__tile[aria-label*="Xtralis"] img {
  height: 52px;
  max-height: 52px;
  width: auto;
  max-width: 80%;
}
/* Tile variant for source artworks that still carry a white background
   (e.g. the Morley JPG). White card so the artwork doesn't sit on a
   subtle cream-on-white tonal step. */
.manufacturer-strip__tile--card {
  background: #fff;
}

/* ---------------------------------------------------------------- *
 * Product imagery — tone down the bright manufacturer reds so the
 * page reads as editorial trade-supply rather than catalogue. Slight
 * desaturation + a hint of warmth keeps the recognisably-red products
 * harmonised with the cream + ink palette.
 *
 * Defensive aspect-ratio + object-fit also stops 1:1 source images
 * stretching inside flex/grid cells on narrow viewports.
 * ---------------------------------------------------------------- */
.bento__photo,
.stock-card__photo img,
.product-photo img {
  filter: saturate(0.55) contrast(1.04);
  aspect-ratio: 1 / 1;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
.stock-card__photo img,
.product-photo img { width: 100%; height: 100%; }
.bento__photo { height: 110px; }
.bento__tile--hero .bento__photo { height: 200px; }
.bento__tile--wide .bento__photo { height: 130px; }

/* ---------------------------------------------------------------- *
 * Quote builder — SKU search box, autocomplete suggestions, line
 * table with qty + remove. Lives only on quote.html.
 * ---------------------------------------------------------------- */
.quote-builder { display: grid; gap: 32px; }
.quote-builder__panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.quote-builder__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  margin-bottom: 20px;
}
.quote-builder__head h2 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}
.quote-builder__head p { margin: 0; color: var(--ink-muted); font-size: 14.5px; }

.quote-add-row {
  display: grid;
  grid-template-columns: 1fr 120px auto;
  gap: 12px;
  align-items: end;
}
@media (max-width: 720px) {
  .quote-add-row { grid-template-columns: 1fr 100px; }
  .quote-add-row .btn { grid-column: 1 / -1; }
}
.quote-add-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  margin-bottom: 6px;
}
.quote-add-row input[type="text"],
.quote-add-row input[type="number"] {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.quote-add-row input:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10, 37, 64, 0.08);
}
.sku-suggest { position: relative; }
.sku-suggest__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-2);
  max-height: 320px;
  overflow-y: auto;
}
.sku-suggest__item {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 12px;
  align-items: baseline;
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 10px 14px;
  text-align: left;
  cursor: pointer;
  font: inherit;
}
.sku-suggest__item:last-child { border-bottom: 0; }
.sku-suggest__item:hover,
.sku-suggest__item.is-active { background: var(--bg); }
.sku-suggest__item strong {
  color: var(--ink);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sku-suggest__desc {
  color: var(--ink-muted);
  font-size: 13.5px;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.sku-suggest__empty {
  padding: 14px;
  color: var(--ink-subtle);
  font-size: 13.5px;
}

.quote-builder__table-wrap { overflow-x: auto; margin-top: 24px; }
.quote-builder__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
}
.quote-builder__table thead th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-subtle);
  padding: 12px 12px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.quote-builder__table tbody td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.quote-builder__table tbody tr:last-child td { border-bottom: 0; }
.quote-row__sku { font-weight: 600; color: var(--ink); white-space: nowrap; }
.quote-row__desc { color: var(--ink-muted); line-height: 1.5; }
.quote-row__qty input[type="number"] {
  width: 72px;
  padding: 8px 10px;
  font: inherit;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  text-align: center;
}
.quote-row__actions { width: 40px; text-align: right; }
.quote-row__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.quote-row__remove:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-tint);
}

.quote-builder__empty {
  margin-top: 16px;
  color: var(--ink-subtle);
  font-size: 14px;
}
