/* BarnettWorks — relay ladder control board theme
   Palette:
   PANEL-ALUMINUM  #EFEDE4  body plate
   CONTROL-INK     #232830  text
   RELAY-COPPER    #B4642E  accent / bus bar
   SCHEMATIC-BLUE  #3A6B8C  thin diagram rules only
   TERMINAL-CREAM  #F8F5EA  raised faceplates
   BOARD-BAKELITE  #1C2126  header / inverted rung
   TERMINAL-TAN    #E0D6C0  strip bands
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: "DejaVu Sans", "Segoe UI", Arial, sans-serif;
  background-color: #EFEDE4;
  background-image:
    linear-gradient(#E4E1D5 1px, transparent 1px),
    linear-gradient(90deg, #E4E1D5 1px, transparent 1px);
  background-size: 26px 26px;
  color: #232830;
  overflow-x: hidden;
}

body,
.termstrip,
.panelboard {
  overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol, figure, blockquote {
  margin: 0;
}

a {
  color: #B4642E;
}

img {
  max-width: 100%;
}

.wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TERMINAL STRIP NAV ============ */
.termstrip {
  background-color: #1C2126;
  border-bottom: 8px solid #1C2126;
  position: relative;
  z-index: 40;
}

.termstrip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0 18px;
}

.termstrip-brandplate {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #F8F5EA;
  border: 3px solid #E0D6C0;
  border-radius: 4px;
  padding: 9px 16px;
  text-decoration: none;
  box-shadow: 0 4px 0 #0F1316;
}

.brand-seal {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #B4642E;
  box-shadow: inset 0 0 0 4px #F8F5EA, 0 0 0 2px #B4642E;
  flex: 0 0 auto;
}

.brand-word {
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #232830;
  text-transform: uppercase;
}

.brand-sub {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: #3A6B8C;
  font-weight: 700;
  text-transform: uppercase;
}

.termstrip-rule {
  height: 3px;
  background-color: #3A6B8C;
  width: 100%;
}

