/* Tri-Rivers Trucking — site stylesheet.
   Order is load-bearing: base rules, then breakpoints largest to
   smallest, then capability queries. */

:root {

  /* --- COLORS --- */
  --color-ink:        #121417;
  --color-ink-2:      #1B1F24;
  --color-steel:      #7A838F;
  --color-concrete:   #E6E3DD;
  --color-paper:      #F7F6F3;
  /* Pittsburgh civic gold. Black and gold predates all three sports
     teams — it comes from the city flag and seal, which is why it is
     available to use and they are not. */
  --color-signal:      #F5B335;  /* gold — fills and marks on DARK */
  --color-signal-2:    #D9971A;  /* deeper gold — hover/pressed on dark */

  --color-paper-70:   rgba(247,246,243,0.70);
  --color-paper-45:   rgba(247,246,243,0.45);
  --color-paper-line: rgba(247,246,243,0.16);
  --color-ink-60:     rgba(18,20,23,0.60);
  --color-ink-line:   rgba(18,20,23,0.20);

  /* --- SPACING --- */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 128px;

  /* --- TYPE: body & small --- */
  --text-xs: 13px;
  --text-sm: 15px;
  --text-md: 17px;

  /* --- TYPE: headline tier, per breakpoint ---
     Sizes raised across the board vs v6 because Teko sets much
     narrower and taller than Barlow Condensed. Same pixel value
     reads noticeably smaller in Teko. */
  --text-lg-desktop:      22px;  --text-lg-tablet:      21px;  --text-lg-mobile:      19px;
  --text-xl-desktop:      31px;  --text-xl-tablet:      27px;  --text-xl-mobile:      23px;
  --text-2xl-desktop:     42px;  --text-2xl-tablet:     35px;  --text-2xl-mobile:     28px;
  --text-section-desktop: clamp(46px, 3.6vw, 78px);
  --text-section-tablet: 42px;   --text-section-mobile: 32px;
  --text-display-desktop: clamp(86px, 7.1vw, 152px);
  --text-display-tablet: 56px;   --text-display-mobile: 36px;

  /* --- LINE HEIGHT ---
     Teko carries generous built-in leading; 0.88 is what makes a
     two-line display headline sit correctly. */
  --lh-tight: 0.88;
  --lh-snug:  1.3;
  --lh-body:  1.55;

  /* --- TRACKING --- */
  --track-display: 0.005em;   /* Teko sets tight; a hair of positive tracking opens it */
  --track-eyebrow: 0.14em;
  --track-button:  0.06em;

  /* --- RADII --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* --- BORDERS --- */
  --border-thin:  1px;
  --border-thick: 2px;

  /* --- SECTION PADDING --- */
  --section-pad-sm: 64px;
  --section-pad-md: 96px;
  --section-pad-lg: 160px;

  /* --- LAYOUT --- */
  --container-w: 1400px;
  --nav-h: 96px;
  --nav-h-shrunk: 72px;
  --logo-h: 64px;
  --logo-h-shrunk: 46px;

  /* --- MOTION --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --matrix-dwell: 6.5s;
}

*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--color-ink);
  color: var(--color-paper);
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-md);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

button { font-family: inherit; border: 0; background: none; cursor: pointer; }

:focus-visible { outline: var(--border-thick) solid var(--color-signal); outline-offset: 3px; }

.tabular { font-variant-numeric: tabular-nums; }

.container {
  width: 90%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0;
  display: block;
}

.container--narrow { width: 90%; max-width: 1100px; }

.container--flush { width: 100%; max-width: none; }

.section { padding: var(--section-pad-md) 0; position: relative; }

.section--compact  { padding: var(--section-pad-sm) 0; }

.section--showcase { padding: var(--section-pad-lg) 0; }

.section--flush    { padding: 0; }

.section--dark     { background: var(--color-ink); color: var(--color-paper); }

.section--concrete { background: var(--color-concrete); color: var(--color-ink); }

.headline {
  font-family: 'Teko', 'Barlow Condensed', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-display);
  line-height: var(--lh-tight);
  margin: 0;
}

.headline--display { font-size: var(--text-display-desktop); }

.headline--section { font-size: var(--text-section-desktop); }

.headline--card    { font-size: var(--text-xl-desktop); }

.headline--statement { font-size: clamp(34px, 2.9vw, 54px); line-height: 1.02; }

.body { font-size: var(--text-md); line-height: var(--lh-body); margin: 0; }

.lede { font-size: var(--text-lg-desktop); line-height: var(--lh-snug); margin: 0; }

.body--muted { color: var(--color-paper-70); }

.eyebrow {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-eyebrow);
  line-height: 1;
  margin: 0;
}

.eyebrow--light  { color: var(--color-paper); }

.eyebrow--steel  { color: var(--color-steel); }

.eyebrow--signal { color: var(--color-signal); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: var(--border-thin) solid transparent;
  transition: background-color 0.25s var(--ease),
              border-color 0.25s var(--ease),
              color 0.25s var(--ease);
}

.button-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--track-button);
  line-height: 1;
  white-space: nowrap;
}

.button--primary   { background: var(--color-concrete); color: var(--color-ink); }

.button--signal    { background: var(--color-signal);   color: var(--color-ink); }

.button--secondary { background: transparent; color: var(--color-paper); border-color: var(--color-paper-line); }

.button--signal-outline { background: transparent; color: var(--color-signal); border-color: rgba(245,179,53,0.45); }

.button--sm { padding: 11px 18px; }

.list { display: flex; }

.list--inline  { flex-direction: row; align-items: center; }

.list--stacked { flex-direction: column; }

.trust-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0;
  transition: opacity 0.25s var(--ease);
}

.trust-badge-google { width: 20px; height: 20px; display: block; flex: none; }

.trust-badge-stars { display: flex; align-items: center; gap: 2px; }

.trust-badge-star { width: 14px; height: 14px; display: block; color: var(--color-signal); }

.trust-badge-rating {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 24px; font-weight: 500; line-height: 1;
  color: var(--color-paper);
  font-variant-numeric: tabular-nums;
  padding-bottom: 2px;
}

.trust-badge-divider {
  width: var(--border-thin); height: 16px;
  background: var(--color-paper-line);
  display: block; flex: none;
}

.trust-badge-text {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-xs); font-weight: 500; line-height: 1.2;
  color: var(--color-paper-70);
}

.trust-badge-text-strong { color: var(--color-paper); font-weight: 600; }

.trust-badge-mark { width: 15px; height: 15px; display: block; color: var(--color-signal); }

.hero-trust { display: flex; align-items: center; padding-left: var(--space-md); border-left: var(--border-thin) solid var(--color-paper-line); }

.navbar-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.navbar-brand { display: block; flex: none; }

.navbar-menu { display: flex; align-items: center; gap: 32px; }

.navbar-link { position: relative; padding: 6px 0; display: block; }

.navbar-link-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.05em; line-height: 1;
  color: var(--color-paper-70);
  transition: color 0.25s var(--ease);
}

.navbar-link-underline {
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: var(--border-thick);
  background: var(--color-signal);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.3s var(--ease);
  display: block;
}

.navbar-actions { display: flex; align-items: center; gap: var(--space-md); }

.navbar-phone { display: flex; align-items: center; gap: 8px; }

.navbar-phone-icon { width: 16px; height: 16px; display: block; color: var(--color-signal); }

.navbar-phone-number {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); font-weight: 600; line-height: 1;
  color: var(--color-paper);
}

.navbar-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  margin-right: -10px;   /* optical alignment to the container edge */
  color: var(--color-paper);
}

.navbar-toggle-icon { width: 30px; height: 30px; display: block; }

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-ink);
}

.hero-media {
  position: absolute; inset: 0;
  background-color: #191D22;
  /* The photo is declared per page in the document, not here:
     a relative url() inside a custom property resolves against this
     stylesheet rather than the page. This is the fallback ground. */
  background-image:
    radial-gradient(115% 95% at 74% 42%, #2E353E 0%, #171B20 56%, #0E1013 100%);
  background-size: cover;
  background-position: 55% center;
  background-repeat: no-repeat, no-repeat;
  /* This frame is a bright overcast daylight shot, unlike the
     blue-hour frames. A modest darkening is needed before the
     scrim can hold white type without going opaque. Delete this
     if a darker frame replaces it. */
  filter: brightness(0.90) contrast(1.03) saturate(0.95);
  display: block;
}

.hero-overlay {
  position: absolute; inset: 0;
  /* Weighted left so the headline always has ground under it. The
     hero photo's aspect is close to the hero box, so `cover` leaves
     almost no slack — background-position cannot move the subject,
     which makes the scrim the only lever. */
  background: linear-gradient(90deg,
    rgba(12,14,17,0.90) 0%,
    rgba(12,14,17,0.82) 30%,
    rgba(12,14,17,0.56) 52%,
    rgba(12,14,17,0.22) 78%,
    rgba(12,14,17,0.06) 100%);
  display: block;
}

.hero-overlay--base {
  background: linear-gradient(0deg,
    rgba(12,14,17,0.92) 0%,
    rgba(12,14,17,0.34) 15%,
    rgba(12,14,17,0.04) 38%,
    rgba(12,14,17,0.00) 60%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

.hero-content { max-width: none; }

.hero-headline { color: var(--color-paper); margin-bottom: 28px; }

.hero-subhead {
  max-width: 440px;
  color: var(--color-paper-70);
  margin-bottom: 56px;
}

.hero-actions { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }

.section-header { max-width: 620px; }

.section-header--wide { max-width: 860px; }

.section-header--centered {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header--centered .eyebrow-row { justify-content: center; }

.section-actions--centered { justify-content: center; }

.section-header-eyebrow { margin-bottom: var(--space-sm); }

.section-header-headline { margin-bottom: var(--space-md); }

.section-header-lede { margin: 0; }

.eyebrow-row { display: flex; align-items: center; }


.media {
  position: relative; width: 100%;
  overflow: hidden; display: block;
  background: var(--color-ink-2);
}

.media--aspect-4-3  { padding-bottom: 75%; }

.media--aspect-3-2  { padding-bottom: 66.66%; }

.media--aspect-16-9 { padding-bottom: 56.25%; }

.media--fill        { padding-bottom: 0; height: 100%; }

.media-image {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  /* One grade across every photograph so the set reads as a single
     shoot. The hero's extra brightness reduction is the only
     sanctioned deviation, because it carries type. */
  filter: contrast(1.03) saturate(0.95);
}

.media-overlay {
  position: absolute; inset: 0; display: block;
  background: linear-gradient(0deg, rgba(12,14,17,0.34) 0%, rgba(12,14,17,0.00) 42%);
}

.split-bleed {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: stretch;
  position: relative;
}

.split-bleed--flip {
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: stretch;
  position: relative;
}

.split-bleed-media { position: relative; display: block; min-height: 560px; }

.split-bleed-content {
  display: flex; flex-direction: column; justify-content: center;
  /* Right padding matches the page container's gutter so this copy
     lines up with every other section, even though the photo beside
     it runs off the viewport edge. */
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  padding-left: var(--space-2xl);
  padding-right: max(5vw, calc((100vw - var(--container-w)) / 2));
}

.spec-panel {
  position: absolute;
  right: -68px; bottom: 56px;
  z-index: 3;
  background: var(--color-ink);
  border-top: var(--border-thick) solid var(--color-signal);
  padding: var(--space-lg);
  display: block;
  max-width: 620px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md) var(--space-lg);
}

.spec-item--lead {
  grid-column: 1 / -1;
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-thin) solid var(--color-paper-line);
}

.spec-item--lead .spec-value { font-size: clamp(38px, 3vw, 54px); }

.spec-item--lead .spec-label { color: var(--color-signal); }

.spec-item { display: block; }

.spec-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-eyebrow);
  line-height: 1; color: var(--color-paper-45);
  display: block; margin-bottom: 8px;
}

