/* ==========================================================================
   Huntsman Electric — huntsmandfw.com
   A single committed visual world: switchgear black, conduit grey, brand gold.
   ========================================================================== */

:root {
  color-scheme: dark;

  /* Ground + surfaces — cool-biased neutrals, never pure grey */
  --void:        #0B0D10;
  --steel:       #12151A;
  --steel-2:     #171B21;
  --well:        #0E1116;

  /* Rules */
  --line:        #22272F;
  --line-strong: #2E343E;

  /* Type */
  --chalk:       #EDEFF2;
  --chalk-2:     #C7CCD3;
  --conduit:     #8A929E;

  /* Brand */
  --gold:        #C88A00;
  --gold-hi:     #E9A82A;
  --gold-dim:    rgba(200, 138, 0, .14);

  /* Semantic */
  --bad:         #F0836F;
  --good:        #5FC08A;

  --wrap: 1200px;
  --r: 3px;
}

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

/* An author `display` beats the UA stylesheet's [hidden] rule, so state it
   explicitly — the form's confirmation panel depends on it. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  background: var(--void);
  color: var(--chalk-2);
  font-family: Archivo, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: "Saira Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: .98;
  color: var(--chalk);
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; }
li { list-style: none; }

:focus-visible {
  outline: 2px solid var(--gold-hi);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: #150F02;
  padding: 10px 18px; border-radius: var(--r);
  font-weight: 600; text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 12px; }

.wrap { width: min(100% - 48px, var(--wrap)); margin-inline: auto; }

/* ── Shared type devices ─────────────────────────────────────────────── */

.eyebrow {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
  transform: translateY(-1px);
}

.band-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 68ch; }
.band-head h2 { font-size: clamp(32px, 3.6vw, 50px); }
.band-intro {
  margin-top: 20px;
  max-width: 62ch;
  color: var(--conduit);
  font-size: 16.5px;
}
.band-head-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
}
.band-head-split .band-intro { margin-top: 0; }

/* ── Buttons ─────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Saira Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--r);
  cursor: pointer;
  transition: background-color .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #150F02;
}
.btn-gold:hover, .btn-gold:focus-visible {
  background: var(--gold-hi);
  border-color: var(--gold-hi);
  box-shadow: 0 0 0 1px rgba(233,168,42,.35), 0 8px 26px -12px rgba(233,168,42,.7);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--chalk);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--gold);
  color: var(--gold-hi);
  background: var(--gold-dim);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; padding-block: 18px; font-size: 17px; }

/* ── Masthead ────────────────────────────────────────────────────────── */

.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 13, 16, .86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease, background-color .2s ease;
}
.masthead.is-stuck {
  background: rgba(11, 13, 16, .96);
  box-shadow: 0 10px 30px -20px #000;
}
.masthead-inner {
  width: min(100% - 48px, 1320px);
  margin-inline: auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand-mark { width: 40px; height: 40px; }
.brand-type { display: block; line-height: 1; }
.brand-name {
  display: block;
  font-family: "Saira Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
  font-size: 23px;
  letter-spacing: .015em;
  text-transform: uppercase;
  color: var(--chalk);
}
.brand-sub {
  display: block;
  margin-top: 3px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-hi);
}

.nav { margin-left: auto; display: flex; gap: 26px; }
.nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--conduit);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.nav a:hover, .nav a:focus-visible { color: var(--chalk); border-bottom-color: var(--gold); }

.masthead-actions { display: flex; align-items: center; gap: 16px; flex: none; }
.tel-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px; font-weight: 500;
  color: var(--chalk); text-decoration: none;
  white-space: nowrap;
}
.tel-link svg { width: 16px; height: 16px; fill: var(--gold-hi); }
.tel-link:hover { color: var(--gold-hi); }

.nav-toggle {
  display: none;
  width: 42px; height: 38px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--chalk); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Single-line-diagram rail (large screens only) ───────────────────── */

main { position: relative; }
.rail {
  position: absolute;
  top: 0; bottom: 0;
  left: calc(50% - 640px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200,138,0,.28) 6%, rgba(200,138,0,.28) 94%, transparent);
  pointer-events: none;
}
.rail-pulse {
  position: absolute;
  left: -2px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold-hi);
  box-shadow: 0 0 12px 3px rgba(233,168,42,.6);
  animation: travel 11s linear infinite;
}
@keyframes travel {
  0%   { top: 2%;  opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 98%; opacity: 0; }
}