.termstrip-nav {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.term-block {
  background-color: #F8F5EA;
  border: 2px solid #E0D6C0;
  border-radius: 3px;
  min-width: 92px;
  text-align: center;
  box-shadow: inset 0 -5px 0 #E0D6C0;
}

.term-block a {
  display: block;
  padding: 7px 12px 4px;
  text-decoration: none;
  color: #232830;
  font-weight: 700;
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.term-block a:hover,
.term-block a:focus {
  color: #B4642E;
  background-color: #EFEDE4;
}

.term-screw {
  display: block;
  width: 13px;
  height: 13px;
  margin: 0 auto 3px;
  border-radius: 50%;
  background-color: #B4642E;
  box-shadow: inset 0 0 0 3px #F8F5EA, 0 1px 0 #1C2126;
}

.term-wire {
  display: block;
  padding: 0 0 6px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: #3A6B8C;
  font-weight: 700;
}

.termstrip-toggle {
  display: none;
  background-color: #F8F5EA;
  color: #232830;
  border: 2px solid #B4642E;
  border-radius: 3px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 9px 14px;
  cursor: pointer;
  font-size: 0.8rem;
}

/* ============ HERO PANELBOARD ============ */
.panelboard {
  background-color: #E0D6C0;
  border-bottom: 8px solid #1C2126;
  padding: 0 0 40px;
  position: relative;
}

.panelboard-inner {
  padding-top: 34px;
}

.panel-headline-plate {
  background-color: #F8F5EA;
  border: 4px solid #FFFFFF;
  outline: 3px solid #B4642E;
  border-radius: 5px;
  padding: 34px 38px 30px;
  box-shadow: 0 8px 0 #C7BCA2;
}

.panel-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #3A6B8C;
  font-weight: 800;
  margin-bottom: 14px;
}

.panel-headline {
  font-size: clamp(2rem, 4.6vw, 3.15rem);
  line-height: 1.08;
  font-weight: 800;
  color: #232830;
  letter-spacing: -0.01em;
  max-width: 22ch;
}

.panel-headline .copper-word {
  color: #B4642E;
}

.panel-lede {
  margin-top: 18px;
  font-size: 1.06rem;
  line-height: 1.72;
  color: #232830;
  max-width: 74ch;
}

.panel-ctas {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-loop,
.cta-bid {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 14px 22px;
  border-radius: 4px;
  font-size: 0.94rem;
}

.cta-loop {
  background-color: #B4642E;
  color: #F8F5EA;
  box-shadow: 0 5px 0 #7E421C;
}

.cta-loop:hover,
.cta-loop:focus {
  background-color: #9C5326;
}

.cta-bid {
  background-color: #F8F5EA;
  color: #232830;
  border: 3px solid #B4642E;
  box-shadow: 0 5px 0 #C7BCA2;
}

.cta-bid:hover,
.cta-bid:focus {
  color: #B4642E;
}

/* panel face */
.panel-face {
  margin-top: 26px;
  background-color: #EFEDE4;
  border: 5px solid #1C2126;
  border-radius: 6px;
  padding: 26px 24px;
  box-shadow: inset 0 0 0 2px #C7BCA2, 0 8px 0 #1C2126;
  display: grid;
  grid-template-columns: 1.5fr 1.35fr 1.15fr 1fr;
  gap: 22px;
  align-items: center;
}

.face-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3A6B8C;
  font-weight: 800;
  margin-bottom: 10px;
}

.gauge-row {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
}

.gauge {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: #F8F5EA;
  border: 4px solid #1C2126;
  position: relative;
  box-shadow: inset 0 0 0 3px #E0D6C0;
}

.gauge-tick {
  position: absolute;
  width: 2px;
  height: 9px;
  background-color: #3A6B8C;
  top: 6px;
  left: 50%;
  transform-origin: 50% 33px;
}

.gauge-tick.t1 { transform: translateX(-50%) rotate(-60deg); }
.gauge-tick.t2 { transform: translateX(-50%) rotate(-20deg); }
.gauge-tick.t3 { transform: translateX(-50%) rotate(20deg); }
.gauge-tick.t4 { transform: translateX(-50%) rotate(60deg); }

.gauge-needle {
  position: absolute;
  width: 3px;
  height: 30px;
  background-color: #B4642E;
  bottom: 39px;
  left: 50%;
  transform-origin: 50% 100%;
  border-radius: 2px;
}

.gauge-n1 .gauge-needle { transform: translateX(-50%) rotate(-38deg); }
.gauge-n2 .gauge-needle { transform: translateX(-50%) rotate(14deg); }
.gauge-n3 .gauge-needle { transform: translateX(-50%) rotate(52deg); }
.gauge-n4 .gauge-needle { transform: translateX(-50%) rotate(-12deg); }

.gauge-hub {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1C2126;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
}

.gauge-tag {
  display: block;
  text-align: center;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #3A6B8C;
  margin-top: 4px;
}

.toggle-bank {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  padding-top: 6px;
}

.toggle {
  width: 16px;
  height: 50px;
  background-color: #D3C8B0;
  border: 2px solid #1C2126;
  border-radius: 3px;
  position: relative;
}

.toggle-lever {
  position: absolute;
  left: -3px;
  width: 18px;
  height: 22px;
  background-color: #B4642E;
  border: 2px solid #1C2126;
  border-radius: 3px;
}

.toggle.up .toggle-lever { top: -2px; }
.toggle.down .toggle-lever { bottom: -2px; }

.lamp-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lamp {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #1C2126;
}

.lamp.run {
  background-color: #2E7D4F;
  box-shadow: inset 0 0 0 3px #7FC79A;
}

.lamp.idle {
  background-color: #B08A3C;
  box-shadow: inset 0 0 0 3px #E4CE96;
}

.ratings-plate {
  background-color: #F8F5EA;
  border: 3px solid #1C2126;
  border-radius: 3px;
  padding: 14px 14px 12px;
  box-shadow: inset 0 0 0 2px #E0D6C0;
}

.ratings-row {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  color: #232830;
  padding: 3px 0;
  border-bottom: 1px dashed #C7BCA2;
}

.ratings-row:last-child {
  border-bottom: 0;
}

.ratings-key {
  color: #3A6B8C;
}

.panel-rivets {
  display: flex;
  justify-content: space-between;
  padding: 0 6px;
  margin-top: 14px;
}

.rivet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #C7BCA2;
  box-shadow: inset 0 0 0 2px #EFEDE4;
}

/* ============ SECTION HEADS ============ */
.section {
  padding: 62px 0;
}

.section-head {
  margin-bottom: 30px;
}

.section-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #B4642E;
  font-weight: 800;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: #232830;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-intro {
  margin-top: 14px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: #232830;
  max-width: 80ch;
}

