/* =============================================================
   VANGUARD STEEL WORKS — Heavy Plate Fabrication & Structural Steel
   Inland Empire, California · Established 1962
   ----
   Design DNA: Blueprint-and-mill aesthetic. Trade publication
   typography (Barlow Condensed compressed display), concrete-gray
   sections, hi-vis yellow and brick red accents that read like a
   shop-floor PPE chart. Dimensional callouts, visible grid lines,
   technical drawing motifs. Grayscale photography that surrenders
   color only on engagement. NO orange, no oilfield cinematic
   palette — this is steel, weld, plate, beam.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800;900&family=Work+Sans:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600;700&display=swap');

:root {
  /* ---- Core palette: trade publication / shop floor ---- */
  --concrete:        #B8B5B0;   /* concrete gray — section bg */
  --concrete-light:  #CFCCC6;
  --concrete-dark:   #8E8B86;
  --bone:            #E8E5DF;   /* dusty bone */
  --paper:           #F2EFE9;   /* mill paper */
  --charcoal:        #1F2024;   /* deep charcoal body */
  --charcoal-2:      #2A2C31;
  --charcoal-3:      #3A3D43;
  --steel:           #4A4F55;   /* mill-finish steel */
  --steel-light:     #6A6F75;
  --steel-line:      #5A5F65;
  --hi-vis:          #FFD60A;   /* hi-vis yellow — the accent */
  --hi-vis-deep:     #D9B500;
  --hi-vis-soft:     #FFE85C;
  --brick:           #B83A29;   /* brick red — emphasis only */
  --brick-deep:      #8E2A1D;
  --rust-shadow:     #6B2A1E;
  --weld-blue:       #2A3F55;   /* welder arc blue, used sparingly */
  --slag:            #524B40;
  --grid:            rgba(31, 32, 36, 0.08);
  --grid-strong:     rgba(31, 32, 36, 0.16);
  --grid-bright:     rgba(31, 32, 36, 0.28);
  --hairline:        rgba(31, 32, 36, 0.18);
  --hairline-dark:   rgba(232, 229, 223, 0.16);
  --hairline-dark-strong: rgba(232, 229, 223, 0.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  font-family: 'Work Sans', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

::selection { background: var(--hi-vis); color: var(--charcoal); }

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 36px;
  position: relative;
}
@media (max-width: 900px) { .container { padding: 0 22px; } }

/* =============================================================
   TYPE SYSTEM — Barlow Condensed for compressed industrial display
   ============================================================= */
.display, .h-hero, .h-section, .h-card, .h-eyebrow, .h-mega {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.92;
  color: var(--charcoal);
}
.h-mega {
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 0.86;
}
.h-hero {
  font-size: clamp(3.25rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.88;
}
.h-hero .hi-vis { color: var(--hi-vis); }
.h-hero .brick { color: var(--brick); }
.h-hero .stroke {
  -webkit-text-stroke: 2px var(--bone);
  color: transparent;
}
.h-section {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.005em;
}
.h-section .hi-vis { color: var(--hi-vis-deep); }
.h-section .brick { color: var(--brick); }
.h-card {
  font-size: clamp(1.375rem, 1.9vw, 1.875rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 1.08;
}
.h-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.h-eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--hi-vis);
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-1px);
}
.h-eyebrow .dot--brick { background: var(--brick); }

.mono {
  font-family: 'IBM Plex Mono', monospace;
  font-feature-settings: "zero", "ss03";
}

p { font-size: 1rem; color: var(--steel); max-width: 64ch; }
.lede { font-size: 1.2rem; line-height: 1.55; color: var(--charcoal-2); max-width: 60ch; }
.fine { font-size: 0.8125rem; color: var(--steel-light); letter-spacing: 0.02em; }

/* =============================================================
   BLUEPRINT GRID — decorative background lines
   ============================================================= */
.blueprint-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, var(--grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
}
.blueprint-grid--strong {
  background-image:
    linear-gradient(to right, var(--grid-strong) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-strong) 1px, transparent 1px);
}
.blueprint-grid--dark {
  background-image:
    linear-gradient(to right, var(--hairline-dark) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hairline-dark) 1px, transparent 1px);
}