.spec-value {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 32px; font-weight: 600;
  text-transform: uppercase; line-height: 1;
  font-variant-numeric: tabular-nums;
  color: var(--color-paper); display: block;
}

.spec-value-unit { color: var(--color-signal); }

.section-actions { margin-top: var(--space-lg); display: flex; gap: var(--space-sm); flex-wrap: wrap; }

.matrix {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
  align-items: start;
}

.matrix-rail { display: flex; flex-direction: column; }

.matrix-row {
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  padding: 20px 0 20px var(--space-md);
  border-bottom: var(--border-thin) solid var(--color-paper-line);
  background: none;
  cursor: pointer;
  transition: padding-left 0.25s var(--ease);
}

.matrix-row-track {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: rgba(247,246,243,0.12);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  display: block;
}

.matrix-row.is-active .matrix-row-track { opacity: 1; }

.matrix-row-fill {
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: var(--color-signal);
  transform: scaleY(0);
  transform-origin: top center;
  display: block;
}

.matrix-row.is-active .matrix-row-fill { transform: scaleY(1); }

.matrix-autoplay .matrix-row.is-active .matrix-row-fill {
  animation: matrixFill var(--matrix-dwell) linear forwards;
}

.matrix-autoplay.is-paused .matrix-row.is-active .matrix-row-fill {
  animation-play-state: paused;
}

.matrix-row--last { border-bottom: 0; }

.matrix-row-head { display: block; }

.matrix-row-name {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 30px; font-weight: 600;
  text-transform: uppercase; line-height: 1;
  color: rgba(247,246,243,0.72);
  display: block;
  transition: color 0.25s var(--ease);
}

.matrix-row.is-active { padding-left: var(--space-lg); }

.matrix-row.is-active .matrix-row-name { color: var(--color-paper); }

.matrix-stage { position: relative; display: block; }

.matrix-panel {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s var(--ease);
  display: block;
}

.matrix-panel--first { position: relative; }

.matrix-panel.is-active { opacity: 1; visibility: visible; }

.matrix-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: var(--space-md) var(--space-lg);
  display: block;
  background: rgba(12, 14, 17, 0.58);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  border-top: var(--border-thick) solid var(--color-signal);
}

.matrix-caption-text {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); font-weight: 400; line-height: 1.55;
  color: var(--color-paper);
  display: block;
  max-width: 560px;
}

.haul-close {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-lg); flex-wrap: wrap;
  padding-top: var(--space-lg);
  border-top: var(--border-thin) solid var(--color-paper-line);
}

.haul-close-line {
  font-family: 'Teko', Arial, sans-serif;
  font-weight: 500; text-transform: uppercase;
  font-size: clamp(22px, 1.7vw, 32px);
  line-height: 1.12; letter-spacing: var(--track-display);
  color: var(--color-paper);
  margin: 0; max-width: 40ch;
}

.accent { color: var(--color-signal); }

.grid--split-wide {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-2xl);
  align-items: start;
}

.stack-sm { margin-top: var(--space-sm); }

.stack-md { margin-top: var(--space-md); }

.stack-xl { margin-top: var(--space-xl); }

.stack-2xl { margin-top: var(--space-2xl); }

.section-header--centered .body { max-width: 640px; margin-left: auto; margin-right: auto; }

.section--concrete .headline { color: var(--color-ink); }

.section--concrete .body { color: rgba(18,20,23,0.72); }

.section--concrete .lede { color: rgba(18,20,23,0.78); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--nav-h);
  background: var(--color-ink-2);
  border-bottom: var(--border-thin) solid var(--color-paper-line);
  display: flex;
  align-items: center;
  transition: height 0.3s var(--ease);
}

.navbar.is-scrolled { height: var(--nav-h-shrunk); }

.navbar.is-scrolled .navbar-logo { height: var(--logo-h-shrunk); }

.navbar-logo { height: var(--logo-h); width: auto; display: block; transition: height 0.3s var(--ease); }

.band {
  position: relative;
  min-height: 78vh;
  display: block;
  overflow: hidden;
  background: var(--color-ink);
}

.band-media { position: absolute; inset: 0; display: block; }

.band-image {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 58% center;
  display: block;
  filter: contrast(1.03) saturate(0.95);
}

.band-panel {
  position: absolute;
  /* 2px overhang, clipped by the band's overflow. The ratio spacer
     resolves to fractional pixels, and without this a hairline of
     photograph shows beneath the state at some viewport widths. */
  bottom: -2px;
  left: max(5vw, calc((100vw - var(--container-w)) / 2));
  z-index: 2;
  width: clamp(450px, 43vw, 690px);
  display: block;
}

.band-panel-ratio { width: 100%; padding-bottom: 58.15%; display: block; }

.band-panel-shape {
  position: absolute; inset: 0;
  background: var(--color-concrete);
  clip-path: polygon(0.0% 0.0%, 13.1% 0.0%, 13.1% 10.6%, 89.0% 10.6%, 94.3% 26.3%, 91.7% 36.1%, 98.1% 43.9%, 94.0% 54.9%, 100.0% 83.1%, 92.8% 93.7%, 87.9% 96.9%, 81.5% 100.0%, 0.0% 100.0%);
  display: block;
}

.band-panel-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 12% 13% 7.5% 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.band-eyebrow { margin-bottom: 14px; }

.band-headline {
  color: var(--color-ink);
  font-size: clamp(31px, 2.5vw, 45px);
  margin-bottom: var(--space-md);
}

.band-actions { display: flex; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.benefit-item { position: relative; padding-top: var(--space-md); }

.benefit-rule {
  position: absolute; top: 0; left: 0; right: 0;
  height: var(--border-thin);
  background: var(--color-ink-line);
  display: block;
  transition: height 0.3s var(--ease);
}

.benefit-rule-fill {
  position: absolute; inset: 0;
  background: var(--color-signal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease);
  display: block;
}

.benefit-item--accent .benefit-rule-fill { transform: scaleX(1); }

.benefit-icon {
  width: 26px; height: 26px;
  display: block;
  color: var(--color-signal);
  margin-bottom: var(--space-sm);
}

.benefit-title {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 26px; font-weight: 600;
  text-transform: uppercase; line-height: 1.05;
  color: var(--color-ink);
  display: block; margin-bottom: 10px;
}

.benefit-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.5;
  color: rgba(18,20,23,0.68);
  display: block;
}

.benefit-figure {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 34px; font-weight: 600; line-height: 1;
  color: var(--color-signal);
  font-variant-numeric: tabular-nums;
  display: block; margin-bottom: 4px;
}

.section--concrete .benefit-figure,
.section--concrete .benefit-icon,
.section--concrete .beat-word--accent,
.section--concrete .accent { color: var(--color-signal); }

.section--concrete .statement-rule,
.section--concrete .beat-sign-rule,
.section--concrete .area-mark,
.section--concrete .benefit-rule-fill { background: var(--color-signal); }

.section--concrete .benefit-item--accent { border-top-color: var(--color-signal); }

.section--concrete .eyebrow--signal,
.band-panel .eyebrow--signal { color: var(--color-ink); }

.section--concrete .button--secondary {
  color: var(--color-ink);
  border-color: var(--color-ink-line);
}

.split-bleed-content--left {
  padding-left: max(5vw, calc((100vw - var(--container-w)) / 2));
  padding-right: var(--space-2xl);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 var(--space-xl);
  margin-top: var(--space-lg);
}

.area-item {
  display: flex; align-items: baseline; gap: 12px;
  padding: 12px 0;
  border-bottom: var(--border-thin) solid var(--color-ink-line);
  transition: border-color 0.25s var(--ease);
}

.area-mark { transition: transform 0.25s var(--ease); }

.area-name { transition: transform 0.25s var(--ease), color 0.25s var(--ease); }

.area-mark {
  width: 8px; height: 8px; flex: none;
  background: var(--color-signal);
  display: block;
}

.area-name {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 26px; font-weight: 500;
  text-transform: uppercase; line-height: 1;
  color: var(--color-ink);
  display: block;
}

.area-note { margin-top: var(--space-lg); }

.form { display: block; }

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.form-field { display: flex; flex-direction: column; }

.form-field--full { grid-column: 1 / -1; }

.form-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-eyebrow);
  line-height: 1; color: var(--color-paper-45);
  display: block; margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-md);
  line-height: 1.4;
  color: var(--color-ink);
  background: var(--color-paper);
  border: var(--border-thin) solid var(--color-ink-line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  width: 100%;
  display: block;
  transition: border-color 0.2s var(--ease);
}

.form-textarea { min-height: 120px; resize: vertical; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--color-signal); outline: none; }

.form-actions { margin-top: var(--space-lg); display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; }

.form-note {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-xs); line-height: 1.4;
  color: var(--color-paper-45);
  display: block;
}

.contact-call { display: none; }

.contact-column {
  border: var(--border-thin) solid var(--color-paper-line);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
  background: rgba(247,246,243,0.02);
}

.contact-block { padding-top: var(--space-md); border-top: var(--border-thin) solid var(--color-paper-line); }

.contact-block--first { padding-top: 0; border-top: 0; }

.contact-block + .contact-block { margin-top: var(--space-lg); }

.contact-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-eyebrow);
  line-height: 1; color: var(--color-signal);
  display: block; margin-bottom: 10px;
}

.contact-value {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 30px; font-weight: 600;
  text-transform: uppercase; line-height: 1.05;
  color: var(--color-paper);
  font-variant-numeric: tabular-nums;
  display: block;
}

.contact-value--sm { font-size: 22px; }

.contact-detail {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.5;
  color: var(--color-paper-70);
  display: block; margin-top: 6px;
}

.contact-detail--lead { margin-top: 0; margin-bottom: 14px; }

.footer { background: var(--color-ink); padding: var(--space-2xl) 0 var(--space-lg); }

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-xl);
  border-bottom: var(--border-thin) solid var(--color-paper-line);
}

.footer-logo { height: 58px; width: auto; display: block; margin-bottom: var(--space-md); }

.footer-address {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.6;
  color: var(--color-paper-45);
  display: block;
}

.footer-col-title {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-eyebrow);
  line-height: 1; color: var(--color-steel);
  display: block; margin-bottom: var(--space-sm);
}

.footer-list { display: flex; flex-direction: column; gap: 10px; }

.footer-link { display: block; }

.footer-link-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); font-weight: 500; line-height: 1.3;
  color: var(--color-paper-70);
  display: block;
  transition: color 0.2s var(--ease);
}

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-md); flex-wrap: wrap;
  padding-top: var(--space-lg);
}

.footer-legal {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-xs); line-height: 1.4;
  color: var(--color-paper-45);
  font-variant-numeric: tabular-nums;
  display: block;
}

.statement-rule {
  width: 56px; height: var(--border-thick);
  background: var(--color-signal);
  display: block;
  margin: 0 auto var(--space-lg);
}

.section--beat { padding: 0; height: 190vh; position: relative; }

.beat-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
}