.prose p {
  font-size: 1rem;
  line-height: 1.8;
  color: #232830;
  margin-bottom: 16px;
  max-width: 84ch;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose a {
  color: #B4642E;
  font-weight: 700;
}

/* ============ LADDER RUNGS ============ */
.ladderrows {
  position: relative;
  background-color: #EFEDE4;
  border-top: 8px solid #B4642E;
  border-bottom: 8px solid #B4642E;
  padding: 46px 0;
  overflow-x: hidden;
}

.ladderrows-inner {
  padding-left: 58px;
  padding-right: 58px;
  position: relative;
}

.rail {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8px;
  background-color: #B4642E;
}

.rail-l1 {
  left: 22px;
}

.rail-l2 {
  right: 22px;
}

.rail-label {
  position: absolute;
  top: 6px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  background-color: #B4642E;
  padding: 3px 7px;
  border-radius: 2px;
}

.rail-l1-label { left: 14px; }
.rail-l2-label { right: 14px; }

.rung {
  position: relative;
  background-color: #F8F5EA;
  border: 3px solid #232830;
  border-radius: 4px;
  padding: 22px 24px 20px;
  margin-bottom: 24px;
  box-shadow: 0 6px 0 #D3C8B0;
}

.rung.r94 { width: 94%; margin-left: 0; }
.rung.r86 { width: 86%; margin-left: 8%; }

.rung-inverted {
  background-color: #1C2126;
  border-color: #B4642E;
  box-shadow: 0 6px 0 #0F1316;
}

.rung-inverted .rung-loadplate {
  background-color: #F8F5EA;
}

.rung-top {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-symbol {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.contact-symbol i {
  display: block;
  width: 4px;
  height: 22px;
  background-color: #232830;
}

.rung-inverted .contact-symbol i {
  background-color: #F8F5EA;
}

.contact-slash {
  width: 16px;
  height: 3px;
  background-color: #B4642E;
  transform: rotate(-34deg);
  margin-left: -14px;
}

.code-chip {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #F8F5EA;
  background-color: #3A6B8C;
  padding: 4px 9px;
  border-radius: 2px;
  flex: 0 0 auto;
}

.rung-loadplate {
  flex: 1 1 320px;
  min-width: 260px;
  background-color: #FFFFFF;
  border-left: 6px solid #B4642E;
  border-radius: 3px;
  padding: 12px 16px;
}

.rung-service {
  font-size: 1.16rem;
  font-weight: 800;
  color: #232830;
}

.rung-service a {
  color: #232830;
  text-decoration: none;
  border-bottom: 3px solid #B4642E;
}

.rung-service a:hover {
  color: #B4642E;
}

.coil-symbol {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coil-ring {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid #232830;
  position: relative;
}

.rung-inverted .coil-ring {
  border-color: #F8F5EA;
}

.coil-arc {
  position: absolute;
  top: 50%;
  left: -7px;
  width: 44px;
  height: 3px;
  background-color: #B4642E;
  transform: translateY(-50%);
}

.coil-tag {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #B4642E;
}

.rung-body {
  margin-top: 14px;
  font-size: 0.98rem;
  line-height: 1.78;
  max-width: 88ch;
}

.rung.rung-inverted .rung-body {
  color: #F8F5EA;
}

.rung-body a {
  color: #B4642E;
  font-weight: 700;
}

.rung-tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #232830;
  background-color: #E0D6C0;
  border: 2px solid #C7BCA2;
  border-radius: 2px;
  padding: 4px 9px;
}

.rung-flow {
  margin-top: 15px;
  height: 4px;
  background-color: #D3C8B0;
  border-radius: 2px;
  position: relative;
}

.rung-flow i {
  display: block;
  height: 4px;
  background-color: #3A6B8C;
  border-radius: 2px;
}

.flow-1 i { width: 34%; }
.flow-2 i { width: 46%; }
.flow-3 i { width: 58%; }
.flow-4 i { width: 70%; }
.flow-5 i { width: 82%; }
.flow-6 i { width: 96%; }

/* deeper rung variations */
.rung-deep {
  background-color: #F1EEE2;
}

.rung-tall {
  padding-top: 30px;
  padding-bottom: 28px;
}

.rung-short {
  padding-top: 16px;
  padding-bottom: 15px;
}

/* ============ MAINTENANCE NOTICE ============ */
.noticeband {
  background-color: #B4642E;
  color: #F8F5EA;
  border-top: 4px solid #3A6B8C;
  border-bottom: 4px solid #3A6B8C;
  padding: 30px 0;
}

.noticeband-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.notice-glyph {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid #F8F5EA;
  position: relative;
  flex: 0 0 auto;
}

.notice-glyph::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 4px;
  background-color: #F8F5EA;
  transform: translate(-50%, -50%) rotate(-30deg);
}

.notice-text {
  flex: 1 1 480px;
  font-size: 1.04rem;
  line-height: 1.66;
  font-weight: 700;
}

.notice-tag {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 800;
  background-color: #F8F5EA;
  color: #B4642E;
  padding: 6px 11px;
  border-radius: 2px;
}

/* ============ GROUND BUS FOOTER ============ */
.groundbus {
  background-color: #1C2126;
  color: #F8F5EA;
  border-top: 12px solid #B4642E;
  position: relative;
  padding: 0 0 26px;
}

.busbar {
  background-color: #B4642E;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 40px;
}

.bus-lug {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #F8F5EA;
  box-shadow: inset 0 0 0 5px #B4642E, 0 0 0 2px #F8F5EA;
}

.groundbus-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 26px;
  padding: 34px 0 26px;
}

.groundbus-brandplate {
  background-color: #F8F5EA;
  color: #232830;
  border-radius: 4px;
  padding: 20px 20px 18px;
  border: 3px solid #E0D6C0;
}

.groundbus-brand {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.groundbus-blurb {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.68;
}

.groundbus-col {
  background-color: #262C33;
  border: 2px solid #3A6B8C;
  border-radius: 3px;
  padding: 16px 16px 14px;
}

.groundbus-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #E0D6C0;
  font-weight: 800;
  margin-bottom: 10px;
}

.groundbus-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.groundbus-links li {
  margin-bottom: 8px;
}

.groundbus-links a {
  color: #F8F5EA;
  text-decoration: none;
  font-size: 0.94rem;
  border-bottom: 2px solid #B4642E;
}

.groundbus-links a:hover {
  color: #E0D6C0;
}

.groundbus-base {
  border-top: 2px solid #3A6B8C;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  font-size: 0.86rem;
  color: #E0D6C0;
}

.groundbus-coil {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #B4642E;
}

.groundbus-coil i {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 4px solid #B4642E;
}

/* ============ SUBPAGE PIECES ============ */
.pagebanner {
  background-color: #E0D6C0;
  border-bottom: 8px solid #1C2126;
  padding: 40px 0 34px;
}

.pagebanner-plate {
  background-color: #F8F5EA;
  border-left: 8px solid #B4642E;
  border-radius: 4px;
  padding: 22px 26px;
  box-shadow: 0 6px 0 #C7BCA2;
}

.pagebanner h1 {
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 800;
  color: #232830;
  line-height: 1.12;
}

.pagebanner p {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 80ch;
}

.industries-panel {
  background-color: #F8F5EA;
  border: 3px solid #E0D6C0;
  border-left: 8px solid #3A6B8C;
  border-radius: 4px;
  padding: 24px 26px;
}

.industries-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}