/* Dimensional callouts — drafting style */
.callout {
  position: absolute;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  pointer-events: none;
  z-index: 2;
}
.callout::before, .callout::after {
  content: '';
  position: absolute;
  background: var(--steel);
}
.callout--h::before { left: -34px; top: 50%; width: 28px; height: 1px; }
.callout--h::after  { left: -34px; top: calc(50% - 4px); width: 1px; height: 9px; }
.callout--v::before { top: -28px; left: 50%; width: 1px; height: 24px; }
.callout--v::after  { top: -28px; left: calc(50% - 4px); width: 9px; height: 1px; }

/* =============================================================
   TOP UTILITY BAR — like a tooling spec strip
   ============================================================= */
.utility {
  background: var(--charcoal);
  color: var(--bone);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hairline-dark);
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
  gap: 24px;
}
.utility-left, .utility-right {
  display: flex;
  gap: 28px;
  align-items: center;
}
.utility-item .lab { color: var(--steel-light); margin-right: 6px; }
.utility-item .val { color: var(--bone); }
.utility-item .val--vis { color: var(--hi-vis); }
.utility-item .val--brick { color: var(--brick); font-weight: 600; }
.utility .ticker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hi-vis);
  box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 214, 10, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(255, 214, 10, 0.05); }
}
@media (max-width: 900px) {
  .utility-inner { height: auto; padding: 8px 0; flex-wrap: wrap; gap: 8px 18px; }
  .utility-left, .utility-right { gap: 14px; }
}

/* =============================================================
   PRIMARY NAV — heavy bar with cert badges
   ============================================================= */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 2px solid var(--charcoal);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--charcoal);
}
.brand-mark {
  width: 52px; height: 52px;
  background: var(--charcoal);
  color: var(--hi-vis);
  display: grid;
  place-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  position: relative;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--hi-vis);
}
.brand-wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--charcoal);
}
.brand-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 0;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--charcoal);
  padding: 10px 18px;
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 18px; right: 18px;
  bottom: 2px;
  height: 2px;
  background: var(--hi-vis);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--charcoal); }
.nav-cert-strip {
  display: flex;
  gap: 8px;
  padding: 0 18px;
  border-left: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  align-self: stretch;
  align-items: center;
}
.cert-chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 5px 8px;
  border: 1px solid var(--charcoal);
  background: var(--paper);
}
.cert-chip--vis { background: var(--hi-vis); border-color: var(--hi-vis-deep); }
.btn-quote {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--charcoal);
  background: var(--hi-vis);
  padding: 16px 26px;
  border: 2px solid var(--charcoal);
  position: relative;
  transition: transform 0.18s ease, background 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.btn-quote::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  z-index: -1;
  transform: translate(5px, 5px);
  transition: transform 0.18s ease;
}
.btn-quote:hover {
  transform: translate(2px, 2px);
  background: var(--hi-vis-soft);
}
.btn-quote:hover::after { transform: translate(3px, 3px); }
.btn-quote .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn-quote:hover .arrow { transform: translateX(3px); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--charcoal);
  color: var(--hi-vis);
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--hi-vis); margin: 4px auto;
}

@media (max-width: 1100px) {
  .nav-cert-strip { display: none; }
}
@media (max-width: 900px) {
  .nav-inner { height: 72px; gap: 14px; }
  .brand-wordmark { font-size: 18px; }
  .brand-sub { font-size: 8.5px; }
  .nav-links { display: none; }
  .btn-quote { padding: 12px 18px; font-size: 13px; }
  .nav-toggle { display: block; }
}