.beat-word { display: inline; color: var(--color-ink); }

.beat-lit .beat-word {
  color: rgba(18,20,23,0.15);
  transition: color 0.32s linear;
}

.beat-lit .beat-word.is-lit { color: var(--color-ink); }

.beat-word--accent { color: var(--color-signal); }

.beat-lit .beat-word--accent.is-lit { color: var(--color-signal); }

.beat-sign { opacity: 1; }

.beat-lit .beat-sign {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.beat-lit .beat-sign.is-in { opacity: 1; transform: none; }

.beat-line {
  font-family: 'Teko', Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: clamp(38px, 4.7vw, 86px);
  line-height: 1.02;
  letter-spacing: var(--track-display);
  color: var(--color-ink);
  text-align: center;
  margin: 0;
}

.beat-sign {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--space-xl);
}

.beat-sign-rule {
  width: 44px; height: var(--border-thick);
  background: var(--color-signal);
  display: block;
  margin-bottom: var(--space-md);
}

.beat-sign-name {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 24px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-display);
  line-height: 1; color: var(--color-ink);
  display: block;
}

.beat-sign-role {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-eyebrow);
  line-height: 1; color: rgba(18,20,23,0.55);
  display: block; margin-top: 8px;
}

.reveal { opacity: 1; transform: none; }

.motion-on .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.motion-on .reveal.is-in { opacity: 1; transform: none; }

.motion-on .reveal--d1 { transition-delay: 0.08s; }

.motion-on .reveal--d2 { transition-delay: 0.16s; }

.motion-on .reveal--d3 { transition-delay: 0.24s; }

.brand-badge {
  display: block;
  width: 100%; max-width: 320px; height: auto;
  flex: none; align-self: flex-start;
  margin-bottom: var(--space-lg);
}

.brand-truck {
  display: block;
  width: 100%; max-width: 330px; height: auto;
  flex: none; align-self: center;
  margin: 0 auto var(--space-lg);
}

.navbar-toggle-icon--close { display: none; }

.navmenu {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--color-ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--nav-h) + var(--space-lg)) 6% var(--space-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}

.navmenu-inner { display: flex; flex-direction: column; justify-content: space-between; height: 100%; width: 100%; }

.navmenu-links { display: flex; flex-direction: column; }

.navmenu-link {
  display: block;
  padding: 18px 0;
  border-bottom: var(--border-thin) solid var(--color-paper-line);
}

.navmenu-link-label {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 34px; font-weight: 500;
  text-transform: uppercase; line-height: 1;
  color: var(--color-paper);
  display: block;
}

.navmenu-foot { display: flex; flex-direction: column; gap: 12px; padding-top: var(--space-lg); }

.navmenu-cta { width: 100%; }

.navmenu-phone { display: block; padding-top: var(--space-md); }

.navmenu-phone-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-eyebrow);
  color: var(--color-signal); display: block; margin-bottom: 6px;
}

.navmenu-phone-number {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 32px; font-weight: 600; line-height: 1;
  color: var(--color-paper); display: block;
}

.is-menu-open .navmenu { opacity: 1; visibility: visible; transform: none; }

.is-menu-open .navbar { background: var(--color-ink); border-bottom-color: transparent; }

.is-menu-open .navbar-toggle-icon--menu { display: none; }

.is-menu-open .navbar-toggle-icon--close { display: block; }

.is-menu-open { overflow: hidden; }

.section--concrete .contact-column {
  border-color: var(--color-ink-line);
  background: rgba(18,20,23,0.02);
}

.section--concrete .contact-block { border-top-color: var(--color-ink-line); }

.section--concrete .contact-label { color: var(--color-signal-2); }

.section--concrete .contact-value { color: var(--color-ink); }

.section--concrete a.contact-value { color: var(--color-ink); }

.section--concrete .contact-detail { color: rgba(18,20,23,0.68); }

.section--concrete .contact-call-label { color: var(--color-ink); }

.section--concrete .body--muted { color: rgba(18,20,23,0.68); }

.section--concrete .lede { color: rgba(18,20,23,0.74); }

.cta-band { background: var(--color-ink-2); border-top: 3px solid var(--color-signal); display: block; }

.cta-inner { padding: var(--section-pad-md) 0; }

.cta-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--space-2xl); align-items: start; }

.cta-headline { margin-bottom: var(--space-md); }

.cta-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-md); line-height: 1.55;
  color: var(--color-paper-70); display: block;
}

.cta-phone { display: block; margin-top: var(--space-lg); text-decoration: none; }

.cta-phone-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--track-eyebrow); line-height: 1;
  color: var(--color-signal); display: block; margin-bottom: 8px;
}

.cta-phone-number {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(28px, 2.4vw, 40px); font-weight: 600;
  line-height: 1; color: var(--color-paper);
  font-variant-numeric: tabular-nums; display: block;
  transition: color 0.2s var(--ease);
}

.cta-form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }

.cta-actions { display: flex; align-items: center; gap: var(--space-md); flex-wrap: wrap; margin-top: var(--space-lg); }

.cta-note {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-xs); line-height: 1.5;
  color: var(--color-paper-45); display: block;
}

.cta-driver {
  margin-top: var(--space-lg); padding-top: var(--space-md);
  border-top: var(--border-thin) solid var(--color-paper-line);
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}

.cta-driver-text {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.5;
  color: var(--color-paper-70); display: block;
}

.cta-driver-link {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); font-weight: 600; line-height: 1.5;
  color: var(--color-signal); display: block; text-decoration: none;
  border-bottom: var(--border-thin) solid var(--color-signal);
}

.footer-mini-links { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }

.footer-mini {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-xs); font-weight: 500; line-height: 1.4;
  color: var(--color-paper-45); text-decoration: none;
  transition: color 0.2s var(--ease);
}

.footer-mini-sep { color: var(--color-paper-line); font-size: var(--text-xs); }

.footer-logo { height: auto !important; width: 100%; max-width: 250px; }

