/* ============================================================
   JCT Plumbing LLC — Pump-Room Manifold Theme
   Manifold-room body, blowtorch-copper accents, no gradients
   ============================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  background: #141A1E;
  color: #EFE6D4;
  font-family: Georgia, "Times New Roman", "Palatino Linotype", Book Antiqua, serif;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #C97E4A;
  text-decoration: none;
}

a:hover {
  color: #F6F3EA;
}

h1, h2, h3, h4 {
  color: #F6F3EA;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  line-height: 1.25;
}

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

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #C97E4A;
  color: #0C0F12;
  padding: 10px 18px;
  z-index: 200;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-weight: bold;
  border-radius: 0 0 6px 0;
}

.skip-link:focus {
  left: 0;
}

/* ============================================================
   REVEAL — safe without JS, WeakSet-tracked
   ============================================================ */

.reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (min-width: 601px) {
  .reveal-active {
    opacity: 1;
  }
}

/* Default visible; JS turns on hidden state only after load */
.js .reveal {
  opacity: 0;
  -webkit-transform: translateY(26px);
  transform: translateY(26px);
}

.js .reveal.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* ============================================================
   HEADER-MANIFOLD NAV
   ============================================================ */

.headermanifold {
  position: sticky;
  top: 0;
  z-index: 100;
}

.headermanifold-inner {
  background: #1F272D;
  border-bottom: 2px solid #5E4A38;
}

.headermanifold-rail {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  flex-wrap: wrap;
}

.headermanifold-stubs {
  position: relative;
  height: 0;
}

.brand-plate {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.brand-stub {
  width: 12px;
  height: 34px;
  background: linear-gradient(#C97E4A, #5E4A38);
  border-radius: 6px 6px 0 0;
  box-shadow: inset 0 3px 0 #EFE6D4, inset 0 -2px 0 #0C0F12;
}

.brand-name {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #0C0F12;
  background: #F6F3EA;
  padding: 10px 18px;
  border-radius: 4px;
  border-left: 6px solid #C97E4A;
  text-decoration: none;
  display: block;
  line-height: 1.2;
}

.brand-tagline {
  font-size: 0.72rem;
  color: #EFE6D4;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
}

.capnav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  flex-wrap: wrap;
}

.capnav-link {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #EFE6D4;
  background: #0C0F12;
  border: 1px solid #5E4A38;
  border-radius: 6px 6px 14px 14px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease;
}

.capnav-link::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #C97E4A;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #0C0F12, 0 0 0 4px #5E4A38;
}

.capnav-link:hover,
.capnav-link.is-active {
  background: #C97E4A;
  color: #0C0F12;
}

.capnav-link:hover::before {
  background: #0C0F12;
  box-shadow: 0 0 0 3px #C97E4A, 0 0 0 4px #EFE6D4;
}

.dispatch-chip {
  background: #4A7FA8;
  color: #0C0F12;
  border-color: #4A7FA8;
}

.dispatch-chip:hover {
  background: #F6F3EA;
  color: #0C0F12;
}

.nav-toggle {
  display: none;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #C97E4A;
  color: #0C0F12;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .headermanifold-rail {
    align-items: flex-start;
  }

  .brand-col {
    display: flex;
    flex-direction: column;
  }

  .capnav {
    display: none;
    width: 100%;
    flex-direction: column;
    background: #1F272D;
    padding: 12px 0 18px;
    border-top: 1px solid #5E4A38;
  }

  .capnav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
    margin-top: 16px;
  }
}

/* ============================================================
   SOLDER-JOINT HERO
   ============================================================ */

.solderjoint {
  background: #141A1E;
  position: relative;
  overflow: hidden;
}

.solderjoint-wall {
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px 24px 0;
}

.solderjoint-eyebrow {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  color: #C97E4A;
  font-weight: bold;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.solderjoint-eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  background: #C97E4A;
}

.hero-stage {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 40px;
  align-items: center;
  padding-bottom: 70px;
}

.hero-h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  color: #F6F3EA;
  background: #1F272D;
  border-left: 8px solid #C97E4A;
  padding: 34px 40px;
  margin: 0 0 26px;
  box-shadow: 0 14px 30px #07090B;
  display: inline-block;
}