/* =============================================================
   HERO — full-bleed photo + overlay headline
   ============================================================= */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--bone);
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.55);
  z-index: 1;
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,32,36,0.35) 0%, rgba(31,32,36,0.55) 50%, rgba(31,32,36,0.92) 100%),
    linear-gradient(90deg, rgba(31,32,36,0.65) 0%, rgba(31,32,36,0.15) 50%, rgba(31,32,36,0.65) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--hairline-dark) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hairline-dark) 1px, transparent 1px);
  background-size: 100px 100px;
  z-index: 2;
  opacity: 0.55;
}
.hero-inner {
  position: relative;
  z-index: 3;
  padding: 130px 0 110px;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hi-vis);
}
.hero-eyebrow::before {
  content: '';
  width: 56px; height: 1px;
  background: var(--hi-vis);
}
.hero h1.h-hero {
  color: var(--bone);
  max-width: 1100px;
  margin-bottom: 38px;
}
.hero h1.h-hero .row { display: block; }
.hero-sub {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--concrete-light);
  max-width: 580px;
  margin-bottom: 56px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-bottom: 64px;
}
.btn-ghost {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bone);
  border: 2px solid var(--bone);
  padding: 16px 26px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: var(--bone); color: var(--charcoal); }

/* Capability ticker — runs along bottom of hero */
.cap-ticker {
  position: relative;
  z-index: 4;
  background: var(--hi-vis);
  color: var(--charcoal);
  border-top: 3px solid var(--charcoal);
  border-bottom: 3px solid var(--charcoal);
  overflow: hidden;
}
.cap-ticker-track {
  display: flex;
  gap: 48px;
  padding: 18px 0;
  align-items: center;
  white-space: nowrap;
  animation: ticker 38s linear infinite;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cap-ticker-track span.sep {
  width: 8px; height: 8px;
  background: var(--charcoal);
  display: inline-block;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero-inner { padding: 80px 0 70px; min-height: 70vh; }
  .hero-sub { margin-bottom: 36px; }
  .hero-cta-row { margin-bottom: 36px; }
  .cap-ticker-track { font-size: 14px; gap: 28px; padding: 14px 0; }
}

/* =============================================================
   STATS BAND — under hero, charcoal
   ============================================================= */
.stat-band {
  background: var(--charcoal);
  color: var(--bone);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.stat-band .blueprint-grid--dark {
  background-size: 120px 120px;
  opacity: 0.5;
}
.stat-band .container { position: relative; z-index: 2; }
.stat-band-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 30px;
}
.stat-band-top .left { max-width: 640px; }
.stat-band-top h2.h-section { color: var(--bone); }
.stat-band-top h2 .hi-vis { color: var(--hi-vis); }
.stat-band-top .lede { color: var(--concrete-light); margin-top: 24px; }
.stat-band-top .right { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel-light); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-dark-strong);
  border-bottom: 1px solid var(--hairline-dark-strong);
}
.stat-cell {
  padding: 40px 28px;
  border-right: 1px solid var(--hairline-dark);
  position: relative;
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 18px;
}
.stat-cell .val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 0.92;
  color: var(--bone);
  letter-spacing: -0.01em;
}
.stat-cell .val .unit {
  font-size: 0.5em;
  color: var(--hi-vis);
  margin-left: 6px;
  font-weight: 600;
}
.stat-cell .note {
  font-family: 'Work Sans', sans-serif;
  font-size: 12px;
  color: var(--concrete);
  margin-top: 14px;
  letter-spacing: 0.03em;
}
@media (max-width: 900px) {
  .stat-band { padding: 60px 0; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 28px 18px; border-bottom: 1px solid var(--hairline-dark); }
  .stat-cell:nth-child(2) { border-right: 0; }
}

/* =============================================================
   SECTION SCAFFOLD
   ============================================================= */
.section {
  padding: 130px 0;
  position: relative;
}
.section--concrete { background: var(--concrete); }
.section--paper { background: var(--paper); }
.section--bone { background: var(--bone); }
.section--charcoal { background: var(--charcoal); color: var(--bone); }
.section--charcoal h2.h-section { color: var(--bone); }
.section--charcoal p, .section--charcoal .lede { color: var(--concrete-light); }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 90px;
  align-items: end;
}
.section-head .left { }
.section-head .right { padding-bottom: 4px; }
.section-head .eyebrow-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.section-head .eyebrow-row::before {
  content: '';
  width: 56px; height: 1px;
  background: var(--charcoal);
}
.section--charcoal .section-head .eyebrow-row::before { background: var(--hi-vis); }
.section--charcoal .section-head .eyebrow-row .h-eyebrow { color: var(--hi-vis); }

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }
}