/* ── Bands ───────────────────────────────────────────────────────────── */

.band {
  position: relative;
  padding-block: clamp(64px, 7.5vw, 108px);
  border-top: 1px solid var(--line);
}
.band::before {
  content: "";
  position: absolute;
  left: calc(50% - 644.5px);
  top: -5px;
  width: 10px; height: 10px;
  border: 1px solid var(--gold);
  background: var(--void);
  transform: rotate(45deg);
}
.band-inset { background: var(--steel); }
.hero { border-top: 0; }
.hero::before { display: none; }

@media (max-width: 1319px) {
  .rail { display: none; }
  .band::before { display: none; }
}

/* ── Hero ────────────────────────────────────────────────────────────── */

.hero {
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(56px, 7vw, 92px);
  overflow: hidden;
}
.hero-ghost {
  position: absolute;
  right: clamp(-80px, -3vw, 0px);
  top: 6%;
  width: min(44vw, 540px);
  opacity: .06;
  filter: saturate(.55);
  pointer-events: none;
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .78fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}
.hero h1 {
  font-size: clamp(40px, 5.9vw, 78px);
  line-height: .94;
  letter-spacing: -.005em;
  margin-bottom: 26px;
}
.hero h1 em { font-style: normal; color: var(--gold-hi); }
.lede {
  max-width: 56ch;
  font-size: 17.5px;
  color: var(--conduit);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.cta-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--conduit);
  max-width: 52ch;
}

/* Equipment nameplate */
.nameplate {
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  background: linear-gradient(180deg, #161A20, #0F1216);
  box-shadow: inset 0 0 0 1px rgba(200,138,0,.07), 0 24px 50px -34px #000;
  overflow: hidden;
}
.nameplate-head,
.nameplate-foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-hi);
  background: rgba(200,138,0,.07);
  border-bottom: 1px solid var(--line-strong);
}
.nameplate-foot {
  border-bottom: 0;
  border-top: 1px solid var(--line-strong);
  letter-spacing: .06em;
  text-transform: none;
  font-size: 12.5px;
}
.nameplate-foot a { text-decoration: none; }
.nameplate-foot a:hover { text-decoration: underline; }

.nameplate-rows { padding: 6px 18px; }
.nameplate-rows > div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}
.nameplate-rows > div:last-child { border-bottom: 0; }
.nameplate-rows dt {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--conduit);
}
.nameplate-rows dd { font-size: 14.5px; color: var(--chalk); line-height: 1.45; }
.nameplate-rows b { color: var(--gold-hi); font-variant-numeric: tabular-nums; font-weight: 600; }

/* ── Photo band ──────────────────────────────────────────────────────── */

.photoband {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: clamp(230px, 24vw, 380px);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.photoband-media { position: absolute; inset: 0; z-index: -2; }
.photoband-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(1) brightness(.4) contrast(1.2) sepia(.42) hue-rotate(-12deg);
}
.photoband-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,13,16,.94) 8%, rgba(11,13,16,.55) 55%, rgba(11,13,16,.9)),
    linear-gradient(180deg, var(--void), transparent 28%, transparent 70%, var(--void));
}
.photoband-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  backdrop-filter: blur(2px);
}
.stat {
  background: rgba(11,13,16,.72);
  padding: 22px 22px 24px;
}
.stat-num {
  display: block;
  font-family: "Saira Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1;
  color: var(--gold-hi);
  font-variant-numeric: tabular-nums;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--conduit);
}

/* ── Services ────────────────────────────────────────────────────────── */

.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 52px);
}
.service {
  padding-top: 26px;
  border-top: 2px solid var(--line-strong);
  transition: border-color .2s ease;
  display: flex;
  flex-direction: column;
}
.service:hover { border-top-color: var(--gold); }
.service h3 { font-size: clamp(26px, 2.4vw, 36px); line-height: .95; }
.service > p { margin-top: 16px; color: var(--conduit); font-size: 15.5px; }