:root {

  /* --- COLORS --- */
  --color-ink:        #121417;
  --color-ink-2:      #1B1F24;
  --color-steel:      #7A838F;
  --color-concrete:   #E6E3DD;
  --color-paper:      #F7F6F3;
  /* Pittsburgh civic gold. Black and gold predates all three sports
     teams — it comes from the city flag and seal, which is why it is
     available to use and they are not. */
  --color-signal:      #F5B335;  /* gold — fills and marks on DARK */
  --color-signal-2:    #D9971A;  /* deeper gold — hover/pressed, and small
                                    labels on light grounds */

  --color-paper-70:   rgba(247,246,243,0.70);
  --color-paper-45:   rgba(247,246,243,0.45);
  --color-paper-line: rgba(247,246,243,0.16);
  --color-ink-60:     rgba(18,20,23,0.60);
  --color-ink-line:   rgba(18,20,23,0.20);

  /* --- SPACING --- */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 128px;

  /* --- TYPE: body & small --- */
  --text-xs: 13px;
  --text-sm: 15px;
  --text-md: 17px;

  /* --- TYPE: headline tier, per breakpoint ---
     Sizes raised across the board vs v6 because Teko sets much
     narrower and taller than Barlow Condensed. Same pixel value
     reads noticeably smaller in Teko. */
  --text-lg-desktop:      22px;  --text-lg-tablet:      21px;  --text-lg-mobile:      19px;
  --text-xl-desktop:      31px;  --text-xl-tablet:      27px;  --text-xl-mobile:      23px;
  --text-2xl-desktop:     42px;  --text-2xl-tablet:     35px;  --text-2xl-mobile:     28px;
  --text-section-desktop: clamp(46px, 3.6vw, 78px);
  --text-section-tablet: 42px;   --text-section-mobile: 32px;
  --text-display-desktop: clamp(86px, 7.1vw, 152px);
  --text-display-tablet: 56px;   --text-display-mobile: 36px;

  /* --- LINE HEIGHT ---
     Teko carries generous built-in leading; 0.88 is what makes a
     two-line display headline sit correctly. */
  --lh-tight: 0.88;
  --lh-snug:  1.3;
  --lh-body:  1.55;

  /* --- TRACKING --- */
  --track-display: 0.005em;   /* Teko sets tight; a hair of positive tracking opens it */
  --track-eyebrow: 0.14em;
  --track-button:  0.06em;

  /* --- RADII --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* --- BORDERS --- */
  --border-thin:  1px;
  --border-thick: 2px;

  /* --- SECTION PADDING --- */
  --section-pad-sm: 64px;
  --section-pad-md: 96px;
  --section-pad-lg: 160px;

  /* --- LAYOUT --- */
  --container-w: 1400px;
  --nav-h: 96px;
  --nav-h-shrunk: 72px;
  --logo-h: 64px;
  --logo-h-shrunk: 46px;

  /* --- MOTION --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --matrix-dwell: 6.5s;
}

.denial-band { position: relative; display: block; overflow: hidden; background: var(--color-ink); }

.denial-media { position: absolute; inset: 0; display: block; }

.denial-image {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  filter: contrast(1.03) saturate(0.95);
}

.denial-overlay {
  position: absolute; inset: 0; display: block;
  background: linear-gradient(90deg,
    rgba(12,14,17,0.94) 0%, rgba(12,14,17,0.86) 42%,
    rgba(12,14,17,0.52) 72%, rgba(12,14,17,0.24) 100%);
}

.denial-inner { position: relative; z-index: 2; padding: var(--section-pad-lg) 0; }

.denial-list { display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }

.denial-item { display: flex; align-items: baseline; gap: 16px; }

.denial-mark {
  width: 18px; height: var(--border-thick);
  background: var(--color-signal);
  display: block; flex: none; position: relative; top: -8px;
}

.denial-text {
  font-family: 'Teko', Arial, sans-serif;
  font-weight: 600; text-transform: uppercase;
  font-size: clamp(26px, 2.2vw, 40px); line-height: 1.02;
  letter-spacing: var(--track-display);
  color: var(--color-paper); display: block;
}

.day-list { display: flex; flex-direction: column; }

.day-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: var(--space-lg);
  padding: var(--space-md) 0;
  border-top: var(--border-thin) solid var(--color-ink-line);
  align-items: baseline;
}

.day-item--last { border-bottom: var(--border-thin) solid var(--color-ink-line); }

.day-time {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 34px; font-weight: 600; line-height: 1;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  color: var(--color-ink); display: block;
}

.day-item--home .day-time { color: var(--color-signal); }

.day-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-md); line-height: 1.55;
  color: rgba(18,20,23,0.72); display: block;
}

.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg) var(--space-xl); }

.req-item { padding-top: var(--space-sm); border-top: var(--border-thin) solid var(--color-paper-line); }

.req-item--accent { border-top-color: var(--color-signal); }

.req-title {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 25px; font-weight: 600; text-transform: uppercase;
  line-height: 1.05; color: var(--color-paper);
  display: block; margin-bottom: 8px;
}

.req-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.5;
  color: var(--color-paper-70); display: block;
}

.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }

.step-item { position: relative; padding-top: var(--space-md); }

.step-rule { position: absolute; top: 0; left: 0; right: 0; height: var(--border-thick); background: var(--color-signal); display: block; }

.step-n {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: var(--track-eyebrow);
  color: var(--color-signal); display: block; margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.step-title {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 26px; font-weight: 600; text-transform: uppercase;
  line-height: 1.05; color: var(--color-paper);
  display: block; margin-bottom: 10px;
}

.step-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.5;
  color: var(--color-paper-70); display: block;
}

.apply-note {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.5;
  color: rgba(18,20,23,0.62); display: block;
}

.section--concrete .form-label { color: rgba(18,20,23,0.55); }

.section--concrete .form-input,
.section--concrete .form-select,
.section--concrete .form-textarea {
  background: var(--color-paper);
  border-color: var(--color-ink-line);
  color: var(--color-ink);
}

.section--concrete .form-note { color: rgba(18,20,23,0.55); }

.form-field--file .form-input { padding: 11px 14px; }

.form-hint {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-xs); line-height: 1.4;
  color: rgba(18,20,23,0.5); display: block; margin-top: 6px;
}

.hero--inner { min-height: 76vh; }

.mat-row {
  padding: var(--space-2xl) 0;
  border-top: var(--border-thin) solid var(--color-ink-line);
}

.mat-row--first { border-top: 0; padding-top: var(--space-lg); }

.mat-row .split-bleed-content { padding-top: 0; padding-bottom: 0; }

.mat-row .split-bleed-media { min-height: 420px; }

.mat-index {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: var(--track-eyebrow); line-height: 1;
  color: var(--color-signal-2);
  font-variant-numeric: tabular-nums;
  display: block; margin-bottom: 14px;
}

.mat-title { margin-bottom: var(--space-md); }

.mat-body { color: rgba(18,20,23,0.72); margin-bottom: var(--space-md); }

.mat-spec { display: flex; gap: var(--space-lg); flex-wrap: wrap; padding-top: var(--space-md); border-top: var(--border-thin) solid var(--color-ink-line); }

.mat-spec-item { display: block; }

.mat-spec-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-eyebrow);
  line-height: 1; color: rgba(18,20,23,0.5);
  display: block; margin-bottom: 8px;
}

.mat-spec-value {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 26px; font-weight: 600; line-height: 1;
  text-transform: uppercase; color: var(--color-ink);
  font-variant-numeric: tabular-nums; display: block;
}

.mat-spec-unit { color: var(--color-signal-2); }

.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }

.how-item { position: relative; padding-top: var(--space-md); }

.how-rule { position: absolute; top: 0; left: 0; right: 0; height: var(--border-thick); background: var(--color-signal); display: block; }

.how-n {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: var(--track-eyebrow);
  color: var(--color-signal); font-variant-numeric: tabular-nums;
  display: block; margin-bottom: 10px;
}

.how-title {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 25px; font-weight: 600; text-transform: uppercase;
  line-height: 1.05; color: var(--color-paper);
  display: block; margin-bottom: 10px;
}

.how-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.5;
  color: var(--color-paper-70); display: block;
}

.wide-band { position: relative; overflow: hidden; background: var(--color-ink); }

.wide-media { position: absolute; inset: 0; display: block; }

.wide-image {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: contrast(1.03) saturate(0.95);
}

.wide-overlay {
  position: absolute; inset: 0; display: block;
  background: linear-gradient(90deg,
    rgba(12,14,17,0.92) 0%, rgba(12,14,17,0.78) 40%,
    rgba(12,14,17,0.40) 70%, rgba(12,14,17,0.14) 100%);
}

.wide-band { display: flex; align-items: center; min-height: 52vh; }

.wide-inner { position: relative; z-index: 2; width: 100%; padding: var(--section-pad-md) 0; }

.wide-line {
  font-family: 'Teko', Arial, sans-serif;
  font-weight: 600; text-transform: uppercase;
  font-size: clamp(30px, 3.2vw, 62px); line-height: 1.02;
  letter-spacing: var(--track-display);
  color: var(--color-paper); margin: 0; max-width: 22ch;
}

.cap-list { display: flex; flex-direction: column; }

.cap-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: var(--space-md); align-items: baseline;
  padding: 16px 0;
  border-bottom: var(--border-thin) solid var(--color-paper-line);
}

.cap-row--last { border-bottom: 0; }

.cap-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); font-weight: 500; line-height: 1.4;
  color: var(--color-paper-70); display: block;
}

.cap-value {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 28px; font-weight: 600; line-height: 1;
  text-transform: uppercase; color: var(--color-paper);
  font-variant-numeric: tabular-nums; display: block;
}

.cap-value-unit { color: var(--color-signal); }

.closing-line {
  font-family: 'Teko', Arial, sans-serif;
  font-weight: 500; text-transform: uppercase;
  font-size: clamp(26px, 2.4vw, 44px);
  line-height: 1.08; letter-spacing: var(--track-display);
  color: var(--color-ink); text-align: center; margin: 0;
}

.mark-truck { display: block; width: 100%; max-width: 420px; height: auto; flex: none; align-self: center; margin: 0 auto var(--space-lg); }

.mark-trt   { display: block; width: 100%; max-width: 190px; height: auto; flex: none; align-self: flex-start; margin-bottom: var(--space-lg); }

:root {

  /* --- COLORS --- */
  --color-ink:        #121417;
  --color-ink-2:      #1B1F24;
  --color-steel:      #7A838F;
  --color-concrete:   #E6E3DD;
  --color-paper:      #F7F6F3;
  /* Pittsburgh civic gold. Black and gold predates all three sports
     teams — it comes from the city flag and seal, which is why it is
     available to use and they are not. */
  --color-signal:      #F5B335;  /* gold — fills and marks on DARK */
  --color-signal-2:    #D9971A;  /* deeper gold — hover/pressed, and small
                                    labels on light grounds */

  --color-paper-70:   rgba(247,246,243,0.70);
  --color-paper-45:   rgba(247,246,243,0.45);
  --color-paper-line: rgba(247,246,243,0.16);
  --color-ink-60:     rgba(18,20,23,0.60);
  --color-ink-line:   rgba(18,20,23,0.20);

  /* --- SPACING --- */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 128px;

  /* --- TYPE: body & small --- */
  --text-xs: 13px;
  --text-sm: 15px;
  --text-md: 17px;

  /* --- TYPE: headline tier, per breakpoint ---
     Sizes raised across the board vs v6 because Teko sets much
     narrower and taller than Barlow Condensed. Same pixel value
     reads noticeably smaller in Teko. */
  --text-lg-desktop:      22px;  --text-lg-tablet:      21px;  --text-lg-mobile:      19px;
  --text-xl-desktop:      31px;  --text-xl-tablet:      27px;  --text-xl-mobile:      23px;
  --text-2xl-desktop:     42px;  --text-2xl-tablet:     35px;  --text-2xl-mobile:     28px;
  --text-section-desktop: clamp(46px, 3.6vw, 78px);
  --text-section-tablet: 42px;   --text-section-mobile: 32px;
  --text-display-desktop: clamp(86px, 7.1vw, 152px);
  --text-display-tablet: 56px;   --text-display-mobile: 36px;

  /* --- LINE HEIGHT ---
     Teko carries generous built-in leading; 0.88 is what makes a
     two-line display headline sit correctly. */
  --lh-tight: 0.88;
  --lh-snug:  1.3;
  --lh-body:  1.55;

  /* --- TRACKING --- */
  --track-display: 0.005em;   /* Teko sets tight; a hair of positive tracking opens it */
  --track-eyebrow: 0.14em;
  --track-button:  0.06em;

  /* --- RADII --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* --- BORDERS --- */
  --border-thin:  1px;
  --border-thick: 2px;

  /* --- SECTION PADDING --- */
  --section-pad-sm: 64px;
  --section-pad-md: 96px;
  --section-pad-lg: 160px;

  /* --- LAYOUT --- */
  --container-w: 1400px;
  --nav-h: 96px;
  --nav-h-shrunk: 72px;
  --logo-h: 64px;
  --logo-h-shrunk: 46px;

  /* --- MOTION --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --matrix-dwell: 6.5s;
}

.req-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg) var(--space-md); margin-top: var(--space-xl); }

:root {

  /* --- COLORS --- */
  --color-ink:        #121417;
  --color-ink-2:      #1B1F24;
  --color-steel:      #7A838F;
  --color-concrete:   #E6E3DD;
  --color-paper:      #F7F6F3;
  /* Pittsburgh civic gold. Black and gold predates all three sports
     teams — it comes from the city flag and seal, which is why it is
     available to use and they are not. */
  --color-signal:      #F5B335;  /* gold — fills and marks on DARK */
  --color-signal-2:    #D9971A;  /* deeper gold — hover/pressed, and small
                                    labels on light grounds */

  --color-paper-70:   rgba(247,246,243,0.70);
  --color-paper-45:   rgba(247,246,243,0.45);
  --color-paper-line: rgba(247,246,243,0.16);
  --color-ink-60:     rgba(18,20,23,0.60);
  --color-ink-line:   rgba(18,20,23,0.20);

  /* --- SPACING --- */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 128px;

  /* --- TYPE: body & small --- */
  --text-xs: 13px;
  --text-sm: 15px;
  --text-md: 17px;

  /* --- TYPE: headline tier, per breakpoint ---
     Sizes raised across the board vs v6 because Teko sets much
     narrower and taller than Barlow Condensed. Same pixel value
     reads noticeably smaller in Teko. */
  --text-lg-desktop:      22px;  --text-lg-tablet:      21px;  --text-lg-mobile:      19px;
  --text-xl-desktop:      31px;  --text-xl-tablet:      27px;  --text-xl-mobile:      23px;
  --text-2xl-desktop:     42px;  --text-2xl-tablet:     35px;  --text-2xl-mobile:     28px;
  --text-section-desktop: clamp(46px, 3.6vw, 78px);
  --text-section-tablet: 42px;   --text-section-mobile: 32px;
  --text-display-desktop: clamp(86px, 7.1vw, 152px);
  --text-display-tablet: 56px;   --text-display-mobile: 36px;

  /* --- LINE HEIGHT ---
     Teko carries generous built-in leading; 0.88 is what makes a
     two-line display headline sit correctly. */
  --lh-tight: 0.88;
  --lh-snug:  1.3;
  --lh-body:  1.55;

  /* --- TRACKING --- */
  --track-display: 0.005em;   /* Teko sets tight; a hair of positive tracking opens it */
  --track-eyebrow: 0.14em;
  --track-button:  0.06em;

  /* --- RADII --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* --- BORDERS --- */
  --border-thin:  1px;
  --border-thick: 2px;

  /* --- SECTION PADDING --- */
  --section-pad-sm: 64px;
  --section-pad-md: 96px;
  --section-pad-lg: 160px;

  /* --- LAYOUT --- */
  --container-w: 1400px;
  --nav-h: 96px;
  --nav-h-shrunk: 72px;
  --logo-h: 64px;
  --logo-h-shrunk: 46px;

  /* --- MOTION --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --matrix-dwell: 6.5s;
}

.mat-row { border-top: var(--border-thin) solid var(--color-ink-line); }

.mat-row--first { border-top: 0; }

.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.wide-band { position: relative; display: block; overflow: hidden; background: var(--color-ink); }

.wide-inner { position: relative; z-index: 2; padding: var(--section-pad-lg) 0; }

.owner-panel {
  border: var(--border-thin) solid var(--color-ink-line);
  border-top: 3px solid var(--color-signal);
  border-radius: var(--radius-sm);
  background: rgba(247,246,243,0.55);
  padding: var(--space-lg);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-xl);
  align-items: start;
}

.owner-id { display: block; }

.owner-name {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(34px, 3vw, 54px); font-weight: 600;
  text-transform: uppercase; line-height: 0.98;
  letter-spacing: var(--track-display);
  color: var(--color-ink); display: block; margin-bottom: 10px;
}

.owner-role {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--track-eyebrow); line-height: 1.4;
  color: var(--color-signal-2); display: block;
}

.owner-bio {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-md); line-height: 1.55;
  color: rgba(18,20,23,0.74); display: block;
}

.owner-line {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(24px, 2.1vw, 38px); font-weight: 500;
  text-transform: uppercase; line-height: 1.06;
  letter-spacing: var(--track-display);
  color: var(--color-ink); display: block;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: var(--border-thin) solid var(--color-ink-line);
}

.owner-line-accent { color: var(--color-signal-2); }

.dual { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }

.dual-card {
  position: relative;
  padding: var(--space-lg) var(--space-lg) var(--space-xl);
  border: var(--border-thin) solid var(--color-paper-line);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; align-items: flex-start;
}

.dual-rule { position: absolute; top: -1px; left: -1px; right: -1px; height: 3px; background: var(--color-paper-line); display: block; }

.dual-card--driver .dual-rule { background: var(--color-signal); }

.dual-eyebrow {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--track-eyebrow); line-height: 1;
  color: var(--color-paper-45); display: block; margin-bottom: var(--space-md);
}

.dual-card--driver .dual-eyebrow { color: var(--color-signal); }

.dual-title {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(28px, 2.4vw, 42px); font-weight: 600;
  text-transform: uppercase; line-height: 1.02;
  letter-spacing: var(--track-display);
  color: var(--color-paper); display: block; margin-bottom: var(--space-sm);
}

.dual-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.55;
  color: var(--color-paper-70); display: block; margin-bottom: var(--space-lg);
}

.edit-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: var(--space-2xl); align-items: start; }

.edit-headline { margin-bottom: var(--space-lg); }

.edit-media { display: block; position: relative; padding-bottom: 66%; overflow: hidden; border-radius: var(--radius-sm); }

.edit-media-image {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; filter: contrast(1.03) saturate(0.95);
}

.edit-notes { display: flex; flex-direction: column; }

.note-item {
  padding: var(--space-md) 0;
  border-top: var(--border-thin) solid var(--color-ink-line);
}

.note-item--first { border-top: 0; padding-top: 0; }

.note-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--track-eyebrow); line-height: 1;
  color: var(--color-signal-2); display: block; margin-bottom: 10px;
}

.note-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-md); line-height: 1.55;
  color: rgba(18,20,23,0.74); display: block;
}

.mani-list { display: flex; flex-direction: column; }

.mani-item {
  display: grid;
  grid-template-columns: 100px 1fr 250px;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-top: var(--border-thin) solid var(--color-paper-line);
  align-items: start;
}

.mani-item--last { border-bottom: var(--border-thin) solid var(--color-paper-line); }

.mani-media { display: block; position: relative; padding-bottom: 64%; overflow: hidden; border-radius: var(--radius-sm); }

.mani-media-image {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; filter: contrast(1.03) saturate(0.95);
}

.mani-n {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(48px, 4.4vw, 76px); font-weight: 600;
  line-height: 0.8; font-variant-numeric: tabular-nums;
  color: var(--color-signal); display: block;
}

.mani-title {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(26px, 2.3vw, 40px); font-weight: 600;
  text-transform: uppercase; line-height: 1.02;
  letter-spacing: var(--track-display);
  color: var(--color-paper); display: block; margin-bottom: 10px;
}

.mani-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-md); line-height: 1.55;
  color: var(--color-paper-70); display: block;
}

.fact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.fact-item { padding-top: var(--space-md); border-top: var(--border-thin) solid var(--color-ink-line); }

.fact-item--accent { border-top-color: var(--color-signal); }

.fact-value {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(34px, 3vw, 50px); font-weight: 600;
  line-height: 1; text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  color: var(--color-ink); display: block; margin-bottom: 8px;
}

.fact-unit { color: var(--color-signal); }

.fact-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.45;
  color: rgba(18,20,23,0.66); display: block;
}

:root {

  /* --- COLORS --- */
  --color-ink:        #121417;
  --color-ink-2:      #1B1F24;
  --color-steel:      #7A838F;
  --color-concrete:   #E6E3DD;
  --color-paper:      #F7F6F3;
  /* Pittsburgh civic gold. Black and gold predates all three sports
     teams — it comes from the city flag and seal, which is why it is
     available to use and they are not. */
  --color-signal:      #F5B335;  /* gold — fills and marks on DARK */
  --color-signal-2:    #D9971A;  /* deeper gold — hover/pressed, and small
                                    labels on light grounds */

  --color-paper-70:   rgba(247,246,243,0.70);
  --color-paper-45:   rgba(247,246,243,0.45);
  --color-paper-line: rgba(247,246,243,0.16);
  --color-ink-60:     rgba(18,20,23,0.60);
  --color-ink-line:   rgba(18,20,23,0.20);

  /* --- SPACING --- */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 128px;

  /* --- TYPE: body & small --- */
  --text-xs: 13px;
  --text-sm: 15px;
  --text-md: 17px;

  /* --- TYPE: headline tier, per breakpoint ---
     Sizes raised across the board vs v6 because Teko sets much
     narrower and taller than Barlow Condensed. Same pixel value
     reads noticeably smaller in Teko. */
  --text-lg-desktop:      22px;  --text-lg-tablet:      21px;  --text-lg-mobile:      19px;
  --text-xl-desktop:      31px;  --text-xl-tablet:      27px;  --text-xl-mobile:      23px;
  --text-2xl-desktop:     42px;  --text-2xl-tablet:     35px;  --text-2xl-mobile:     28px;
  --text-section-desktop: clamp(46px, 3.6vw, 78px);
  --text-section-tablet: 42px;   --text-section-mobile: 32px;
  --text-display-desktop: clamp(86px, 7.1vw, 152px);
  --text-display-tablet: 56px;   --text-display-mobile: 36px;

  /* --- LINE HEIGHT ---
     Teko carries generous built-in leading; 0.88 is what makes a
     two-line display headline sit correctly. */
  --lh-tight: 0.88;
  --lh-snug:  1.3;
  --lh-body:  1.55;

  /* --- TRACKING --- */
  --track-display: 0.005em;   /* Teko sets tight; a hair of positive tracking opens it */
  --track-eyebrow: 0.14em;
  --track-button:  0.06em;

  /* --- RADII --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* --- BORDERS --- */
  --border-thin:  1px;
  --border-thick: 2px;

  /* --- SECTION PADDING --- */
  --section-pad-sm: 64px;
  --section-pad-md: 96px;
  --section-pad-lg: 160px;

  /* --- LAYOUT --- */
  --container-w: 1400px;
  --nav-h: 96px;
  --nav-h-shrunk: 72px;
  --logo-h: 64px;
  --logo-h-shrunk: 46px;

  /* --- MOTION --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --matrix-dwell: 6.5s;
}

.owner-quote {
  font-family: 'Teko', Arial, sans-serif;
  font-weight: 500; text-transform: uppercase;
  font-size: clamp(28px, 2.7vw, 52px);
  line-height: 1.04; letter-spacing: var(--track-display);
  color: var(--color-ink); margin: 0 0 var(--space-lg);
}

.owner-quote-accent { color: var(--color-signal); }

.owner-sign { display: flex; flex-direction: column; align-items: flex-start; }

.owner-sign-rule { width: 44px; height: var(--border-thick); background: var(--color-signal); display: block; margin-bottom: var(--space-md); }

.owner-sign-name {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 26px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--track-display); line-height: 1;
  color: var(--color-ink); display: block;
}

.owner-sign-role {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--track-eyebrow); line-height: 1;
  color: rgba(18,20,23,0.55); display: block; margin-top: 8px;
}

.reach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.reach-item { padding-top: var(--space-md); border-top: var(--border-thin) solid var(--color-ink-line); display: block; }

.reach-item--accent { border-top-color: var(--color-signal); }

.reach-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--track-eyebrow); line-height: 1;
  color: rgba(18,20,23,0.5); display: block; margin-bottom: 12px;
}

.reach-value {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(23px, 2vw, 32px); font-weight: 600;
  text-transform: uppercase; line-height: 1.04;
  letter-spacing: 0.01em; color: var(--color-ink);
  font-variant-numeric: tabular-nums;
  display: block; text-decoration: none; margin-bottom: 8px;
}

a.reach-value { transition: color 0.2s var(--ease); }

.reach-value--sm { font-size: clamp(17px, 1.35vw, 21px); text-transform: none; letter-spacing: 0; }

.reach-detail {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.5;
  color: rgba(18,20,23,0.66); display: block;
}

.redirect {
  display: grid; grid-template-columns: 1fr auto;
  gap: var(--space-xl); align-items: center;
  border: var(--border-thin) solid var(--color-paper-line);
  border-left: 3px solid var(--color-signal);
  border-radius: var(--radius-sm);
  padding: var(--space-lg);
}

.redirect-title {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(26px, 2.2vw, 38px); font-weight: 600;
  text-transform: uppercase; line-height: 1.02;
  letter-spacing: var(--track-display);
  color: var(--color-paper); display: block; margin-bottom: 8px;
}

.redirect-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.55;
  color: var(--color-paper-70); display: block; max-width: 60ch;
}

.map-wrap { display: block; position: relative; width: 100%; }

.map-svg { display: block; width: 100%; height: auto; overflow: visible; }

.map-state { fill: rgba(18,20,23,0.06); stroke: var(--color-ink); stroke-width: 4; }

.map-radius { fill: rgba(245,179,53,0.18); stroke: var(--color-signal); stroke-width: 4; }

.map-yard { fill: var(--color-signal); stroke: var(--color-ink); stroke-width: 5; }

.map-tick { stroke: var(--color-ink); stroke-width: 3; }

.map-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 26px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  fill: var(--color-ink);
}

.map-label--muted { fill: rgba(18,20,23,0.42); }

.map-caption {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-xs); line-height: 1.5;
  color: rgba(18,20,23,0.55); display: block;
  margin-top: var(--space-md);
}

.county-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 var(--space-2xl); }

.county-item {
  padding: var(--space-md) 0;
  border-top: var(--border-thin) solid var(--color-paper-line);
  display: grid; grid-template-columns: 44px 1fr; gap: var(--space-md);
  align-items: baseline;
}

.county-n {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 18px; font-weight: 600; line-height: 1;
  color: var(--color-signal); font-variant-numeric: tabular-nums;
  display: block;
}

.county-name {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(26px, 2.1vw, 36px); font-weight: 600;
  text-transform: uppercase; line-height: 1;
  letter-spacing: var(--track-display);
  color: var(--color-paper); display: block; margin-bottom: 6px;
}

.county-towns {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.5;
  color: var(--color-paper-70); display: block;
}

.drive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }

.drive-item { padding-top: var(--space-md); border-top: var(--border-thin) solid var(--color-ink-line); }

.drive-item--accent { border-top-color: var(--color-signal); }

.drive-value {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(38px, 3.4vw, 58px); font-weight: 600;
  line-height: 1; text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  color: var(--color-ink); display: block; margin-bottom: 8px;
}

.drive-unit { color: var(--color-signal-2); }

.drive-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.45;
  color: rgba(18,20,23,0.66); display: block;
}

:root {

  /* --- COLORS --- */
  --color-ink:        #121417;
  --color-ink-2:      #1B1F24;
  --color-steel:      #7A838F;
  --color-concrete:   #E6E3DD;
  --color-paper:      #F7F6F3;
  /* Pittsburgh civic gold. Black and gold predates all three sports
     teams — it comes from the city flag and seal, which is why it is
     available to use and they are not. */
  --color-signal:      #F5B335;  /* gold — fills and marks on DARK */
  --color-signal-2:    #D9971A;  /* deeper gold — hover/pressed, and small
                                    labels on light grounds */

  --color-paper-70:   rgba(247,246,243,0.70);
  --color-paper-45:   rgba(247,246,243,0.45);
  --color-paper-line: rgba(247,246,243,0.16);
  --color-ink-60:     rgba(18,20,23,0.60);
  --color-ink-line:   rgba(18,20,23,0.20);

  /* --- SPACING --- */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 128px;

  /* --- TYPE: body & small --- */
  --text-xs: 13px;
  --text-sm: 15px;
  --text-md: 17px;

  /* --- TYPE: headline tier, per breakpoint ---
     Sizes raised across the board vs v6 because Teko sets much
     narrower and taller than Barlow Condensed. Same pixel value
     reads noticeably smaller in Teko. */
  --text-lg-desktop:      22px;  --text-lg-tablet:      21px;  --text-lg-mobile:      19px;
  --text-xl-desktop:      31px;  --text-xl-tablet:      27px;  --text-xl-mobile:      23px;
  --text-2xl-desktop:     42px;  --text-2xl-tablet:     35px;  --text-2xl-mobile:     28px;
  --text-section-desktop: clamp(46px, 3.6vw, 78px);
  --text-section-tablet: 42px;   --text-section-mobile: 32px;
  --text-display-desktop: clamp(86px, 7.1vw, 152px);
  --text-display-tablet: 56px;   --text-display-mobile: 36px;

  /* --- LINE HEIGHT ---
     Teko carries generous built-in leading; 0.88 is what makes a
     two-line display headline sit correctly. */
  --lh-tight: 0.88;
  --lh-snug:  1.3;
  --lh-body:  1.55;

  /* --- TRACKING --- */
  --track-display: 0.005em;   /* Teko sets tight; a hair of positive tracking opens it */
  --track-eyebrow: 0.14em;
  --track-button:  0.06em;

  /* --- RADII --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* --- BORDERS --- */
  --border-thin:  1px;
  --border-thick: 2px;

  /* --- SECTION PADDING --- */
  --section-pad-sm: 64px;
  --section-pad-md: 96px;
  --section-pad-lg: 160px;

  /* --- LAYOUT --- */
  --container-w: 1400px;
  --nav-h: 96px;
  --nav-h-shrunk: 72px;
  --logo-h: 64px;
  --logo-h-shrunk: 46px;

  /* --- MOTION --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --matrix-dwell: 6.5s;
}

:root {

  /* --- COLORS --- */
  --color-ink:        #121417;
  --color-ink-2:      #1B1F24;
  --color-steel:      #7A838F;
  --color-concrete:   #E6E3DD;
  --color-paper:      #F7F6F3;
  /* Pittsburgh civic gold. Black and gold predates all three sports
     teams — it comes from the city flag and seal, which is why it is
     available to use and they are not. */
  --color-signal:      #F5B335;  /* gold — fills and marks on DARK */
  --color-signal-2:    #D9971A;  /* deeper gold — hover/pressed, and small
                                    labels on light grounds */

  --color-paper-70:   rgba(247,246,243,0.70);
  --color-paper-45:   rgba(247,246,243,0.45);
  --color-paper-line: rgba(247,246,243,0.16);
  --color-ink-60:     rgba(18,20,23,0.60);
  --color-ink-line:   rgba(18,20,23,0.20);

  /* --- SPACING --- */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 128px;

  /* --- TYPE: body & small --- */
  --text-xs: 13px;
  --text-sm: 15px;
  --text-md: 17px;

  /* --- TYPE: headline tier, per breakpoint ---
     Sizes raised across the board vs v6 because Teko sets much
     narrower and taller than Barlow Condensed. Same pixel value
     reads noticeably smaller in Teko. */
  --text-lg-desktop:      22px;  --text-lg-tablet:      21px;  --text-lg-mobile:      19px;
  --text-xl-desktop:      31px;  --text-xl-tablet:      27px;  --text-xl-mobile:      23px;
  --text-2xl-desktop:     42px;  --text-2xl-tablet:     35px;  --text-2xl-mobile:     28px;
  --text-section-desktop: clamp(46px, 3.6vw, 78px);
  --text-section-tablet: 42px;   --text-section-mobile: 32px;
  --text-display-desktop: clamp(86px, 7.1vw, 152px);
  --text-display-tablet: 56px;   --text-display-mobile: 36px;

  /* --- LINE HEIGHT ---
     Teko carries generous built-in leading; 0.88 is what makes a
     two-line display headline sit correctly. */
  --lh-tight: 0.88;
  --lh-snug:  1.3;
  --lh-body:  1.55;

  /* --- TRACKING --- */
  --track-display: 0.005em;   /* Teko sets tight; a hair of positive tracking opens it */
  --track-eyebrow: 0.14em;
  --track-button:  0.06em;

  /* --- RADII --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* --- BORDERS --- */
  --border-thin:  1px;
  --border-thick: 2px;

  /* --- SECTION PADDING --- */
  --section-pad-sm: 64px;
  --section-pad-md: 96px;
  --section-pad-lg: 160px;

  /* --- LAYOUT --- */
  --container-w: 1400px;
  --nav-h: 96px;
  --nav-h-shrunk: 72px;
  --logo-h: 64px;
  --logo-h-shrunk: 46px;

  /* --- MOTION --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --matrix-dwell: 6.5s;
}

.lost-code {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(90px, 13vw, 200px); font-weight: 600;
  line-height: 0.82; letter-spacing: -0.01em;
  color: var(--color-signal); font-variant-numeric: tabular-nums;
  display: block; margin-bottom: var(--space-md);
}

.lost-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }

.lost-item { padding-top: var(--space-md); border-top: var(--border-thin) solid var(--color-paper-line); display: block; text-decoration: none; }

.lost-item--accent { border-top-color: var(--color-signal); }

.lost-title {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 27px; font-weight: 600; text-transform: uppercase;
  line-height: 1.05; letter-spacing: var(--track-display);
  color: var(--color-paper); display: block; margin-bottom: 8px;
  transition: color 0.2s var(--ease);
}

.lost-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.5;
  color: var(--color-paper-70); display: block;
}

.legal-meta {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-xs); font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-eyebrow);
  color: rgba(18,20,23,0.5); display: block; margin-bottom: var(--space-lg);
}

.legal-body { max-width: 68ch; }

.legal-h {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(24px, 2vw, 32px); font-weight: 600;
  text-transform: uppercase; line-height: 1.05;
  letter-spacing: var(--track-display);
  color: var(--color-ink); display: block;
  margin: var(--space-xl) 0 var(--space-sm);
  padding-top: var(--space-md);
  border-top: var(--border-thin) solid var(--color-ink-line);
}

.legal-h--first { margin-top: 0; padding-top: 0; border-top: 0; }

.legal-p {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-md); line-height: 1.62;
  color: rgba(18,20,23,0.78); display: block;
  margin-bottom: var(--space-md);
}

.legal-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-md); }

.legal-item { display: grid; grid-template-columns: 16px 1fr; gap: 12px; align-items: baseline; }

.legal-mark { width: 7px; height: 7px; background: var(--color-signal); display: block; }

.legal-text {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-md); line-height: 1.55;
  color: rgba(18,20,23,0.78); display: block;
}

.legal-flag {
  border: var(--border-thin) solid var(--color-signal);
  border-left: 3px solid var(--color-signal);
  background: rgba(245,179,53,0.10);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-xl);
  display: block;
}

.legal-flag-title {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: var(--track-eyebrow); line-height: 1;
  color: var(--color-signal-2); display: block; margin-bottom: 10px;
}

.legal-flag-body {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); line-height: 1.55;
  color: rgba(18,20,23,0.78); display: block;
}

html { scroll-padding-top: calc(var(--nav-h) + 28px); }

.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: var(--space-2xl); align-items: start; }

.legal-nav { position: sticky; top: calc(var(--nav-h) + var(--space-lg)); display: block; }

.legal-nav-group { display: block; margin-bottom: var(--space-lg); }

.legal-nav-title {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  letter-spacing: var(--track-eyebrow); line-height: 1;
  color: rgba(18,20,23,0.45); display: block;
  padding-bottom: 12px; margin-bottom: 4px;
  border-bottom: var(--border-thin) solid var(--color-ink-line);
}

.legal-nav-list { display: flex; flex-direction: column; }

.legal-nav-link {
  display: block; position: relative;
  padding: 9px 0 9px 14px;
  text-decoration: none;
}

.legal-nav-bar {
  position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px;
  background: transparent; display: block;
  transition: background 0.22s var(--ease);
}

.legal-nav-label {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); font-weight: 500; line-height: 1.35;
  color: rgba(18,20,23,0.62); display: block;
  transition: color 0.22s var(--ease);
}

.legal-nav-link.is-active .legal-nav-bar { background: var(--color-signal); }

.legal-nav-link.is-active .legal-nav-label { color: var(--color-ink); font-weight: 600; }

.legal-doc { display: block; max-width: 70ch; }

.legal-doc-title {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(34px, 3vw, 52px); font-weight: 600;
  text-transform: uppercase; line-height: 1.02;
  letter-spacing: var(--track-display);
  color: var(--color-ink); display: block; margin-bottom: 6px;
}

.legal-doc + .legal-doc { margin-top: var(--space-2xl); padding-top: var(--space-2xl); border-top: 3px solid var(--color-signal); }

@keyframes matrixFill {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@supports not ((-webkit-backdrop-filter: blur(2px)) or (backdrop-filter: blur(2px))) {
  .matrix-caption { background: rgba(12, 14, 17, 0.90); }
}



@media screen and (max-width: 991px) {
:root { --logo-h: 56px; --nav-h: 86px; }
  .navbar-menu { display: none; }
  .navbar-phone { display: none; }
  .navbar-toggle { display: flex; }
  .headline--display { font-size: var(--text-display-tablet); }
  .headline--section { font-size: var(--text-section-tablet); }
  .headline--card    { font-size: var(--text-xl-tablet); }
  .headline--statement { font-size: var(--text-2xl-tablet); }
  .lede { font-size: var(--text-lg-tablet); }
  .hero-subhead { margin-bottom: 40px; }
  .container, .container--narrow { width: 90%; max-width: none; }
  .split-bleed, .split-bleed--flip {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  /* Explicit height, not min-height: .media--fill uses height:100%
     and cannot resolve against a min-height parent. Without this the
     spec panel overflows its container and paints over the content
     column below. */
  .split-bleed-media { min-height: 0; }
  .split-bleed-media .media--fill { height: 380px; }
  .split-bleed-content { position: relative; z-index: 1; }
  .grid--split-wide {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .split-bleed-content,
  .split-bleed-content--left {
    padding: var(--space-xl) 5% var(--space-xl) 5%;
  }
  .area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm) var(--space-lg);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }
  .contact-column { margin-top: 0; }
  .spec-panel { position: relative; right: auto; bottom: auto; max-width: none; margin: 0; }
  .matrix {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .matrix-row-name { font-size: 26px; }
  .band { min-height: 560px; }
  .band-panel { width: min(80vw, 540px); }
  .band-panel-content { padding: 12% 12% 7.5% 5.5%; }
  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
  .hero-media { background-position: 58% center, center; }
  .hero-overlay {
    background: linear-gradient(90deg,
      rgba(12,14,17,0.86) 0%,
      rgba(12,14,17,0.72) 56%,
      rgba(12,14,17,0.44) 100%);
  }

.cta-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .cta-form-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { padding: var(--section-pad-sm) 0; }

.step-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .req-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .denial-inner { padding: var(--section-pad-md) 0; }

.how-grid { grid-template-columns: repeat(2, 1fr); }
  .mat-row .split-bleed-media { min-height: 340px; }
  .mat-row .split-bleed-content { padding-top: var(--space-lg); }
  .wide-band { min-height: 0; }
  .wide-inner { padding: var(--section-pad-md) 0; }

.how-grid { grid-template-columns: repeat(2, 1fr); }
  .wide-inner { padding: var(--section-pad-md) 0; }

.edit-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .mani-item { grid-template-columns: 78px 1fr; gap: var(--space-md); }
  .mani-media { display: none; }
  .owner-panel { grid-template-columns: 1fr; gap: var(--space-md); padding: var(--space-md); }
  .dual { grid-template-columns: 1fr; gap: var(--space-lg); }
  .fact-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }

.dual { grid-template-columns: 1fr; gap: var(--space-lg); }
  .fact-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }

.reach-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-lg) var(--space-md); }
  .redirect { grid-template-columns: 1fr; gap: var(--space-md); align-items: start; }

.county-list { grid-template-columns: 1fr; gap: 0; }
  .drive-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .map-label { font-size: 34px; }

.lost-links { grid-template-columns: 1fr; gap: var(--space-md); }

.legal-layout { grid-template-columns: 1fr; gap: var(--space-lg); }
  /* Sticky index becomes a scrolling chip rail — a 260px sidebar
     has nowhere to go on a phone, and a stacked list of fifteen
     links would push the actual content off the first screen. */
  .legal-nav { position: static; margin: 0 -5%; }
  .legal-nav-group { margin-bottom: var(--space-md); }
  .legal-nav-title { display: none; }
  .legal-nav-list {
    flex-direction: row; gap: 8px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; padding: 0 5% 4px;
  }
  .legal-nav-link {
    flex: none; white-space: nowrap;
    padding: 9px 14px;
    border: var(--border-thin) solid var(--color-ink-line);
    border-radius: var(--radius-sm);
  }
  .legal-nav-bar { display: none; }
  .legal-nav-link.is-active { background: var(--color-signal); border-color: var(--color-signal); }
  .legal-nav-link.is-active .legal-nav-label { color: var(--color-ink); }
}