/* =============================================================
   CAPABILITY THREE-UP — fabrication / machining / field
   ============================================================= */
.cap-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
}
.cap-three .col {
  padding: 56px 40px 64px;
  border-right: 1px solid var(--charcoal);
  background: var(--paper);
  position: relative;
  transition: background 0.3s ease;
}
.cap-three .col:last-child { border-right: 0; }
.cap-three .col:hover { background: var(--bone); }
.cap-three .col .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--brick);
  margin-bottom: 36px;
  display: block;
}
.cap-three .col h3.h-card { margin-bottom: 22px; max-width: 22ch; }
.cap-three .col p { margin-bottom: 28px; color: var(--charcoal-3); }
.cap-three .col ul {
  list-style: none;
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
}
.cap-three .col ul li {
  padding: 9px 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--hairline);
}
.cap-three .col ul li .v { color: var(--brick); font-weight: 600; }
.cap-three .col .more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--hi-vis);
  transition: gap 0.2s ease;
}
.cap-three .col .more:hover { gap: 16px; }
@media (max-width: 900px) {
  .cap-three { grid-template-columns: 1fr; }
  .cap-three .col { border-right: 0; border-bottom: 1px solid var(--charcoal); padding: 40px 24px; }
  .cap-three .col:last-child { border-bottom: 0; }
}

/* =============================================================
   CAPABILITY TABLE — max plate / max weight / crane / beam
   ============================================================= */
.cap-table-wrap { position: relative; }
.cap-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid var(--charcoal);
  background: var(--paper);
}
.cap-table thead th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
  padding: 18px 22px;
  color: var(--charcoal);
  background: var(--bone);
  border-bottom: 2px solid var(--charcoal);
}
.cap-table tbody td {
  padding: 24px 22px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: middle;
  font-size: 15px;
  color: var(--charcoal-2);
}
.cap-table tbody tr:hover { background: var(--bone); }
.cap-table tbody td.spec-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  width: 28%;
}
.cap-table tbody td.spec-val {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 600;
  font-size: 17px;
  color: var(--brick);
  width: 22%;
}
.cap-table tbody td.spec-note { color: var(--steel); font-size: 14px; line-height: 1.45; }
.cap-table tbody td.spec-cert {
  width: 18%;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.cap-table tbody td.spec-cert span {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid var(--charcoal);
  background: var(--paper);
}
@media (max-width: 900px) {
  .cap-table thead { display: none; }
  .cap-table tbody tr { display: block; padding: 18px 0; border-bottom: 1px solid var(--hairline); }
  .cap-table tbody td { display: block; padding: 6px 0; border: 0; width: 100%; }
  .cap-table tbody td.spec-name { font-size: 20px; }
}

/* =============================================================
   PROJECT PORTFOLIO GRID — grayscale-to-color
   ============================================================= */
.portfolio {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.proj {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.proj--lg { grid-column: span 7; aspect-ratio: 4 / 3; }
.proj--md { grid-column: span 5; aspect-ratio: 4 / 3; }
.proj--sm { grid-column: span 4; aspect-ratio: 1 / 1; }
.proj-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.78);
  transition: filter 0.6s ease, transform 0.8s ease;
}
.proj:hover .proj-img {
  filter: grayscale(0) contrast(1.05) brightness(0.85);
  transform: scale(1.04);
}
.proj-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--bone);
  background: linear-gradient(180deg, rgba(31,32,36,0.2) 0%, rgba(31,32,36,0) 40%, rgba(31,32,36,0.85) 100%);
}
.proj-tag {
  align-self: flex-start;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--hi-vis);
  color: var(--charcoal);
  padding: 6px 10px;
  border: 1px solid var(--charcoal);
}
.proj-tag--brick { background: var(--brick); color: var(--bone); border-color: var(--rust-shadow); }
.proj-meta {
  border-top: 1px solid rgba(232, 229, 223, 0.35);
  padding-top: 18px;
}
.proj-meta .h-card {
  color: var(--bone);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  margin-bottom: 8px;
}
.proj-meta .sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--concrete);
}
.proj-meta .sub .brick { color: var(--hi-vis); }
@media (max-width: 900px) {
  .portfolio { grid-template-columns: 1fr; gap: 16px; }
  .proj--lg, .proj--md, .proj--sm { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* =============================================================
   CERTIFICATIONS STRIP
   ============================================================= */
.cert-strip {
  background: var(--charcoal);
  color: var(--bone);
  padding: 70px 0;
  border-top: 4px solid var(--hi-vis);
  border-bottom: 1px solid var(--hairline-dark);
}
.cert-strip-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}
.cert-strip-top h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--bone);
}
.cert-strip-top h3 .hi-vis { color: var(--hi-vis); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}
.cert-grid .cert {
  padding: 32px 22px;
  border-right: 1px solid var(--hairline-dark);
  text-align: left;
}
.cert-grid .cert:last-child { border-right: 0; }
.cert-grid .cert .code {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: 0.01em;
  color: var(--hi-vis);
  line-height: 1;
  margin-bottom: 14px;
}
.cert-grid .cert .desc {
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  color: var(--concrete-light);
  line-height: 1.45;
  max-width: 22ch;
}
.cert-grid .cert .since {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-top: 14px;
}
@media (max-width: 900px) {
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid .cert { border-bottom: 1px solid var(--hairline-dark); padding: 22px 16px; }
}