.hero-h1 span {
  color: #C97E4A;
}

.hero-lead {
  font-size: 1.22rem;
  color: #EFE6D4;
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 28px;
  border-radius: 6px;
  font-size: 0.9rem;
  border: 2px solid transparent;
}

.btn-copper {
  background: #C97E4A;
  color: #0C0F12;
}

.btn-copper:hover {
  background: #EFE6D4;
  color: #0C0F12;
}

.btn-outline {
  background: #5E4A38;
  color: #F6F3EA;
  border-color: #5E4A38;
}

.btn-outline:hover {
  background: #0C0F12;
  color: #C97E4A;
}

.btn-white {
  background: #F6F3EA;
  color: #0C0F12;
}

.btn-white:hover {
  background: #C97E4A;
  color: #0C0F12;
}

/* copper risers along the hero wall */
.hero-pipes {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  padding: 0 24px 0 66px;
  max-width: 1240px;
  margin: 0 auto;
}

.pipe-unit {
  width: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pipe-valve {
  width: 26px;
  height: 12px;
  background: #4A7FA8;
  border-radius: 2px;
  margin-bottom: 8px;
  box-shadow: inset 0 0 0 2px #0C0F12;
}

.pipe-tag {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: #0C0F12;
  background: #F6F3EA;
  padding: 2px 6px;
  margin-bottom: 6px;
  border-radius: 2px;
}

.pipe-pipe {
  width: 16px;
  height: 150px;
  background: #C97E4A;
  border: 2px solid #0C0F12;
  position: relative;
}

.pipe-pipe .solder {
  position: absolute;
  left: -6px;
  right: -6px;
  height: 6px;
  background: #5E4A38;
  border-radius: 3px;
  top: 26px;
  box-shadow: 0 30px 0 #5E4A38, 0 60px 0 #5E4A38, 0 100px 0 #5E4A38;
}

.solderjoint-kick {
  width: 100%;
  background: #0C0F12;
  border-top: 3px solid #5E4A38;
  padding: 40px 0;
}

.solderjoint-stats {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.stat {
  text-align: center;
  padding: 0 26px;
  position: relative;
}

.stat + .stat::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 12%;
  width: 2px;
  height: 76%;
  background: #C97E4A;
}

.stat-num {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #C97E4A;
}

.stat-label {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.76rem;
  color: #EFE6D4;
  margin-top: 6px;
}

/* pressure gauge bank */
.gauge-bank {
  background: #0C0F12;
  border: 2px solid #5E4A38;
  padding: 22px 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gauge-cap {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: #EFE6D4;
  text-align: center;
}

.gauge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gauge-disc {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #F6F3EA;
  border: 6px solid #4A7FA8;
  position: relative;
  flex-shrink: 0;
}

.gauge-disc::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid #1F272D;
  border-radius: 50%;
}

.gauge-label {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 1px;
  color: #C97E4A;
}

.gauge-read {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 0.72rem;
  color: #EFE6D4;
}

@media (max-width: 900px) {
  .hero-stage {
    grid-template-columns: 1fr;
  }

  .gauge-bank {
    max-width: 360px;
  }

  .hero-pipes {
    padding-left: 24px;
    gap: 6px;
  }

  .solderjoint-stats {
    gap: 24px;
  }

  .stat + .stat::before {
    display: none;
  }
}

/* ============================================================
   RISER-STACK SERVICES
   ============================================================ */

.riserstack {
  background: #141A1E;
  padding: 96px 0 40px;
}

.section-head {
  max-width: 1240px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.78rem;
  color: #C97E4A;
  font-weight: bold;
  margin-bottom: 16px;
}

.section-h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: #F6F3EA;
}

.section-sub {
  max-width: 720px;
  margin-top: 18px;
  color: #EFE6D4;
}

.riser-rows {
  max-width: 1160px;
  margin: 0 auto;
}

.riser-row {
  background: #1F272D;
  border: 1px solid #2A353C;
  border-left: 6px solid #C97E4A;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 46px 48px;
  margin-bottom: 34px;
  position: relative;
  align-items: start;
}

.riser-row:nth-child(even) {
  transform: translateX(44px);
  border-left-color: #4A7FA8;
}

.riser-row:nth-child(even) .row-col {
  order: 2;
}