.scope { margin-top: 24px; }
.scope li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--chalk-2);
  line-height: 1.45;
}
.scope li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.06em;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.scope-cta {
  margin-top: 24px;
  align-self: flex-start;
  font-family: "Saira Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gold-hi);
  text-decoration: none;
  border-bottom: 1px solid rgba(233,168,42,.4);
  padding-bottom: 3px;
  transition: border-color .15s ease, gap .15s ease;
}
.scope-cta span { display: inline-block; transition: transform .18s ease; }
.scope-cta:hover { border-bottom-color: var(--gold-hi); }
.scope-cta:hover span { transform: translateX(4px); }

/* ── Markets ─────────────────────────────────────────────────────────── */

.markets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0 clamp(20px, 3vw, 44px);
  border-bottom: 1px solid var(--line);
}
.markets li {
  position: relative;
  padding: 17px 0 17px 22px;
  border-top: 1px solid var(--line);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--chalk-2);
  transition: color .15s ease;
}
.markets li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 7px; height: 1px;
  background: var(--gold);
}
.markets li:hover { color: var(--gold-hi); }

/* ── Reasons ─────────────────────────────────────────────────────────── */

.reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}
.reason { border-top: 1px solid var(--line-strong); padding-top: 24px; }
.icon {
  width: 30px; height: 30px;
  fill: none;
  stroke: var(--gold-hi);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 18px;
}
.reason h3 { font-size: 21px; line-height: 1.05; }
.reason p { margin-top: 12px; font-size: 15px; color: var(--conduit); }

/* ── Process ─────────────────────────────────────────────────────────── */

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  counter-reset: step;
}
.process li {
  position: relative;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}
.process li::after {
  content: "";
  position: absolute;
  left: 0; top: -4px;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.step-no {
  display: block;
  font-family: "Saira Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
  font-size: 46px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.process h3 { font-size: 20px; }
.process p { margin-top: 11px; font-size: 15px; color: var(--conduit); }

/* ── Service area ────────────────────────────────────────────────────── */

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}
.area-grid h2 { font-size: clamp(32px, 3.6vw, 50px); }
.area-grid .btn { margin-top: 28px; }
.cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0 24px;
  border-bottom: 1px solid var(--line);
}
.cities li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--conduit);
}

/* ── Contact + lead form ─────────────────────────────────────────────── */

.contact { background: var(--steel); }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: start;
}
.contact-copy h2 { font-size: clamp(32px, 3.6vw, 50px); }

.direct { margin-top: 34px; display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.direct-tel {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Saira Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.4vw, 42px);
  letter-spacing: .01em;
  color: var(--chalk);
  text-decoration: none;
  font-variant-numeric: tabular-nums;
  transition: color .15s ease;
}
.direct-tel svg { width: 26px; height: 26px; fill: var(--gold); flex: none; }
.direct-tel:hover { color: var(--gold-hi); }
.direct-mail {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 14px;
  color: var(--gold-hi);
  text-decoration: none;
  border-bottom: 1px solid rgba(233,168,42,.35);
}
.direct-mail:hover { border-bottom-color: var(--gold-hi); }

.contact-creds {
  margin-top: 34px;
  padding: 0;
  border-top: 1px solid var(--line);
}
.contact-creds > div { border-bottom-style: solid; }