/* =============================================================
   EQUIPMENT ROSTER
   ============================================================= */
.equip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
}
.equip {
  padding: 36px 26px 44px;
  border-right: 1px solid var(--charcoal);
  background: var(--paper);
  position: relative;
  transition: background 0.3s ease;
}
.equip:last-child { border-right: 0; }
.equip:hover { background: var(--bone); }
.equip .photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  transition: filter 0.4s ease;
  margin-bottom: 24px;
}
.equip:hover .photo { filter: grayscale(0) contrast(1.05); }
.equip h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.equip .spec {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 14px;
}
.equip p { font-size: 14px; color: var(--steel); }
@media (max-width: 1100px) {
  .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .equip:nth-child(2) { border-right: 0; }
  .equip:nth-child(1), .equip:nth-child(2) { border-bottom: 1px solid var(--charcoal); }
}
@media (max-width: 600px) {
  .equip-grid { grid-template-columns: 1fr; }
  .equip { border-right: 0; border-bottom: 1px solid var(--charcoal); }
}

/* =============================================================
   CAREERS / APPRENTICESHIP CTA
   ============================================================= */
.careers {
  background: var(--brick);
  color: var(--paper);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.careers .blueprint-grid {
  background-image:
    linear-gradient(to right, rgba(242,239,233,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(242,239,233,0.08) 1px, transparent 1px);
}
.careers-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.careers h2 { color: var(--paper); }
.careers h2 .stroke {
  -webkit-text-stroke: 2px var(--paper);
  color: transparent;
}
.careers p { color: rgba(242, 239, 233, 0.85); font-size: 1.1rem; max-width: 50ch; margin-top: 28px; }
.careers .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(242, 239, 233, 0.25);
  border-bottom: 1px solid rgba(242, 239, 233, 0.25);
}
.careers .stat-row .item { padding: 24px 18px; border-right: 1px solid rgba(242, 239, 233, 0.18); }
.careers .stat-row .item:last-child { border-right: 0; }
.careers .stat-row .item .val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--hi-vis);
  line-height: 1;
}
.careers .stat-row .item .lab {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  margin-top: 10px;
  display: block;
  opacity: 0.85;
}
.careers .btn-quote {
  background: var(--hi-vis);
  border-color: var(--paper);
  color: var(--charcoal);
  margin-top: 40px;
}
.careers .btn-quote::after { background: var(--paper); }
@media (max-width: 900px) {
  .careers { padding: 70px 0; }
  .careers-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================================
   FOOTER — safety stats + sitemap
   ============================================================= */
.foot {
  background: var(--charcoal);
  color: var(--bone);
  padding: 100px 0 0;
}
.foot .safety-band {
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 80px;
}
.foot .safety-band .item {
  padding: 28px 22px;
  border-right: 1px solid var(--hairline-dark);
}
.foot .safety-band .item:last-child { border-right: 0; }
.foot .safety-band .lbl {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-bottom: 10px;
}
.foot .safety-band .val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--hi-vis);
  line-height: 1;
}
.foot .safety-band .val .unit { font-size: 0.55em; color: var(--concrete); margin-left: 6px; }

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 70px;
}
.foot-grid .col h5 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hi-vis);
  margin-bottom: 22px;
}
.foot-grid .col a, .foot-grid .col p {
  display: block;
  font-size: 14px;
  color: var(--concrete-light);
  padding: 6px 0;
  transition: color 0.2s;
}
.foot-grid .col a:hover { color: var(--hi-vis); }
.foot-grid .brand {
  color: var(--bone);
  margin-bottom: 18px;
}
.foot-grid .brand .brand-mark { background: var(--hi-vis); color: var(--charcoal); }
.foot-grid .brand .brand-mark::after { border-color: var(--charcoal); }
.foot-grid .brand .brand-wordmark { color: var(--bone); }
.foot-grid .brand .brand-sub { color: var(--concrete); }
.foot-grid .col p.address { white-space: pre-line; }
.foot-base {
  border-top: 1px solid var(--hairline-dark);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--concrete);
}
.foot-base a:hover { color: var(--hi-vis); }
@media (max-width: 900px) {
  .foot { padding: 70px 0 0; }
  .foot .safety-band { grid-template-columns: repeat(2, 1fr); }
  .foot .safety-band .item:nth-child(2) { border-right: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================================
   ABOUT PAGE — three-generation timeline / leadership / shop walk
   ============================================================= */
.about-hero {
  background: var(--charcoal);
  color: var(--bone);
  padding: 140px 0 110px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--hi-vis);
}
.about-hero .blueprint-grid--dark {
  background-size: 110px 110px;
  opacity: 0.5;
}
.about-hero .container { position: relative; z-index: 2; }
.about-hero-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.about-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  text-transform: uppercase;
  line-height: 0.9;
  color: var(--bone);
}
.about-hero h1 .hi-vis { color: var(--hi-vis); }
.about-hero h1 .stroke { -webkit-text-stroke: 2px var(--bone); color: transparent; }
.about-hero .meta { font-family: 'IBM Plex Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--hi-vis); margin-bottom: 28px; }
.about-hero .lede { color: var(--concrete-light); font-size: 1.18rem; max-width: 44ch; }

.timeline {
  margin-top: 100px;
  padding-top: 60px;
  border-top: 1px solid var(--hairline-dark-strong);
}
.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.timeline-node {
  border-left: 2px solid var(--hi-vis);
  padding: 6px 0 6px 20px;
}
.timeline-node .yr {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--hi-vis);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.timeline-node .ev {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: var(--concrete-light);
  line-height: 1.5;
}
.timeline-node .ev b { color: var(--bone); }
@media (max-width: 900px) {
  .about-hero { padding: 90px 0 60px; }
  .about-hero-head { grid-template-columns: 1fr; gap: 30px; }
  .timeline-track { grid-template-columns: 1fr 1fr; }
}

/* Three generations photo + caption block */
.gens {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.gens .photo {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05);
  position: relative;
  transition: filter 0.5s ease;
}
.gens .photo:hover { filter: grayscale(0); }
.gens .photo .caption {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--charcoal);
  padding: 8px 12px;
}
.gens .body { }
.gens .body h2 { margin-bottom: 30px; }
.gens .body .lede { margin-bottom: 22px; }
.gens .pull-quote {
  border-left: 4px solid var(--hi-vis);
  padding: 12px 0 12px 22px;
  margin: 32px 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.18;
  color: var(--charcoal);
  text-transform: none;
}
.gens .pull-quote cite {
  display: block;
  font-style: normal;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 16px;
}
@media (max-width: 900px) {
  .gens { grid-template-columns: 1fr; gap: 40px; }
}