.industries-list li {
  font-size: 1rem;
  font-weight: 700;
  color: #232830;
  padding: 11px 12px;
  border-bottom: 2px dashed #C7BCA2;
}

.industries-list li:last-child {
  border-bottom: 0;
}

.industries-list li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #B4642E;
  margin-right: 10px;
}

.process-ladder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.process-step {
  background-color: #F8F5EA;
  border: 3px solid #E0D6C0;
  border-radius: 4px;
  padding: 20px 22px;
  box-shadow: 0 5px 0 #D3C8B0;
}

.process-step:nth-child(even) {
  background-color: #F1EEE2;
}

.process-num {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #F8F5EA;
  background-color: #B4642E;
  padding: 4px 9px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #232830;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.96rem;
  line-height: 1.72;
  color: #232830;
}

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 26px;
  align-items: start;
}

.contact-form-plate {
  background-color: #F8F5EA;
  border: 4px solid #E0D6C0;
  border-radius: 4px;
  padding: 26px 26px 24px;
  box-shadow: 0 7px 0 #C7BCA2;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #3A6B8C;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  font-size: 1rem;
  font-family: inherit;
  color: #232830;
  background-color: #FFFFFF;
  border: 3px solid #C7BCA2;
  border-radius: 3px;
  padding: 11px 12px;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid #B4642E;
  border-color: #B4642E;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  display: inline-block;
  background-color: #B4642E;
  color: #F8F5EA;
  border: 0;
  border-radius: 4px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 14px 26px;
  cursor: pointer;
  box-shadow: 0 5px 0 #7E421C;
}

.form-submit:hover,
.form-submit:focus {
  background-color: #9C5326;
}

.form-note {
  margin-top: 14px;
  font-size: 0.88rem;
  line-height: 1.62;
  color: #232830;
}

.form-status {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #B4642E;
}

.contact-card {
  background-color: #1C2126;
  color: #F8F5EA;
  border-radius: 4px;
  padding: 24px 24px 20px;
  margin-bottom: 20px;
  border-top: 8px solid #B4642E;
}