.riser-row:nth-child(even) .tag-num {
  order: 1;
}

.riser-shell {
  width: 84px;
  height: 180px;
  background: #C97E4A;
  border: 3px solid #0C0F12;
  position: relative;
  border-radius: 2px;
  margin: 0 auto;
}

.riser-shell .ring {
  position: absolute;
  left: -8px;
  right: -8px;
  height: 5px;
  background: #5E4A38;
  border-radius: 3px;
}

.riser-shell .ring.one { top: 22px; }
.riser-shell .ring.two { top: 62px; }
.riser-shell .ring.three { top: 102px; }
.riser-shell .ring.four { top: 142px; }

.tag-num {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 1px;
  color: #0C0F12;
  background: #F6F3EA;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.riser-copy {
  min-width: 0;
}

.riser-copy h3 {
  font-size: 1.6rem;
  color: #F6F3EA;
  margin-bottom: 14px;
}

.riser-copy p {
  color: #EFE6D4;
  margin-bottom: 12px;
}

.riser-copy .details-link {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  display: inline-block;
  margin-top: 8px;
  color: #C97E4A;
}

.riser-copy .details-link::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #C97E4A;
}

@media (max-width: 760px) {
  .riser-row {
    grid-template-columns: 1fr;
    padding: 34px 28px;
  }

  .riser-row:nth-child(even) {
    transform: none;
  }

  .riser-shell {
    height: 140px;
  }

  .riser-row:nth-child(even) .row-col {
    order: 0;
  }
}

/* statement band */
.statement-band {
  background: #5E4A38;
  padding: 64px 0;
  margin: 40px 0 0;
}

.statement-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.figure-num {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: clamp(3.6rem, 8vw, 6rem);
  font-weight: bold;
  color: #F6F3EA;
  line-height: 1;
}

.statement-pledge {
  color: #F6F3EA;
  font-size: 1.5rem;
  max-width: 560px;
  line-height: 1.4;
}

/* dispatch loop */
.dispatch-loop {
  background: #0C0F12;
  padding: 100px 0;
}

.loop-line {
  max-width: 1240px;
  margin: 50px auto 0;
  padding: 20px 0;
  border-top: 3px solid #C97E4A;
  border-bottom: 2px dashed #5E4A38;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.loop-station {
  text-align: center;
  width: 170px;
  background: #1F272D;
  padding: 22px 16px;
  border-radius: 8px;
  border: 1px solid #5E4A38;
  position: relative;
  margin-top: -16px;
}

.loop-station-valve {
  width: 22px;
  height: 12px;
  background: #4A7FA8;
  margin: 0 auto 10px;
  border-radius: 2px;
  box-shadow: inset 0 0 0 2px #0C0F12;
}

.loop-station h4 {
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  color: #C97E4A;
}

.loop-station p {
  font-size: 0.84rem;
  color: #EFE6D4;
  margin-top: 8px;
  line-height: 1.5;
}

.loop-bulb {
  text-align: center;
  width: 200px;
  margin-top: 20px;
}

.loop-bulb-disc {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #F6F3EA;
  border: 6px solid #C97E4A;
  margin: 0 auto 12px;
  box-shadow: 0 0 0 4px #0C0F12;
}

.loop-bulb-caption {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #EFE6D4;
  font-size: 0.8rem;
}

@media (max-width: 840px) {
  .loop-line {
    justify-content: center;
  }

  .dispatch-loop {
    padding: 60px 0;
  }

  .loop-station {
    width: 44%;
  }
}

/* ============================================================
   PRESSURE-CHECK BAND
   ============================================================ */

.pressurebox {
  background: #C97E4A;
  padding: 54px 0;
}

.pressurebox-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.pressurebox-stamp {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0C0F12;
  background: #EFE6D4;
  border: 3px dashed #0C0F12;
  padding: 12px 20px;
  border-radius: 6px;
  transform: rotate(-2deg);
}

.pressurebox-text {
  color: #0C0F12;
  font-size: 1.5rem;
  font-weight: bold;
  flex: 1;
  min-width: 260px;
}

.pressurebox-text strong {
  color: #0C0F12;
}

@media (max-width: 760px) {
  .pressurebox-text {
    font-size: 1.2rem;
  }
}