/* Shop walk gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery .cell {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.gallery .cell-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.85);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.gallery .cell:hover .cell-img { filter: grayscale(0); transform: scale(1.05); }
.gallery .cell .num {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--charcoal);
  padding: 5px 9px;
  z-index: 2;
}
.gallery .a { grid-column: span 7; aspect-ratio: 4 / 3; }
.gallery .b { grid-column: span 5; aspect-ratio: 4 / 3; }
.gallery .c { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery .d { grid-column: span 4; aspect-ratio: 1 / 1; }
.gallery .e { grid-column: span 4; aspect-ratio: 1 / 1; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery .a, .gallery .b, .gallery .c, .gallery .d, .gallery .e { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* Leadership */
.leader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.leader {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--charcoal);
  transition: background 0.3s ease;
}
.leader:hover { background: var(--bone); }
.leader .role {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
  margin-bottom: 20px;
}
.leader h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.leader .since {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--steel);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.leader p { font-size: 14px; line-height: 1.55; color: var(--steel); }
@media (max-width: 900px) {
  .leader-grid { grid-template-columns: 1fr; }
}

/* Safety culture band */
.safety-culture {
  background: var(--bone);
  padding: 110px 0;
  border-top: 4px solid var(--charcoal);
  border-bottom: 4px solid var(--charcoal);
}
.safety-culture-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 70px;
}
.safety-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}
.safety-pillars .p {
  padding: 36px 22px 40px;
  border-right: 1px solid var(--charcoal);
}
.safety-pillars .p:last-child { border-right: 0; }
.safety-pillars .num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--brick);
  margin-bottom: 22px;
}
.safety-pillars h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: var(--charcoal);
}
.safety-pillars p { font-size: 14px; color: var(--steel); }
@media (max-width: 900px) {
  .safety-culture-head { grid-template-columns: 1fr; gap: 30px; }
  .safety-pillars { grid-template-columns: repeat(2, 1fr); }
  .safety-pillars .p { border-bottom: 1px solid var(--charcoal); }
  .safety-pillars .p:nth-child(2) { border-right: 0; }
}