.contact-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #F8F5EA;
}

.contact-card p {
  font-size: 0.96rem;
  line-height: 1.76;
  color: #F8F5EA;
}

.contact-card a {
  color: #E0D6C0;
  font-weight: 700;
}

.contact-lines {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-lines li {
  padding: 9px 0;
  border-bottom: 1px dashed #3A6B8C;
  font-size: 0.96rem;
  color: #F8F5EA;
}

.contact-lines li:last-child {
  border-bottom: 0;
}

.contact-lines strong {
  color: #E0D6C0;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}

/* FAQ accordion */
.faq-item {
  background-color: #F8F5EA;
  border: 3px solid #E0D6C0;
  border-left: 8px solid #B4642E;
  border-radius: 4px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background-color: #F8F5EA;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 800;
  color: #232830;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.faq-q:hover,
.faq-q:focus {
  color: #B4642E;
}

.faq-mark {
  color: #B4642E;
  font-weight: 800;
  flex: 0 0 auto;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}

.faq-a p {
  padding: 0 18px 16px;
  font-size: 0.96rem;
  line-height: 1.76;
  color: #232830;
}

.faq-item.open .faq-a {
  max-height: 420px;
}

/* counters */
.counter-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.counter-cell {
  background-color: #F8F5EA;
  border: 3px solid #E0D6C0;
  border-radius: 4px;
  padding: 22px 20px;
  text-align: center;
}

.counter-cell:nth-child(2) {
  background-color: #F1EEE2;
  border-left: 8px solid #B4642E;
}

.counter-num {
  font-size: 2.1rem;
  font-weight: 800;
  color: #B4642E;
  line-height: 1;
}

.counter-cap {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #232830;
}

/* service detail block for services page */
.service-block {
  background-color: #F8F5EA;
  border: 3px solid #E0D6C0;
  border-radius: 4px;
  padding: 24px 26px 22px;
  margin-bottom: 22px;
  box-shadow: 0 6px 0 #D3C8B0;
}

.service-block:nth-child(even) {
  background-color: #F1EEE2;
  border-left: 8px solid #B4642E;
}

.service-block h2 {
  font-size: 1.32rem;
  font-weight: 800;
  color: #232830;
  margin-bottom: 10px;
}

.service-block .service-code {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #F8F5EA;
  background-color: #3A6B8C;
  padding: 4px 9px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 10px;
}

.service-block p {
  font-size: 0.99rem;
  line-height: 1.8;
  color: #232830;
  margin-bottom: 12px;
}

.service-block p:last-child {
  margin-bottom: 0;
}

/* CTA band */
.ctaband {
  background-color: #1C2126;
  border-top: 8px solid #B4642E;
  border-bottom: 8px solid #B4642E;
  padding: 40px 0;
  color: #F8F5EA;
}

.ctaband-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ctaband h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #F8F5EA;
  max-width: 46ch;
  line-height: 1.2;
}

.ctaband p {
  margin-top: 10px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #E0D6C0;
  max-width: 62ch;
}

.ctaband .cta-loop {
  box-shadow: 0 5px 0 #7E421C;
}

/* ============ REVEAL ============ */
html.js .reveal-pre {
  opacity: 0;
  transform: translateY(14px);
}

html.js .reveal-pre.is-shown {
  opacity: 1;
  transform: none;
}

.reveal-pre {
  transition: opacity 480ms ease, transform 480ms ease;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1000px) {
  .panel-face {
    grid-template-columns: 1fr 1fr;
  }
  .groundbus-top {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .termstrip-inner {
    flex-wrap: wrap;
  }
  .termstrip-toggle {
    display: inline-block;
  }
  .termstrip-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }
  .termstrip-nav.open {
    display: flex;
  }
  .term-block {
    width: 100%;
  }
  .term-block a {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    padding: 10px 14px;
  }
  .term-screw {
    margin: 0;
  }
  .term-wire {
    padding: 0;
  }
  .ladderrows-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
  .rung.r94,
  .rung.r86 {
    width: 100%;
    margin-left: 0;
  }
  .counter-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .panel-face {
    grid-template-columns: 1fr;
  }
  .groundbus-top {
    grid-template-columns: 1fr;
  }
  .process-ladder {
    grid-template-columns: 1fr;
  }
  .panel-headline-plate {
    padding: 24px 20px;
  }
  .panel-ctas {
    flex-direction: column;
  }
  .cta-loop,
  .cta-bid {
    text-align: center;
  }
  .gauge-row {
    flex-wrap: wrap;
  }
}