/* ============================================================
   SYSTEMS SECTION (services page extra context)
   ============================================================ */

.systems-intro {
  background: #141A1E;
  padding: 90px 0 10px;
}

.systems-content {
  background: #141A1E;
  padding: 60px 0;
}

.systems-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.systems-card {
  background: #1F272D;
  border: 1px solid #2A353C;
  border-top: 6px solid #C97E4A;
  border-radius: 8px;
  padding: 40px;
  position: relative;
}

.systems-card h3 {
  color: #F6F3EA;
  font-size: 1.4rem;
  margin: 20px 0 12px;
}

.systems-card-pipe {
  height: 34px;
  border-left: 3px solid #C97E4A;
  margin-left: 12px;
}

.systems-card p {
  color: #EFE6D4;
  margin-bottom: 12px;
}

.systems-card ul {
  color: #EFE6D4;
  margin: 10px 0 0 20px;
}

.systems-card li {
  margin-bottom: 6px;
}

@media (max-width: 760px) {
  .systems-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PROCESS OVERVIEW (services page)
   ============================================================ */

.process-flow {
  background: #0C0F12;
  padding: 96px 0;
}

.process-track {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.process-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-left: 3px solid #5E4A38;
  margin-left: 30px;
  padding-left: 30px;
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 4px;
  width: 26px;
  height: 26px;
  background: #C97E4A;
  border-radius: 50%;
  border: 4px solid #0C0F12;
}

.process-step-num {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-size: 2.4rem;
  color: #4A7FA8;
}

.process-step h3 {
  color: #F6F3EA;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.process-step p {
  color: #EFE6D4;
}

/* ============================================================
   INSURANCE / ASSURANCE BAND (index extra)
   ============================================================ */

.assurance {
  background: #1F272D;
  padding: 90px 0;
}

.assurance-flex {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.assurance-main {
  flex: 2;
  min-width: 280px;
}

.assurance-side {
  flex: 1;
  min-width: 260px;
}

.assurance-side-panel {
  background: #0C0F12;
  border: 1px solid #5E4A38;
  border-radius: 8px;
  padding: 30px;
}

.assurance-side-panel h4 {
  color: #C97E4A;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.assurance-side-panel p {
  color: #EFE6D4;
  font-size: 0.94rem;
  margin-bottom: 10px;
}

.assurance-list {
  margin: 16px 0 0 20px;
  color: #EFE6D4;
}

.assurance-list li {
  margin-bottom: 8px;
}

.assurance-list b {
  color: #F6F3EA;
}

/* ============================================================
   VAN-KEY FOOTER
   ============================================================ */

.vankey {
  background: #0C0F12;
  padding: 70px 0 0;
  position: relative;
  z-index: 1;
}

.vankey-keys {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.vankey-motto {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 0.9rem;
  color: #C97E4A;
  margin-bottom: 30px;
  text-align: center;
}

.vankey-board {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  border-top: 2px solid #5E4A38;
  padding-top: 30px;
  margin-bottom: 60px;
}

.vankey-peg {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 88px;
}

.vankey-peg-tag {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 0.66rem;
  color: #0C0F12;
  background: #F6F3EA;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.vankey-key {
  width: 34px;
  height: 56px;
  background: #8b939c;
  border-radius: 6px 6px 18px 18px;
  position: relative;
  margin-bottom: 8px;
  box-shadow: inset 0 -4px 0 #0C0F12;
}

.vankey-key::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 9px;
  width: 16px;
  height: 16px;
  background: #C97E4A;
  border-radius: 50%;
}

.vankey-pin {
  width: 6px;
  height: 6px;
  background: #C97E4A;
  border-radius: 50%;
  margin-bottom: 6px;
}

.vankey-cols {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.vankey-col {
  flex: 1;
  min-width: 220px;
  background: #1F272D;
  padding: 36px 34px;
  border-radius: 8px;
  border-top: 3px solid #5E4A38;
}

.vankey-col h4 {
  color: #C97E4A;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.vankey-col ul {
  list-style: none;
}

.vankey-col li {
  margin-bottom: 10px;
}

.vankey-col a {
  color: #EFE6D4;
  font-size: 0.96rem;
}

.vankey-col a:hover {
  color: #C97E4A;
}

.vankey-base {
  background: #5E4A38;
  padding: 40px 0 26px;
}

.vankey-plate {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.vankey-company {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F6F3EA;
}

.vankey-address {
  color: #F6F3EA;
  font-size: 0.94rem;
}

.vankey-contact a {
  color: #F6F3EA;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
}

.vankey-contact a:hover {
  color: #0C0F12;
}

.vankey-copy {
  border-top: 1px solid #5E4A38;
  margin-top: 26px;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #F6F3EA;
  text-align: center;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-hero-text {
  background: #141A1E;
  padding: 80px 0;
}

.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #F6F3EA;
  border-left: 8px solid #C97E4A;
  padding-left: 24px;
  margin-bottom: 30px;
}

.page-lede {
  max-width: 720px;
  color: #EFE6D4;
  font-size: 1.15rem;
}

.contact-grid {
  background: #141A1E;
  padding: 0 0 90px;
}

.contact-grid-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}

.contact-info-panel {
  background: #1F272D;
  border-radius: 10px;
  padding: 44px;
  border-left: 6px solid #4A7FA8;
}

.contact-info-panel h3 {
  color: #F6F3EA;
  font-size: 1.5rem;
  margin-bottom: 26px;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
}

.info-block {
  margin-bottom: 28px;
}

.info-block h4 {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #C97E4A;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.info-block p, .info-block a {
  color: #EFE6D4;
  font-size: 1.04rem;
}

.info-block a:hover {
  color: #C97E4A;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 6px 4px;
  color: #EFE6D4;
  border-bottom: 1px dotted #5E4A38;
}

.hours-table td:last-child {
  text-align: right;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  color: #C97E4A;
}

.contact-form-wrap {
  background: #0C0F12;
  border: 1px solid #5E4A38;
  border-radius: 10px;
  padding: 44px;
}

.contact-form-wrap h3 {
  color: #F6F3EA;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
}

.contact-form-wrap p {
  color: #EFE6D4;
  font-size: 0.95rem;
  margin-bottom: 26px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
  color: #C97E4A;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: #141A1E;
  border: 1px solid #5E4A38;
  color: #F6F3EA;
  padding: 14px 16px;
  border-radius: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #C97E4A;
}

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

.form-note {
  font-size: 0.84rem !important;
  color: #9aa7ad;
}

.form-status {
  margin-top: 14px;
  font-size: 0.94rem;
  color: #C97E4A;
}

@media (max-width: 860px) {
  .contact-grid-inner {
    grid-template-columns: 1fr;
  }
}

/* FAQ */
.faq-band {
  background: #1F272D;
  padding: 80px 0;
}

.faq-list {
  max-width: 1000px;
  margin: 30px auto 0;
  padding: 0 24px;
}

.faq-item {
  background: #0C0F12;
  border: 1px solid #5E4A38;
  border-left: 4px solid #C97E4A;
  margin-bottom: 18px;
  border-radius: 6px;
}

.faq-q {
  background: none;
  border: none;
  color: #F6F3EA;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: bold;
  text-align: left;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-q-arrow {
  color: #C97E4A;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-q[aria-expanded="true"] .faq-q-arrow {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 24px;
  color: #EFE6D4;
  max-height: 0;
  overflow: hidden;
}

.faq-a.is-open {
  max-height: 400px;
  padding-bottom: 22px;
}

/* ============================= accordion for services page ============= */

.accordion-list {
  max-width: 1240px;
  margin: 30px auto;
  padding: 0 24px;
}

.acc-item {
  background: #1F272D;
  border: 1px solid #5E4A38;
  border-left: 5px solid #C97E4A;
  margin-bottom: 16px;
  border-radius: 6px;
}

.acc-q {
  background: none;
  border: none;
  text-align: left;
  width: 100%;
  padding: 20px 24px;
  cursor: pointer;
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  color: #F6F3EA;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.acc-q .mark { color: #C97E4A; font-size: 1.4rem; }

.acc-a {
  color: #EFE6D4;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
}

.acc-a.is-open {
  max-height: 500px;
  padding-bottom: 22px;
}

/* counter row on index */
.count-row {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.js-count {
  font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
}

/* utility */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.spacer-40 { height: 40px; }