/* =============================================================
   SERVICES PAGE — detailed services with tech specs
   ============================================================= */
.svc-row {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 0;
  border-top: 2px solid var(--charcoal);
  align-items: stretch;
}
.svc-row:last-child { border-bottom: 2px solid var(--charcoal); }
.svc-row .visual {
  position: relative;
  background: var(--charcoal);
  min-height: 460px;
  overflow: hidden;
}
.svc-row .visual .img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.8);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.svc-row:hover .visual .img { filter: grayscale(0) contrast(1.05) brightness(0.9); }
.svc-row .visual .num-tag {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--hi-vis);
  padding: 8px 12px;
}
.svc-row .body {
  padding: 60px 50px;
  border-left: 1px solid var(--charcoal);
  background: var(--paper);
}
.svc-row .body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.svc-row .body h3 .brick { color: var(--brick); }
.svc-row .body > p { font-size: 1.05rem; max-width: 58ch; margin-bottom: 32px; color: var(--charcoal-3); }
.svc-row .spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.svc-row .spec-grid .s {
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-right: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.svc-row .spec-grid .s:nth-child(odd) { border-right: 1px solid var(--hairline); padding-right: 24px; }
.svc-row .spec-grid .s:nth-child(even) { padding-left: 24px; }
.svc-row .spec-grid .s:nth-last-child(-n+2) { border-bottom: 0; }
.svc-row .spec-grid .s .k { color: var(--steel); }
.svc-row .spec-grid .s .v { color: var(--brick); font-weight: 600; }
.svc-row .body .codes {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-row .body .codes .c {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 6px 10px;
  border: 1px solid var(--charcoal);
  background: var(--bone);
}
@media (max-width: 900px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .visual { min-height: 280px; }
  .svc-row .body { padding: 36px 22px; border-left: 0; border-top: 1px solid var(--charcoal); }
  .svc-row .spec-grid .s:nth-child(odd) { border-right: 0; padding-right: 0; }
  .svc-row .spec-grid .s:nth-child(even) { padding-left: 0; }
}

/* Process diagram */
.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 2px solid var(--charcoal);
  border-bottom: 2px solid var(--charcoal);
}
.process .step {
  padding: 36px 22px 40px;
  border-right: 1px solid var(--charcoal);
  background: var(--paper);
  position: relative;
  transition: background 0.3s ease;
}
.process .step:last-child { border-right: 0; }
.process .step:hover { background: var(--bone); }
.process .step .n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--hi-vis-deep);
  line-height: 1;
  margin-bottom: 18px;
}
.process .step h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.process .step p { font-size: 13px; color: var(--steel); line-height: 1.5; }
@media (max-width: 1100px) {
  .process { grid-template-columns: repeat(3, 1fr); }
  .process .step:nth-child(3n) { border-right: 0; }
  .process .step:nth-child(-n+3) { border-bottom: 1px solid var(--charcoal); }
}
@media (max-width: 600px) {
  .process { grid-template-columns: 1fr 1fr; }
  .process .step:nth-child(3n) { border-right: 1px solid var(--charcoal); }
  .process .step:nth-child(2n) { border-right: 0; }
  .process .step { border-bottom: 1px solid var(--charcoal); }
}