.form-panel {
  background: var(--well);
  border: 1px solid var(--line-strong);
  border-radius: var(--r);
  padding: clamp(22px, 3vw, 38px);
  box-shadow: 0 30px 70px -50px #000;
}
.lead-form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--conduit);
}
.req { color: var(--gold-hi); }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: Archivo, Arial, sans-serif;
  font-size: 15.5px;
  color: var(--chalk);
  background: #0A0C0F;
  border: 1px solid #2A303A;
  border-radius: 2px;
  padding: 13px 14px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 118px; line-height: 1.5; }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-hi) 50%), linear-gradient(135deg, var(--gold-hi) 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 1px), calc(100% - 14px) calc(50% + 1px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.field input::placeholder,
.field textarea::placeholder { color: #5C6470; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,138,0,.16);
}
.field.is-bad input,
.field.is-bad select,
.field.is-bad textarea { border-color: var(--bad); }

.err { font-size: 12.5px; color: var(--bad); }
.err:empty { display: none; }

.hp { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.form-fine { font-size: 12.5px; color: var(--conduit); text-align: center; }
.form-fine b { color: var(--chalk-2); font-weight: 500; }
.form-status { font-size: 13.5px; color: var(--gold-hi); text-align: center; }
.form-status:empty { display: none; }

.form-done { text-align: center; padding: clamp(16px, 3vw, 34px) 4px; display: grid; justify-items: center; gap: 14px; }
.done-icon {
  width: 54px; height: 54px;
  fill: none; stroke: var(--good);
  stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.form-done h3 { font-size: 26px; }
.form-done p { color: var(--conduit); font-size: 15px; max-width: 44ch; }
.form-done a { color: var(--gold-hi); }

/* ── Footer ──────────────────────────────────────────────────────────── */

.site-footer {
  background: #08090B;
  border-top: 1px solid var(--line);
  padding-top: clamp(48px, 5vw, 72px);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  padding-bottom: clamp(40px, 4vw, 56px);
}
.footer-brand img { width: min(100%, 360px); }
.footer-brand p { margin-top: 20px; font-size: 14.5px; color: var(--conduit); max-width: 42ch; }
.site-footer h4 {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--gold-hi);
  margin-bottom: 18px;
}
.footer-nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-nav a, .footer-contact a { font-size: 14.5px; color: var(--conduit); text-decoration: none; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--gold-hi); }
.footer-contact a.footer-tel {
  font-family: "Saira Condensed", "Arial Narrow", Arial, sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--chalk);
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.footer-contact a.footer-tel:hover { color: var(--gold-hi); }
.footer-lic { font-size: 13px; color: var(--conduit); line-height: 1.6; }
.footer-contact .btn { margin-top: 6px; }

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0 26px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--conduit);
}
.footer-base a { text-decoration: none; }
.footer-base a:hover { color: var(--gold-hi); }

/* ── Sticky mobile action bar ────────────────────────────────────────── */

.mobile-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11,13,16,.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line-strong);
}
.mobile-bar .btn { padding: 13px 12px; font-size: 15px; }

/* ── Hero entrance ───────────────────────────────────────────────────── */

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.hero-copy > *, .nameplate { animation: rise .55s cubic-bezier(.2,.7,.3,1) both; }
.hero-copy > *:nth-child(1) { animation-delay: .02s; }
.hero-copy > *:nth-child(2) { animation-delay: .08s; }
.hero-copy > *:nth-child(3) { animation-delay: .14s; }
.hero-copy > *:nth-child(4) { animation-delay: .2s; }
.hero-copy > *:nth-child(5) { animation-delay: .26s; }
.nameplate { animation-delay: .3s; }

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 1180px) {
  .nav { gap: 20px; }
  .nav a { font-size: 13.5px; }
  .reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 36px; }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 36px; }
}

@media (max-width: 1040px) {
  .masthead-inner { min-height: 70px; gap: 16px; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--steel);
    border-bottom: 1px solid var(--line-strong);
    padding: 8px 24px 18px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-toggle { display: flex; }
  .masthead-actions { margin-left: auto; }

  .hero-grid { grid-template-columns: 1fr; }
  .nameplate { max-width: 520px; }
  .hero-ghost { display: none; }

  .services { grid-template-columns: 1fr; gap: 44px; }
  .service h3 br { display: none; }
  .scope { columns: 2; column-gap: 32px; }
  .scope li { break-inside: avoid; }

  .band-head-split { grid-template-columns: 1fr; align-items: start; }
  .area-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .photoband-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  html { scroll-padding-top: 80px; }
  body { padding-bottom: 74px; }
  .mobile-bar { display: grid; }
  .tel-link span { display: none; }
  .masthead-actions .btn { display: none; }
  .tel-link svg { width: 20px; height: 20px; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 32px, var(--wrap)); }
  .masthead-inner { width: min(100% - 32px, 1320px); }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: 20px; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 46px); }
  .cta-row .btn { width: 100%; }
  .scope { columns: 1; }
  .field-row { grid-template-columns: 1fr; }
  .photoband-stats { grid-template-columns: 1fr; }
  .stat { padding: 16px 18px; }
  .stat-num { font-size: 26px; }
  .stat-label { margin-top: 4px; }
  .nameplate-rows > div { grid-template-columns: 1fr; gap: 3px; }
  .footer-grid { grid-template-columns: 1fr; }
  .direct-tel { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .rail-pulse { display: none; }
}