@media screen and (max-width: 767px) {
:root { --logo-h: 50px; --nav-h: 78px; }
  .headline--display { font-size: var(--text-display-mobile); }
  .headline--section { font-size: var(--text-section-mobile); }
  .headline--card    { font-size: var(--text-xl-mobile); }
  .headline--statement { font-size: var(--text-2xl-mobile); }
  .lede { font-size: var(--text-lg-mobile); }
  .hero { min-height: 620px; }
  .hero-media { background-position: 64% center, center; }
  .hero-inner { padding-top: var(--space-md); padding-bottom: var(--space-xl); }
  .hero-subhead { margin-bottom: var(--space-md); max-width: none; }
  .hero-trust { padding-left: 0; border-left: 0; width: 100%; }
  .section { padding: var(--section-pad-sm) 0; }
  .stack-2xl { margin-top: var(--space-xl); }
  .spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }
  .spec-value { font-size: 26px; }
  .haul-close { gap: var(--space-md); }
  .area-name { font-size: 22px; }
  .spec-panel { padding: var(--space-md) var(--space-md); }
  .matrix-row { padding: 16px 0 16px var(--space-sm); }
  .matrix-row.is-active { padding-left: var(--space-md); }
  .matrix-row-name { font-size: 23px; }
  .matrix-caption { padding: var(--space-sm) var(--space-md); }
  /* Below 767 the state silhouette stops reading and the copy
     stops fitting. Panel reverts to a flush-bottom rectangle. */
  .band { min-height: 0; }
  .band-media { position: relative; height: 320px; }
  .band-image { position: absolute; }
  .band-panel {
    position: relative;
    left: auto; bottom: auto;
    width: 100%;
  }
  .band-panel-ratio { display: none; }
  .band-panel-shape { clip-path: none; }
  .band-panel-content {
    position: relative;
    inset: auto;
    padding: var(--space-lg) 5%;
  }
  .benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .benefit-title { font-size: 23px; }
  .benefit-figure { font-size: 30px; }
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  .area-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 var(--space-lg);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .contact-value { font-size: 26px; }
  .contact-column { padding: var(--space-md); }