/* =============================================================
   QUOTE CTA — pre-footer band
   ============================================================= */
.quote-cta {
  background: var(--hi-vis);
  padding: 100px 0;
  border-top: 4px solid var(--charcoal);
  border-bottom: 4px solid var(--charcoal);
  position: relative;
  overflow: hidden;
}
.quote-cta .blueprint-grid {
  background-image:
    linear-gradient(to right, rgba(31,32,36,0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(31,32,36,0.1) 1px, transparent 1px);
}
.quote-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.quote-cta h2 { color: var(--charcoal); }
.quote-cta h2 .brick { color: var(--brick); }
.quote-cta p { color: var(--charcoal-2); font-size: 1.1rem; margin-top: 20px; max-width: 50ch; }
.quote-cta .checklist {
  list-style: none;
  margin-top: 30px;
}
.quote-cta .checklist li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(31,32,36,0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.quote-cta .checklist li::before {
  content: '';
  width: 14px; height: 14px;
  background: var(--charcoal);
  flex-shrink: 0;
}
.quote-cta .form-box {
  background: var(--paper);
  border: 3px solid var(--charcoal);
  padding: 36px;
  box-shadow: 10px 10px 0 var(--charcoal);
}
.quote-cta .form-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.quote-cta .form-box .row { margin-bottom: 14px; }
.quote-cta .form-box label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-bottom: 6px;
}
.quote-cta .form-box input, .quote-cta .form-box textarea, .quote-cta .form-box select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--charcoal);
  background: var(--paper);
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: var(--charcoal);
}
.quote-cta .form-box input:focus, .quote-cta .form-box textarea:focus {
  outline: 0;
  border-color: var(--brick);
  background: var(--bone);
}
.quote-cta .form-box .btn-quote {
  width: 100%;
  justify-content: center;
  margin-top: 14px;
  background: var(--brick);
  color: var(--paper);
  border-color: var(--charcoal);
}
@media (max-width: 900px) {
  .quote-cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .quote-cta { padding: 60px 0; }
}

/* =============================================================
   REVEAL ANIMATIONS — IntersectionObserver targets
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1; transform: none; transition: none; }
  .cap-ticker-track { animation: none; }
  .utility .ticker-dot { animation: none; }
  * { transition-duration: 0.001s !important; animation-duration: 0.001s !important; }
}

/* =============================================================
   UTILITIES
   ============================================================= */
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 14px; }
.mb-2 { margin-bottom: 28px; }
.mb-3 { margin-bottom: 42px; }
.mb-4 { margin-bottom: 60px; }
.hi-vis { color: var(--hi-vis); }
.brick { color: var(--brick); }
.text-charcoal { color: var(--charcoal); }
.text-bone { color: var(--bone); }

/* Heavy rule */
.rule-heavy {
  border: 0;
  border-top: 4px solid var(--charcoal);
  margin: 80px 0;
}
.rule-hi-vis {
  border: 0;
  border-top: 4px solid var(--hi-vis);
  margin: 60px 0;
}

/* Index marker — visible serial number aesthetic */
.serial {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.serial::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--hairline);
}

/* End of stylesheet */