/* --- HERO ---------------------------------------------------
     A left-to-right scrim is meaningless on a narrow screen and
     was darkening the entire image. Vertical scrim, content
     anchored to the bottom, type and CTAs stepped down. */
  .hero { min-height: 88vh; align-items: flex-end; }
  .hero-media { background-position: 58% center, center; filter: brightness(0.94) contrast(1.03) saturate(0.95); }
  .hero-overlay {
    background: linear-gradient(0deg,
      rgba(12,14,17,0.94) 0%,
      rgba(12,14,17,0.86) 26%,
      rgba(12,14,17,0.46) 52%,
      rgba(12,14,17,0.12) 78%,
      rgba(12,14,17,0.28) 100%);
  }
  .hero-overlay--base { background: none; }
  .hero-inner { padding-top: 0; padding-bottom: var(--space-xl); }
  .headline--display { font-size: 40px; }
  .hero-subhead { font-size: var(--text-sm); max-width: 34ch; margin-bottom: var(--space-md); }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .button { width: 100%; padding: 14px 20px; }
  .hero-trust {
    width: 100%; padding-left: 0; border-left: 0;
    padding-top: var(--space-md);
    border-top: var(--border-thin) solid var(--color-paper-line);
    justify-content: flex-start;
  }

  /* --- SECTION 2: spec panel as a band under the photo --- */
  .split-bleed-media { min-height: 0; }
  .split-bleed-media .media--fill { height: 300px; }
  .spec-panel {
    position: relative; right: auto; bottom: auto;
    max-width: none; width: 100%;
    margin: 0; border-radius: 0;
    padding: var(--space-md) 5%;
  }
  .split-bleed-content { padding: var(--space-lg) 5% var(--space-xl); }
  .spec-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); }
  .spec-item--lead { grid-column: 1 / -1; }
  .spec-item--lead .spec-value { font-size: 40px; }
  .spec-value { font-size: 22px; }
  .spec-label { font-size: 10px; }

  /* --- SECTION 3: rail becomes a scrolling chip row --- */
  .matrix { gap: var(--space-md); }
  .matrix-rail {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    margin: 0 -5%;
    padding-left: 5%;
    padding-right: 5%;
  }
  .matrix-row {
    width: auto; flex: none;
    padding: 10px 16px;
    border: var(--border-thin) solid var(--color-paper-line);
    border-left: var(--border-thin) solid var(--color-paper-line);
    border-radius: var(--radius-sm);
    white-space: nowrap;
  }
  .matrix-row.is-active {
    padding: 10px 16px;
    border-color: var(--color-signal);
    background: var(--color-signal);
  }
  .matrix-row-track, .matrix-row-fill { display: none; }
  .matrix-row-name { font-size: 20px; }
  .matrix-row.is-active .matrix-row-name { color: var(--color-ink); }
  .matrix-caption { padding: var(--space-sm) 5%; }
  .matrix-caption-text { font-size: var(--text-sm); }

  /* --- BAND: keep the Pennsylvania silhouette ---------------
     It is the page's signature and still reads at this size.
     The eyebrow comes out to buy the headline room inside it. */
  /* The band's own ground is the cream of the section beneath, so
     the ratio spacer's fractional-pixel rounding cannot show as a
     line under the state. */
  .band { min-height: 0; background: var(--color-concrete); }
  .band-media { position: relative; height: 46vh; }
  .band-image { position: absolute; }
  .band-panel {
    position: relative; left: auto; bottom: auto;
    width: 86%;
    margin: -14vh auto -1px 0;
    z-index: 3;
  }
  .band-panel-ratio { display: block; padding-bottom: 58.15%; }
  .band-panel-shape { clip-path: polygon(0.0% 0.0%, 13.1% 0.0%, 13.1% 10.6%, 89.0% 10.6%, 94.3% 26.3%, 91.7% 36.1%, 98.1% 43.9%, 94.0% 54.9%, 100.0% 83.1%, 92.8% 93.7%, 87.9% 96.9%, 81.5% 100.0%, 0.0% 100.0%); }
  .band-panel-content { position: absolute; inset: 0; padding: 13% 13% 8% 8%; }
  .band-eyebrow { display: none; }
  .band-headline { font-size: 22px; margin-bottom: 10px; }
  .band-actions .button { padding: 11px 16px; }
  .band-actions .button-label { font-size: 13px; }

  /* --- SECTION 5: careers --- */
  .headline--statement { font-size: 27px; }
  .brand-truck { max-width: 240px; }
  .brand-badge { max-width: 230px; }
  .section-actions--centered { flex-direction: column; align-items: stretch; }
  .section-actions--centered .button { width: 100%; }
  .benefit-grid { gap: var(--space-lg); }

  /* --- SECTION 6: service area --- */
  .area-grid { grid-template-columns: repeat(2, 1fr); gap: 0 var(--space-md); }
  .area-name { font-size: 21px; }

  /* --- BEAT --- */
  .beat-line { font-size: 34px; line-height: 1.08; }
  .beat-sign { margin-top: var(--space-lg); }
  .beat-sign-name { font-size: 21px; }

  /* --- SECTION 7: quote --- */
  .contact-column { padding: var(--space-md); }
  .contact-block--first { padding: 0; }
  .contact-call {
    display: flex; align-items: center; justify-content: center;
    width: 100%; padding: 15px 18px;
    background: var(--color-signal); border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
  }
  .contact-call-label {
    font-family: 'Barlow', Arial, sans-serif;
    font-size: var(--text-sm); font-weight: 600;
    text-transform: uppercase; letter-spacing: var(--track-button);
    color: var(--color-ink); line-height: 1;
  }
  .form-actions { flex-direction: column; align-items: flex-start; gap: var(--space-sm); }
  .form-actions .button { width: 100%; }

  /* --- FOOTER --- */
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* --- Global rhythm ---
     .section--flush MUST be re-declared after .section here. This
     block is last in the stylesheet, so a bare .section rule
     outranks the modifier at equal specificity and every
     full-bleed section quietly gets its padding back. */
  .section { padding: var(--section-pad-sm) 0; }
  .section--flush { padding: 0; }
  .section--beat { padding: 0; height: 165vh; }
  .stack-2xl { margin-top: var(--space-lg); }

.cta-form-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .button { width: 100%; }

.footer-logo { max-width: 200px; }

.hero--inner { min-height: 78vh; }
  .day-item { grid-template-columns: 1fr; gap: 6px; padding: var(--space-sm) 0; }
  .day-time { font-size: 28px; }
  .denial-overlay {
    background: linear-gradient(0deg,
      rgba(12,14,17,0.94) 0%, rgba(12,14,17,0.86) 30%,
      rgba(12,14,17,0.52) 62%, rgba(12,14,17,0.30) 100%);
  }
  .denial-inner { padding: var(--section-pad-sm) 0; }
  .denial-text { font-size: 24px; }
  .req-title { font-size: 22px; }
  .step-title { font-size: 23px; }

.how-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .mat-row { padding: var(--space-xl) 0; }
  .mat-row .split-bleed-media { min-height: 280px; }
  .mat-row .split-bleed-content { padding-top: var(--space-lg); padding-bottom: 0; }
  .wide-band { min-height: 0; }
  .closing-line { font-size: 24px; }
  .mat-spec { gap: var(--space-md); }
  .mat-spec-value { font-size: 22px; }
  .wide-inner { padding: var(--section-pad-sm) 0; }
  .wide-overlay {
    background: linear-gradient(0deg,
      rgba(12,14,17,0.94) 0%, rgba(12,14,17,0.84) 34%,
      rgba(12,14,17,0.48) 66%, rgba(12,14,17,0.26) 100%);
  }
  .wide-line { font-size: 27px; max-width: none; }
  .cap-value { font-size: 24px; }

.mark-truck { max-width: 280px; }
  .mark-trt { max-width: 140px; }

.how-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .mat-spec { gap: var(--space-md); }
  .mat-spec-value { font-size: 22px; }
  .wide-inner { padding: var(--section-pad-sm) 0; }
  .wide-overlay {
    background: linear-gradient(0deg,
      rgba(12,14,17,0.94) 0%, rgba(12,14,17,0.84) 34%,
      rgba(12,14,17,0.48) 66%, rgba(12,14,17,0.26) 100%);
  }
  .wide-line { font-size: 27px; max-width: none; }
  .cap-value { font-size: 24px; }

.mani-item { grid-template-columns: 1fr; gap: 6px; padding: var(--space-md) 0; }
  .mani-n { font-size: 40px; line-height: 1; }
  .owner-quote { font-size: 26px; }
  .fact-grid { grid-template-columns: 1fr; }
  .dual-card { padding: var(--space-md) var(--space-md) var(--space-lg); }

.owner-quote { font-size: 26px; }
  .fact-grid { grid-template-columns: 1fr; }
  .dual-card { padding: var(--space-md) var(--space-md) var(--space-lg); }

.reach-grid { grid-template-columns: 1fr; gap: var(--space-md); }
  .reach-item { padding-top: var(--space-sm); }
  .redirect { padding: var(--space-md); }

.county-item { grid-template-columns: 32px 1fr; gap: var(--space-sm); padding: var(--space-sm) 0; }
  .map-label { font-size: 42px; }

.mark-trt { max-width: 140px; }
}


@media screen and (max-width: 479px) {
.hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .button { width: 100%; }
  .trust-badge { width: 100%; justify-content: center; }

.headline--display { font-size: 34px; }
  .navmenu-link-label { font-size: 29px; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .band-panel-content { padding: 12% 12% 7% 8%; }
  .band-headline { font-size: 19px; }
  .area-grid { grid-template-columns: 1fr; }
}


@media (hover: hover) {
.button--primary:hover   { background: var(--color-paper); }
  .button--signal:hover    { background: var(--color-signal-2); }
  .button--secondary:hover { border-color: var(--color-paper); background: rgba(247,246,243,0.06); }
  .button--signal-outline:hover { border-color: var(--color-signal); background: rgba(245,179,53,0.12); }

a.trust-badge:hover { opacity: 0.75; }

.navbar-link:hover .navbar-link-label { color: var(--color-paper); }
  .navbar-link:hover .navbar-link-underline { transform: scaleX(1); }

.matrix-row:hover .matrix-row-name { color: var(--color-paper); }

.benefit-item:hover .benefit-rule { height: 3px; }
  .benefit-item:hover .benefit-rule-fill { transform: scaleX(1); }

.section--concrete .area-item:hover { border-bottom-color: var(--color-signal); }
  .section--concrete .area-item:hover .area-name { color: var(--color-ink); }

.section--concrete .button--secondary:hover {
    border-color: var(--color-ink);
    background: rgba(18,20,23,0.05);
  }

.area-item:hover { border-bottom-color: var(--color-signal); }
  .area-item:hover .area-mark { transform: scale(1.7); }
  .area-item:hover .area-name { transform: translateX(5px); color: var(--color-signal-2); }

.footer-link:hover .footer-link-label { color: var(--color-signal); }

.cta-phone:hover .cta-phone-number { color: var(--color-signal); }

.footer-mini:hover { color: var(--color-signal); }

a.reach-value:hover { color: var(--color-signal-2); }

.lost-item:hover .lost-title { color: var(--color-signal); }

.legal-nav-link:hover .legal-nav-label { color: var(--color-ink); }
}


@media (prefers-reduced-motion: reduce) {
.beat-lit .beat-word { color: var(--color-ink); }
  .beat-lit .beat-word--accent { color: var(--color-signal); }
  .beat-lit .beat-sign { opacity: 1; transform: none; }

.motion-on .reveal { opacity: 1; transform: none; transition: none; }

*, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

html { scroll-behavior: smooth; }
}

/* ============================================================
   MOBILE HARDENING — added for the static build
   Grid and flex children default to min-width:auto, so a child
   with a horizontally scrolling rail inside it forces its column
   wider than the viewport instead of scrolling internally. That is
   what pushed the whole page sideways on the legal and materials
   pages. min-width:0 lets them behave.
   ============================================================ */
.legal-layout > *,
.matrix, .matrix-stage, .matrix-rail,
.split-bleed > *, .split-bleed--flip > *,
.grid--split-wide > *, .edit-grid > * { min-width: 0; }

/* overflow-x MUST be clip, not hidden. `hidden` makes the element a
   scroll container, which silently kills `position: sticky` on every
   descendant — that is what broke the pinned statement. `clip`
   prevents sideways scroll without creating the container. */
html, body { overflow-x: clip; }
img, svg, video { max-width: 100%; }
.map-svg { width: 100%; height: auto; }

/* ============================================================
   NAV FIT — the client wordmark is wider than the mark it
   replaced, which pushed the menu toggle off screen below about
   420px. Logo steps down, the CTA shrinks, and under 480 the CTA
   drops entirely — the menu carries both calls to action anyway.
   ============================================================ */
@media screen and (max-width: 767px) {
  :root { --logo-h: 40px; --nav-h: 68px; }
  .navbar-actions { gap: 10px; }
  .navbar-actions .button { padding: 10px 13px; }
  .navbar-actions .button-label { font-size: 11px; letter-spacing: 0.08em; }
  .navbar-toggle { width: 42px; height: 42px; margin-right: -6px; }
  .navbar-toggle-icon { width: 26px; height: 26px; }
}
@media screen and (max-width: 479px) {
  :root { --logo-h: 36px; --nav-h: 62px; }
  .navbar-actions .button { display: none; }
}

/* ============================================================
   TOUCH TARGETS & MINIMUM TYPE (mobile)
   Text links in the footer and contact blocks rendered 18–27px
   tall — fine with a mouse, too small with a thumb. Padding is
   added rather than font size so the design doesn't shift.
   ============================================================ */
@media screen and (max-width: 991px) {
  .footer-link { padding: 9px 0; }
  .footer-mini { padding: 8px 0; display: inline-block; }
  .cta-driver-link { padding: 8px 0; display: inline-block; }
  a.contact-value, a.reach-value { padding: 6px 0; display: inline-block; }
  .legal-nav-link { min-height: 40px; display: flex; align-items: center; }

  /* Checkbox rendered at 13px — unusable with a thumb. */
  input[type="checkbox"] {
    width: 22px; height: 22px;
    accent-color: var(--color-signal);
    vertical-align: -5px;
  }
  .form-field--full label.form-label { display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; text-transform: none; letter-spacing: 0; font-size: var(--text-sm); }

  /* Nothing below 11px on a phone. */
  .cta-phone-label, .reach-label, .mat-spec-label, .spec-label,
  .note-label, .legal-nav-title, .trust-text { font-size: 11px; }

  /* iOS zooms the page when a focused input is under 16px. */
  .form-input, .form-select, .form-textarea { font-size: 16px; }
}

/* Honeypot — hidden from people, visible to bots that fill everything. */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ============================================================
   CLIENT CONTENT — trust strip and check list
   Both come from the client's homepage mockup.
   ============================================================ */
.trust-strip { background: var(--color-ink-2); border-top: var(--border-thin) solid var(--color-paper-line); display: block; }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); padding: var(--space-lg) 0; }
.trust-cell { display: flex; align-items: center; gap: 13px; }
.trust-icon { width: 24px; height: 24px; color: var(--color-signal); flex: none; display: block; }
.trust-text {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; line-height: 1.35;
  color: var(--color-paper); display: block;
}
.check-list { display: flex; flex-direction: column; gap: 13px; }
.check-item { display: grid; grid-template-columns: 21px 1fr; gap: 12px; align-items: center; }
.check-mark { width: 21px; height: 21px; color: var(--color-signal); display: block; }
.check-text {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: var(--text-sm); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.7px; line-height: 1.4;
  color: var(--color-ink); display: block;
}
.section--dark .check-text { color: var(--color-paper); }

@media screen and (max-width: 991px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}
@media screen and (max-width: 767px) {
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: var(--space-md) var(--space-sm); padding: var(--space-md) 0; }
  .trust-cell { gap: 10px; align-items: flex-start; }
  .trust-icon { width: 20px; height: 20px; margin-top: 1px; }
  .trust-text { font-size: 10.5px; letter-spacing: 0.6px; }
}

/* ============================================================
   FLEXIBLE SERVICE PANEL — client revision
   Replaces the numeric spec plate. Same object, same placement
   straddling the seam; the content is now qualitative because the
   client removed every figure.
   ============================================================ */
.spec-eyebrow {
  font-family: 'Barlow', Arial, sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: var(--track-eyebrow);
  line-height: 1; color: var(--color-signal);
  display: block; margin-bottom: var(--space-md);
}
.spec-headline {
  font-family: 'Teko', Arial, sans-serif;
  font-size: clamp(34px, 3vw, 50px);
  white-space: nowrap; font-weight: 600;
  text-transform: uppercase; line-height: 0.96;
  letter-spacing: var(--track-display);
  color: var(--color-paper); margin: 0 0 var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: var(--border-thin) solid var(--color-paper-line);
}
.spec-headline-accent { color: var(--color-signal); }
.spec-panel .spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md); margin: 0;
}
.spec-panel .spec-item { border: 0; padding: 0; }
.spec-panel .spec-item + .spec-item {
  border-left: var(--border-thin) solid var(--color-paper-line);
  padding-left: var(--space-md);
}
.spec-panel .spec-value {
  font-family: 'Teko', Arial, sans-serif;
  font-size: 20px; font-weight: 600; line-height: 1.04;
  text-transform: uppercase; letter-spacing: var(--track-display);
  color: var(--color-signal); display: block;
}
.spec-panel .spec-label { margin-bottom: 8px; }

@media screen and (max-width: 767px) {
  .spec-headline { font-size: 30px; white-space: normal; }
  .spec-panel .spec-grid { grid-template-columns: 1fr; gap: var(--space-sm); }
  .spec-panel .spec-item + .spec-item {
    border-left: 0; padding-left: 0;
    border-top: var(--border-thin) solid var(--color-paper-line);
    padding-top: var(--space-sm);
  }
}
