:root {
  --black: #000;
  --rich: #201008;
  --gold: #f8c838;
  --gold2: #ffd65a;
  --gold3: #e09818;
  --cream: #f5f1e6;
  --chrome: #e8e8e8;
  --chrome2: #b8b8b8;
  --red: #d83018;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    sans-serif;
  background: #000;
  color: var(--cream);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 142px;
  display: grid;
  grid-template-columns: 360px 1fr 260px;
  align-items: center;
  gap: 34px;
  padding: 18px clamp(24px, 4vw, 70px);
  background: linear-gradient(180deg, #030303, #000);
  border-bottom: 1px solid rgba(232, 232, 232, 0.18);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.72);
}
.brand img {
  width: 330px;
  filter: drop-shadow(0 0 20px rgba(248, 200, 56, 0.3));
}
.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 48px);
}
.nav a {
  position: relative;
  color: var(--cream);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  padding: 12px 0;
}
.nav a:hover {
  color: var(--gold);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: 0.2s;
}
.nav a:hover::after {
  transform: scaleX(1);
}
.call-top {
  justify-self: end;
  width: 240px;
  min-height: 70px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #050505;
  font-weight: 950;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff, #e8e8e8 35%, #b9b9b9 65%, #f8f8f8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    inset 0 2px 0 #fff,
    0 0 30px rgba(248, 200, 56, 0.38),
    0 16px 35px rgba(0, 0, 0, 0.65);
}
.call-top span {
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  padding: 70px clamp(24px, 5vw, 90px);
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.9) 34%,
      rgba(0, 0, 0, 0.38) 62%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    url("assets/peterbilt-golden-closeup.jpg") right center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(0deg, #000, transparent);
  pointer-events: none;
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin: 0;
}
h1 {
  font-size: clamp(4.4rem, 8vw, 8.6rem);
  color: var(--cream);
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.58);
  margin-bottom: 28px;
}
h1 span {
  color: var(--gold);
}
.service-line {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-bottom: 18px;
  font-weight: 950;
  text-transform: uppercase;
}
.service-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-line span::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: radial-gradient(circle, var(--gold) 0 28%, transparent 30%);
}
.second {
  gap: 28px;
}
.hero p {
  color: rgba(245, 241, 230, 0.92);
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 24px 0;
}
.actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.btn {
  min-height: 58px;
  padding: 0 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn.gold {
  background: linear-gradient(180deg, #ffe37b, var(--gold), var(--gold3));
  color: #000;
  box-shadow: 0 0 28px rgba(248, 200, 56, 0.36);
}
.btn.chrome {
  background: transparent;
  border: 1px solid var(--chrome);
  color: var(--cream);
}
.btn small {
  margin-left: 8px;
  font-size: 1rem;
}

.haul-strip {
  position: relative;
  padding: 46px clamp(24px, 5vw, 90px) 64px;
  background: #000;
}
.haul-strip h2 {
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  margin-bottom: 26px;
}
.haul-strip h2::before,
.haul-strip h2::after {
  content: "";
  display: inline-block;
  width: min(18vw, 250px);
  height: 2px;
  margin: 0 28px 0.25em;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.haul-strip h2::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.haul-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.haul-grid article {
  position: relative;
  height: 150px;
  border: 1px solid rgba(248, 200, 56, 0.58);
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}
.haul-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.95);
  transition: 0.25s;
}
.haul-grid article:hover img {
  transform: scale(1.05);
  filter: brightness(0.88);
}
.haul-grid strong {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 12px 13px;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
  font-weight: 950;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px clamp(24px, 5vw, 90px);
  background: linear-gradient(180deg, #050505, #000);
  border-top: 1px solid rgba(232, 232, 232, 0.12);
  border-bottom: 1px solid rgba(232, 232, 232, 0.12);
}
.trust-bar div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding: 0 28px;
  border-right: 1px solid rgba(248, 200, 56, 0.22);
}
.trust-bar div:last-child {
  border-right: 0;
}
.trust-bar span {
  grid-row: span 2;
  font-size: 2.6rem;
  color: var(--gold);
}
.trust-bar strong {
  text-transform: uppercase;
  font-size: 1.05rem;
}
.trust-bar p {
  margin: 0.25rem 0 0;
  color: rgba(245, 241, 230, 0.75);
  line-height: 1.45;
}

.fleet,
.service-area,
.request {
  padding: 84px clamp(24px, 5vw, 90px);
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(248, 200, 56, 0.06),
      transparent 28%
    ),
    #000;
}
.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 34px;
}
.section-head p,
.kicker {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.section-head h2,
.service-area h2,
.request h2 {
  font-size: clamp(2.7rem, 5vw, 5.6rem);
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fleet-grid img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(248, 200, 56, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.58);
  transition: 0.25s;
}
.fleet-grid img:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 0 35px rgba(248, 200, 56, 0.38),
    0 22px 55px rgba(0, 0, 0, 0.7);
}

.service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.service-area p {
  color: rgba(245, 241, 230, 0.82);
  line-height: 1.7;
  font-size: 1.08rem;
}
.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cities span {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(248, 200, 56, 0.42);
  background: rgba(248, 200, 56, 0.08);
  font-weight: 900;
}

.request {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 34px;
  align-items: stretch;
}
.request-content,
.need-card {
  border-radius: 24px;
  padding: 42px;
  border: 1px solid rgba(248, 200, 56, 0.32);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.014)
    ),
    #070707;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}
.request p,
.need-card li {
  color: rgba(245, 241, 230, 0.82);
  line-height: 1.7;
}
.need-card h3 {
  color: var(--gold);
  text-transform: uppercase;
  font-size: 1.7rem;
}
.need-card li {
  margin-bottom: 12px;
}

.site-footer {
  text-align: center;
  padding: 54px 24px 90px;
  background: linear-gradient(180deg, #050505, #000);
  border-top: 1px solid rgba(248, 200, 56, 0.22);
}
.site-footer img {
  width: 220px;
  margin: 0 auto 22px;
}
.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 18px 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.site-footer nav a {
  font-weight: 950;
  text-transform: uppercase;
}
.site-footer nav a:hover {
  color: var(--gold);
}
.site-footer p {
  color: rgba(245, 241, 230, 0.78);
}
.copyright {
  font-size: 0.9rem;
}

.sticky-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffe37b, var(--gold), var(--gold3));
  color: #000;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow:
    0 0 30px rgba(248, 200, 56, 0.45),
    0 15px 36px rgba(0, 0, 0, 0.6);
}

@media (max-width: 1150px) {
  .site-header {
    height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .brand img {
    width: min(86vw, 360px);
  }
  .nav {
    flex-wrap: wrap;
  }
  .call-top {
    justify-self: center;
  }
  .hero {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72)),
      url("assets/peterbilt-golden-closeup.jpg") center/cover no-repeat;
  }
  .haul-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .trust-bar div {
    border-right: 0;
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-area,
  .request {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 650px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
  }
  h1 {
    font-size: clamp(3.2rem, 16vw, 5.2rem);
  }
  .haul-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-bar {
    grid-template-columns: 1fr;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .sticky-call {
    left: 14px;
    right: 14px;
    width: auto;
  }
  body {
    padding-bottom: 80px;
  }
}

.service-area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.service-copy h2 {
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.9;
}

.service-copy h2 span {
  color: #f8c838;
}

.service-copy h3 {
  font-size: 1.8rem;
  color: #f5f1e6;
  margin: 1.5rem 0;
}

.cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.cities span {
  min-width: 170px;
  text-align: center;
  padding: 18px 26px;
  border-radius: 999px;
  border: 1px solid rgba(248, 200, 56, 0.4);
  background: rgba(248, 200, 56, 0.05);
  font-weight: 900;
}

@media (max-width: 1000px) {
  .service-area {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MILLION-DOLLAR SERVICE AREA SECTION
   Premium glowing regional map + capability panel
   ========================================================= */

.million-area {
  position: relative;
  min-height: 760px;
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr) !important;
  gap: clamp(40px, 6vw, 90px) !important;
  align-items: center !important;
  padding: clamp(80px, 9vw, 140px) clamp(24px, 6vw, 110px) !important;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(248, 200, 56, 0.15),
      transparent 32%
    ),
    radial-gradient(
      circle at 12% 18%,
      rgba(216, 48, 24, 0.09),
      transparent 24%
    ),
    linear-gradient(180deg, #000 0%, #050505 52%, #000 100%) !important;
  border-top: 1px solid rgba(248, 200, 56, 0.14);
  border-bottom: 1px solid rgba(248, 200, 56, 0.14);
}

.million-area::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(248, 200, 56, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 200, 56, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 70% 50%, black, transparent 72%);
  opacity: 0.65;
}

.million-area::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, #000, transparent);
  pointer-events: none;
}

.million-area .service-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.million-area .kicker {
  color: #f8c838 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 950;
  margin-bottom: 20px;
}

.million-area h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(4.1rem, 7.5vw, 8.8rem) !important;
  line-height: 0.86 !important;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin: 0 0 28px !important;
  color: #f5f1e6 !important;
  text-shadow:
    0 8px 0 rgba(0, 0, 0, 0.55),
    0 0 18px rgba(248, 200, 56, 0.08);
}

.million-area h2 span {
  color: #f8c838 !important;
  text-shadow:
    0 8px 0 rgba(0, 0, 0, 0.58),
    0 0 30px rgba(248, 200, 56, 0.18);
}

.million-area h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  color: #f5f1e6;
  margin: 0 0 22px;
}

.million-area .service-copy p {
  color: rgba(245, 241, 230, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
  max-width: 680px;
}

.area-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.service-map-panel {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  padding: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(232, 232, 232, 0.095),
      rgba(248, 200, 56, 0.035),
      rgba(0, 0, 0, 0.22)
    ),
    #050505;
  border: 1px solid rgba(232, 232, 232, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 30px 90px rgba(0, 0, 0, 0.68),
    0 0 55px rgba(248, 200, 56, 0.09);
}

.map-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(248, 200, 56, 0.18);
}

.map-header span {
  color: #f8c838;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 950;
  font-size: 0.78rem;
}

.map-header strong {
  color: #f5f1e6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-map {
  position: relative;
  min-height: 430px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(248, 200, 56, 0.12),
      transparent 42%
    ),
    radial-gradient(
      circle at 34% 58%,
      rgba(216, 48, 24, 0.08),
      transparent 28%
    ),
    linear-gradient(145deg, #090909, #010101);
  border: 1px solid rgba(248, 200, 56, 0.24);
}

.service-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(232, 232, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 232, 232, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.55;
}

.service-map::after {
  content: "KS";
  position: absolute;
  right: 28px;
  bottom: 10px;
  font-family: Anton, Impact, sans-serif;
  font-size: 11rem;
  line-height: 1;
  color: rgba(248, 200, 56, 0.045);
}

.route-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(248, 200, 56, 0.9),
    transparent
  );
  box-shadow: 0 0 18px rgba(248, 200, 56, 0.5);
  transform-origin: left center;
  z-index: 1;
}

.route-one {
  width: 420px;
  left: 150px;
  top: 178px;
  transform: rotate(13deg);
}

.route-two {
  width: 390px;
  left: 188px;
  top: 245px;
  transform: rotate(-9deg);
}

.city-node {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #f5f1e6;
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(248, 200, 56, 0.34);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.6);
}

.city-node span {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #f8c838;
  box-shadow:
    0 0 0 4px rgba(248, 200, 56, 0.14),
    0 0 22px rgba(248, 200, 56, 0.75);
}

.city-node span::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(248, 200, 56, 0.48);
  animation: pulseCity 2.3s infinite;
}

@keyframes pulseCity {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.wamego {
  left: 43%;
  top: 42%;
}
.manhattan {
  left: 20%;
  top: 25%;
}
.junction {
  right: 9%;
  top: 52%;
}
.paxico {
  left: 19%;
  bottom: 16%;
}
.alma {
  left: 45%;
  bottom: 20%;
}
.westmoreland {
  right: 8%;
  top: 24%;
}

.map-badge {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 4;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(
    90deg,
    rgba(248, 200, 56, 0.16),
    rgba(0, 0, 0, 0.68)
  );
  border: 1px solid rgba(248, 200, 56, 0.32);
  color: #f5f1e6;
  font-weight: 900;
  text-align: center;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.capability-grid div {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.018)
  );
  border: 1px solid rgba(248, 200, 56, 0.22);
}

.capability-grid span {
  display: block;
  color: #f8c838;
  font-weight: 950;
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.capability-grid strong {
  display: block;
  color: #f5f1e6;
  text-transform: uppercase;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.capability-grid p {
  margin: 0;
  color: rgba(245, 241, 230, 0.72);
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 1100px) {
  .million-area {
    grid-template-columns: 1fr !important;
  }

  .service-map-panel {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .million-area {
    padding: 70px 18px !important;
  }

  .million-area h2 {
    font-size: clamp(3.2rem, 17vw, 5.3rem) !important;
  }

  .service-map {
    min-height: 520px;
  }

  .city-node {
    font-size: 0.72rem;
  }

  .wamego {
    left: 36%;
    top: 40%;
  }
  .manhattan {
    left: 8%;
    top: 20%;
  }
  .junction {
    right: 4%;
    top: 50%;
  }
  .paxico {
    left: 8%;
    bottom: 19%;
  }
  .alma {
    left: 34%;
    bottom: 12%;
  }
  .westmoreland {
    right: 4%;
    top: 24%;
  }

  .route-one,
  .route-two {
    width: 260px;
    left: 90px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .map-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================================
   REAL GEOGRAPHY SERVICE AREA MAP
   Relative city placement based on Wamego / Manhattan / Junction City / Paxico / Alma / Westmoreland orientation
   ========================================================= */

.real-geo-area {
  grid-template-columns: minmax(0, 0.82fr) minmax(620px, 1.18fr) !important;
}

.real-map-panel {
  overflow: hidden;
}

.real-service-map {
  position: relative;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 48% 45%,
      rgba(248, 200, 56, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 22% 66%,
      rgba(216, 48, 24, 0.06),
      transparent 24%
    ),
    linear-gradient(145deg, #090909, #010101);
  border: 1px solid rgba(248, 200, 56, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.real-service-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(232, 232, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 232, 232, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;
}

.real-service-map::after {
  content: "NE KANSAS";
  position: absolute;
  right: 22px;
  bottom: 8px;
  font-family: Anton, Impact, sans-serif;
  font-size: 5.8rem;
  color: rgba(248, 200, 56, 0.055);
  letter-spacing: 0.04em;
}

.map-road {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: rgba(232, 232, 232, 0.2);
  box-shadow: 0 0 8px rgba(232, 232, 232, 0.16);
}

.road-24 {
  width: 68%;
  left: 25%;
  top: 42%;
  transform: rotate(-3deg);
}

.road-i70 {
  width: 64%;
  left: 8%;
  top: 69%;
  transform: rotate(1deg);
  background: rgba(232, 232, 232, 0.24);
}

.road-99 {
  width: 38%;
  left: 62%;
  top: 38%;
  transform: rotate(92deg);
}

.road-177 {
  width: 48%;
  left: 30%;
  top: 52%;
  transform: rotate(90deg);
}

.route-glow {
  position: absolute;
  z-index: 2;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(248, 200, 56, 0.92),
    transparent
  );
  box-shadow: 0 0 18px rgba(248, 200, 56, 0.58);
  transform-origin: left center;
  opacity: 0.88;
}

.route-manhattan-wamego {
  width: 310px;
  left: 29%;
  top: 45%;
  transform: rotate(-2deg);
}

.route-wamego-paxico {
  width: 360px;
  left: 45%;
  top: 50%;
  transform: rotate(17deg);
}

.route-jc-manhattan {
  width: 250px;
  left: 12%;
  top: 58%;
  transform: rotate(-30deg);
}

.route-alma-west {
  width: 270px;
  right: 12%;
  top: 39%;
  transform: rotate(-77deg);
  opacity: 0.55;
}

.geo-city {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(248, 200, 56, 0.34);
  color: #f5f1e6;
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.65);
}

.geo-city span {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #f8c838;
  box-shadow:
    0 0 0 4px rgba(248, 200, 56, 0.14),
    0 0 22px rgba(248, 200, 56, 0.75);
}

.geo-city span::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(248, 200, 56, 0.52);
  animation: pulseCity 2.4s infinite;
}

.geo-city.primary {
  border-color: rgba(255, 214, 90, 0.72);
  background: linear-gradient(
    180deg,
    rgba(248, 200, 56, 0.2),
    rgba(0, 0, 0, 0.75)
  );
}

.geo-city.primary span {
  width: 18px;
  height: 18px;
  background: #ffd65a;
}

/* Real-ish relative orientation from the provided service map */
.westmoreland {
  left: 57%;
  top: 9%;
}
.manhattan {
  left: 22%;
  top: 38%;
}
.stgeorge {
  left: 57%;
  top: 35%;
}
.wamego {
  left: 72%;
  top: 32%;
}
.junction {
  left: 13%;
  top: 66%;
}
.paxico {
  left: 70%;
  top: 68%;
}
.alma {
  left: 55%;
  top: 70%;
}

.map-label {
  position: absolute;
  z-index: 4;
  border-radius: 16px;
  border: 1px solid rgba(248, 200, 56, 0.26);
  background: rgba(0, 0, 0, 0.62);
  color: #f5f1e6;
  font-weight: 900;
  padding: 12px 14px;
  backdrop-filter: blur(8px);
}

.map-label.based {
  left: 24px;
  top: 24px;
  color: #f8c838;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.map-label.counties {
  left: 24px;
  right: 24px;
  bottom: 24px;
  text-align: center;
  background: linear-gradient(
    90deg,
    rgba(248, 200, 56, 0.16),
    rgba(0, 0, 0, 0.66)
  );
}

.real-capability-grid div {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.real-capability-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 200, 56, 0.58);
  box-shadow: 0 0 22px rgba(248, 200, 56, 0.18);
}

@media (max-width: 1100px) {
  .real-geo-area {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .real-service-map {
    min-height: 560px;
  }

  .geo-city {
    font-size: 0.68rem;
    padding: 8px 10px;
  }

  .westmoreland {
    left: 48%;
    top: 8%;
  }
  .manhattan {
    left: 6%;
    top: 35%;
  }
  .stgeorge {
    left: 48%;
    top: 32%;
  }
  .wamego {
    left: 62%;
    top: 40%;
  }
  .junction {
    left: 4%;
    top: 62%;
  }
  .paxico {
    left: 58%;
    top: 72%;
  }
  .alma {
    left: 36%;
    top: 72%;
  }

  .route-manhattan-wamego {
    width: 230px;
    left: 16%;
    top: 43%;
    transform: rotate(3deg);
  }

  .route-wamego-paxico {
    width: 190px;
    left: 55%;
    top: 52%;
    transform: rotate(28deg);
  }

  .route-jc-manhattan {
    width: 170px;
    left: 9%;
    top: 55%;
    transform: rotate(-42deg);
  }

  .route-alma-west {
    width: 210px;
    right: 20%;
    top: 42%;
    transform: rotate(-74deg);
  }

  .real-service-map::after {
    font-size: 3.2rem;
  }
}

/* ===== SERVICE AREA TYPOGRAPHY FIX ===== */

.service-copy {
  max-width: 720px;
}

.area-main-heading {
  font-size: clamp(4rem, 6vw, 7rem) !important;
  line-height: 0.92 !important;
  margin-bottom: 0 !important;
  letter-spacing: -0.03em;
  color: #f5f1e6 !important;
}

.gold-heading {
  font-size: clamp(4rem, 6vw, 7rem) !important;
  line-height: 0.92 !important;
  margin-top: -10px;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  color: #f8c838 !important;
}

@media (max-width: 768px) {
  .area-main-heading,
  .gold-heading {
    font-size: clamp(3rem, 14vw, 5rem) !important;
  }
}

.area-main-heading,
.gold-heading,
.hero h1,
.services-intro h2,
.request-content h2,
.need-card h3 {
  font-family: "Anton", sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 0.9;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.9),
    0 0 10px rgba(216, 48, 24, 0.6),
    0 0 24px rgba(216, 48, 24, 0.35);
}
.area-main-heading {
  font-size: clamp(6rem, 10vw, 9rem);
  margin-bottom: 2rem;
}
.gold-heading {
  font-size: clamp(5rem, 8vw, 7rem);
  color: #f8c838;
  margin-top: 1.5rem;
}
.hero h1 span {
  color: #f8c838;
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.9),
    0 0 12px rgba(216, 48, 24, 0.7);
}

/* =========================================================
   UNIFORM SCREENSHOT-STYLE HEADINGS + MENU
   Applies the approved red glow / gold accent / industrial style
   across the existing site without changing the logo.
   ========================================================= */

:root {
  --pl-black: #000000;
  --pl-panel: #070707;
  --pl-gold: #f8c838;
  --pl-gold-2: #ffd65a;
  --pl-gold-dark: #e09818;
  --pl-cream: #f5f1e6;
  --pl-red: #d83018;
  --pl-red-glow: rgba(216, 48, 24, 0.78);
  --pl-gold-glow: rgba(248, 200, 56, 0.48);
}

/* Site-wide industrial texture */
body {
  background:
    radial-gradient(circle at 18% 0%, rgba(216, 48, 24, 0.08), transparent 25%),
    radial-gradient(
      circle at 82% 10%,
      rgba(248, 200, 56, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #000 0%, #050505 46%, #000 100%) !important;
}

/* Header/menu from screenshot: red glow white text, gold active/hover */
.site-header,
header.site-header {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.99),
    rgba(0, 0, 0, 0.96)
  ) !important;
  border-bottom: 1px solid rgba(248, 200, 56, 0.26) !important;
  box-shadow:
    0 0 0 1px rgba(216, 48, 24, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.78) !important;
}

/* Do not change logo source or artwork; only keep it cleanly sized */
.brand img,
.site-header img[src*="logo"],
header img[src*="logo"] {
  filter: drop-shadow(0 0 16px rgba(216, 48, 24, 0.42))
    drop-shadow(0 0 20px rgba(248, 200, 56, 0.2)) !important;
}

/* Uniform menu */
.nav,
.site-header nav,
header nav {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.nav a,
.site-header nav a,
header nav a {
  position: relative !important;
  color: #f5f1e6 !important;
  font-family: Anton, Impact, sans-serif !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.045em !important;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.18),
    0 0 13px rgba(216, 48, 24, 0.75),
    0 3px 0 rgba(0, 0, 0, 0.85) !important;
  padding: 12px 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.nav a::before,
.site-header nav a::before,
header nav a::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  bottom: 3px !important;
  width: 0 !important;
  height: 2px !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(
    90deg,
    transparent,
    #f8c838,
    transparent
  ) !important;
  box-shadow: 0 0 12px rgba(248, 200, 56, 0.85) !important;
  transition: width 0.22s ease !important;
}

.nav a::after,
.site-header nav a::after,
header nav a::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -5px !important;
  width: 0 !important;
  height: 0 !important;
  transform: translateX(-50%) !important;
  border-left: 6px solid transparent !important;
  border-right: 6px solid transparent !important;
  border-top: 6px solid #f8c838 !important;
  opacity: 0 !important;
  transition: opacity 0.22s ease !important;
  background: transparent !important;
}

.nav a:hover,
.site-header nav a:hover,
header nav a:hover,
.nav a[aria-current="page"],
.nav a.active {
  color: #f8c838 !important;
  text-shadow:
    0 0 10px rgba(248, 200, 56, 0.85),
    0 0 18px rgba(216, 48, 24, 0.75),
    0 3px 0 rgba(0, 0, 0, 0.88) !important;
}

.nav a:hover::before,
.site-header nav a:hover::before,
header nav a:hover::before,
.nav a[aria-current="page"]::before,
.nav a.active::before {
  width: 100% !important;
}

.nav a:hover::after,
.site-header nav a:hover::after,
header nav a:hover::after,
.nav a[aria-current="page"]::after,
.nav a.active::after {
  opacity: 1 !important;
}

/* Call button with same red/gold glow style */
.header-call,
.call-top,
.site-header a[href^="tel"],
header a[href^="tel"] {
  border: 1px solid rgba(248, 200, 56, 0.85) !important;
  outline: 1px solid rgba(216, 48, 24, 0.55) !important;
  border-radius: 12px !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.92),
    rgba(12, 8, 5, 0.92)
  ) !important;
  color: #f8c838 !important;
  font-family: Anton, Impact, sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  text-shadow:
    0 0 9px rgba(248, 200, 56, 0.75),
    0 0 13px rgba(216, 48, 24, 0.65) !important;
  box-shadow:
    inset 0 0 20px rgba(216, 48, 24, 0.12),
    0 0 20px rgba(216, 48, 24, 0.5),
    0 0 30px rgba(248, 200, 56, 0.2),
    0 12px 32px rgba(0, 0, 0, 0.72) !important;
}

/* Universal heading treatment */
h1,
h2,
h3,
.pl-section-heading,
.section-head h2,
.section-heading h2,
.service-copy h2,
.area-main-heading,
.gold-heading,
.final-cta h2,
.request h2,
.service-area h2,
.fleet h2,
.haul-strip h2 {
  font-family: Anton, Impact, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.015em !important;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.1),
    0 0 14px rgba(216, 48, 24, 0.82),
    0 6px 0 rgba(0, 0, 0, 0.85) !important;
}

/* Big display headings like screenshot */
h1,
.service-copy h2,
.area-main-heading,
.gold-heading {
  line-height: 0.88 !important;
  -webkit-text-stroke: 1.5px rgba(77, 20, 8, 0.9);
}

/* White heading words */
.area-main-heading,
.service-copy h2:not(.gold-heading),
h1,
h2.pl-section-heading {
  color: #f5f1e6 !important;
}

/* Gold heading words */
.gold-heading,
.service-copy h2 span,
h1 span,
.section-head h2 span,
.section-heading h2 span {
  color: #f8c838 !important;
  -webkit-text-stroke: 2px #4d1408;
  text-shadow:
    0 0 9px rgba(248, 200, 56, 0.55),
    0 0 18px rgba(216, 48, 24, 0.88),
    0 6px 0 rgba(0, 0, 0, 0.88) !important;
}

/* Kicker labels with screenshot side-lines */
.kicker,
.section-kicker,
.eyebrow,
[class*="kicker"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  color: #f8c838 !important;
  font-family: Anton, Impact, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  text-shadow:
    0 0 9px rgba(248, 200, 56, 0.75),
    0 0 14px rgba(216, 48, 24, 0.6) !important;
}

.kicker::before,
.section-kicker::before,
.eyebrow::before,
[class*="kicker"]::before,
.kicker::after,
.section-kicker::after,
.eyebrow::after,
[class*="kicker"]::after {
  content: "" !important;
  display: inline-block !important;
  width: 42px !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, #f8c838) !important;
  box-shadow: 0 0 12px rgba(248, 200, 56, 0.7) !important;
}

.kicker::after,
.section-kicker::after,
.eyebrow::after,
[class*="kicker"]::after {
  background: linear-gradient(90deg, #f8c838, transparent) !important;
}

/* Cards/panels to match screenshot */
.service-card,
.fleet-card,
.area-card,
.request-panel,
.need-card,
.project-card,
.haul-grid article,
.capability-grid div,
.real-map-panel,
.service-map-panel,
.request-content {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 48, 24, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.95), rgba(3, 3, 3, 0.98)) !important;
  border: 1px solid rgba(248, 200, 56, 0.46) !important;
  outline: 1px solid rgba(216, 48, 24, 0.3) !important;
  box-shadow:
    inset 0 0 24px rgba(248, 200, 56, 0.035),
    0 0 18px rgba(216, 48, 24, 0.38),
    0 0 28px rgba(248, 200, 56, 0.13),
    0 18px 48px rgba(0, 0, 0, 0.72) !important;
}

/* Card headings */
.service-card h3,
.fleet-card h3,
.need-card h3,
.capability-grid strong,
.request-content h2,
.card-title {
  color: #f5f1e6 !important;
  font-family: Anton, Impact, sans-serif !important;
  text-transform: uppercase !important;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.14),
    0 0 12px rgba(216, 48, 24, 0.72) !important;
}

/* Buttons */
.btn,
button,
input[type="submit"],
a[class*="btn"] {
  font-family: Anton, Impact, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.045em !important;
}

.btn.gold,
.btn-primary,
a.btn-primary,
input[type="submit"] {
  color: #000 !important;
  background: linear-gradient(180deg, #ffe37b, #f8c838, #e09818) !important;
  border: 1px solid rgba(255, 214, 90, 0.85) !important;
  box-shadow:
    0 0 20px rgba(248, 200, 56, 0.42),
    0 0 24px rgba(216, 48, 24, 0.22),
    0 12px 28px rgba(0, 0, 0, 0.62) !important;
}

.btn.chrome,
.btn-secondary,
a.btn-secondary,
.btn-outline {
  color: #f5f1e6 !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.86),
    rgba(12, 12, 12, 0.92)
  ) !important;
  border: 1px solid rgba(248, 200, 56, 0.72) !important;
  box-shadow:
    inset 0 0 16px rgba(216, 48, 24, 0.1),
    0 0 16px rgba(216, 48, 24, 0.34),
    0 0 18px rgba(248, 200, 56, 0.16) !important;
}

/* Service-area headline spacing: make it breathe like YOUR LOAD / OUR REPUTATION */
.service-copy {
  max-width: 760px !important;
}

.area-main-heading,
.gold-heading {
  display: block !important;
  margin: 0 !important;
}

.area-main-heading {
  margin-bottom: 0.18em !important;
}

.gold-heading {
  margin-top: 0.04em !important;
  margin-bottom: 0.36em !important;
}

/* Do not let map/card section feel like a different site */
.real-service-map,
.service-map {
  border: 1px solid rgba(248, 200, 56, 0.58) !important;
  outline: 1px solid rgba(216, 48, 24, 0.34) !important;
  box-shadow:
    inset 0 0 35px rgba(248, 200, 56, 0.055),
    0 0 22px rgba(216, 48, 24, 0.42),
    0 0 36px rgba(248, 200, 56, 0.16) !important;
}

/* Bottom slogan/dividers */
.final-cta,
.site-footer {
  border-top: 1px solid rgba(248, 200, 56, 0.24) !important;
  box-shadow: inset 0 1px 0 rgba(216, 48, 24, 0.25) !important;
}

/* Mobile tune */
@media (max-width: 760px) {
  h1,
  .service-copy h2,
  .area-main-heading,
  .gold-heading {
    -webkit-text-stroke: 1px rgba(77, 20, 8, 0.92);
  }

  .kicker::before,
  .section-kicker::before,
  .eyebrow::before,
  [class*="kicker"]::before,
  .kicker::after,
  .section-kicker::after,
  .eyebrow::after,
  [class*="kicker"]::after {
    width: 24px !important;
  }
}

/* =========================================================
   FINAL UNIFORM MENU + MAP FORMAT UPDATE
   Matches the approved screenshot style site-wide.
   Does NOT change the logo image.
   ========================================================= */

:root {
  --pl-black: #000;
  --pl-panel: #050505;
  --pl-cream: #f5f1e6;
  --pl-gold: #f8c838;
  --pl-gold2: #ffd65a;
  --pl-gold3: #e09818;
  --pl-red: #d83018;
  --pl-red-dark: #4d1408;
  --pl-red-glow: rgba(216, 48, 24, 0.82);
  --pl-gold-glow: rgba(248, 200, 56, 0.58);
}

/* Header/menu exactly in the approved dark glowing format */
.pl-pro-header,
.site-header {
  min-height: 112px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(28px, 4vw, 70px) !important;
  padding: 18px clamp(22px, 4vw, 64px) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 48, 24, 0.1), transparent 25%),
    linear-gradient(180deg, #020202, #000) !important;
  border-bottom: 1px solid rgba(248, 200, 56, 0.28) !important;
  box-shadow:
    0 0 0 1px rgba(216, 48, 24, 0.1),
    0 18px 46px rgba(0, 0, 0, 0.78) !important;
}

.pl-pro-header .brand {
  justify-self: start !important;
}

.pl-pro-header .brand img {
  width: clamp(230px, 17vw, 330px) !important;
  height: auto !important;
  filter: drop-shadow(0 0 16px rgba(216, 48, 24, 0.46))
    drop-shadow(0 0 16px rgba(248, 200, 56, 0.18)) !important;
}

/* menu words */
.pl-pro-nav,
.nav {
  justify-self: center !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: clamp(24px, 3.2vw, 54px) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.pl-pro-nav a,
.nav a {
  position: relative !important;
  padding: 14px 0 16px !important;
  font-family: Anton, Impact, sans-serif !important;
  font-size: clamp(0.95rem, 1.05vw, 1.18rem) !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.045em !important;
  color: var(--pl-cream) !important;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.22),
    0 0 13px var(--pl-red-glow),
    0 3px 0 rgba(0, 0, 0, 0.9) !important;
  white-space: nowrap !important;
  border: 0 !important;
  background: transparent !important;
}

.pl-pro-nav a::before,
.nav a::before {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 6px !important;
  width: 0 !important;
  height: 2px !important;
  transform: translateX(-50%) !important;
  background: linear-gradient(
    90deg,
    transparent,
    var(--pl-gold),
    transparent
  ) !important;
  box-shadow: 0 0 14px rgba(248, 200, 56, 0.9) !important;
  transition: width 0.22s ease !important;
}

.pl-pro-nav a::after,
.nav a::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: -1px !important;
  width: 0 !important;
  height: 0 !important;
  transform: translateX(-50%) !important;
  border-left: 7px solid transparent !important;
  border-right: 7px solid transparent !important;
  border-top: 7px solid var(--pl-gold) !important;
  opacity: 0 !important;
  background: transparent !important;
  transition: opacity 0.22s ease !important;
}

/* Menu hover only — Service Area is no longer permanently active */
.pl-pro-nav a:hover,
.nav a:hover {
  color: var(--pl-gold) !important;
  text-shadow:
    0 0 10px rgba(248, 200, 56, 0.92),
    0 0 20px var(--pl-red-glow),
    0 3px 0 rgba(0, 0, 0, 0.88) !important;
}

.pl-pro-nav a:hover::before,
.nav a:hover::before {
  width: 100% !important;
}

.pl-pro-nav a:hover::after,
.nav a:hover::after {
  opacity: 1 !important;
}

.menu-chevron {
  color: var(--pl-gold) !important;
  margin-left: 4px;
}

/* call button like screenshot */
.pl-pro-call,
.header-call,
.call-top {
  justify-self: end !important;
  min-height: 68px !important;
  min-width: 225px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  padding: 10px 22px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(248, 200, 56, 0.85) !important;
  outline: 1px solid rgba(216, 48, 24, 0.7) !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.94),
    rgba(13, 7, 4, 0.96)
  ) !important;
  color: var(--pl-cream) !important;
  box-shadow:
    inset 0 0 20px rgba(216, 48, 24, 0.13),
    0 0 24px rgba(216, 48, 24, 0.62),
    0 0 24px rgba(248, 200, 56, 0.22),
    0 14px 34px rgba(0, 0, 0, 0.72) !important;
}

.pl-pro-call .call-icon {
  color: var(--pl-gold) !important;
  font-size: 2rem !important;
  line-height: 1 !important;
  text-shadow: 0 0 14px rgba(248, 200, 56, 0.8) !important;
}

.pl-pro-call .call-text,
.pl-pro-call b {
  font-family: Anton, Impact, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.045em !important;
  line-height: 1.05 !important;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.22),
    0 0 13px rgba(216, 48, 24, 0.82) !important;
}

/* Uniform heading look across all sections */
h1,
h2,
h3,
.pl-display-heading,
.pl-section-heading,
.section-head h2,
.section-heading h2,
.service-copy h2,
.area-main-heading,
.gold-heading,
.haul-strip h2,
.fleet h2,
.request h2,
.final-cta h2 {
  font-family: Anton, Impact, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.015em !important;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.12),
    0 0 16px rgba(216, 48, 24, 0.84),
    0 6px 0 rgba(0, 0, 0, 0.86) !important;
}

.area-main-heading,
.service-copy h2:not(.gold-heading),
h1,
.pl-display-heading {
  color: var(--pl-cream) !important;
  -webkit-text-stroke: 1.4px rgba(77, 20, 8, 0.9);
}

.gold-heading,
h1 span,
.service-copy h2 span,
.section-head h2 span,
.section-heading h2 span {
  color: var(--pl-gold) !important;
  -webkit-text-stroke: 2px var(--pl-red-dark);
  text-shadow:
    0 0 10px rgba(248, 200, 56, 0.55),
    0 0 18px rgba(216, 48, 24, 0.88),
    0 6px 0 rgba(0, 0, 0, 0.88) !important;
}

/* Add breathing room exactly like YOUR LOAD / OUR REPUTATION */
.area-main-heading,
.gold-heading {
  display: block !important;
  line-height: 0.9 !important;
  margin: 0 !important;
}
.area-main-heading {
  margin-bottom: 0.16em !important;
}
.gold-heading {
  margin-top: 0.03em !important;
  margin-bottom: 0.36em !important;
}

/* Kicker labels with side gold lines */
.kicker,
.section-kicker,
.eyebrow,
[class*="kicker"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  color: var(--pl-gold) !important;
  font-family: Anton, Impact, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  text-shadow:
    0 0 9px rgba(248, 200, 56, 0.75),
    0 0 14px rgba(216, 48, 24, 0.66) !important;
}
.kicker::before,
.section-kicker::before,
.eyebrow::before,
[class*="kicker"]::before,
.kicker::after,
.section-kicker::after,
.eyebrow::after,
[class*="kicker"]::after {
  content: "" !important;
  display: inline-block !important;
  width: 42px !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--pl-gold)) !important;
  box-shadow: 0 0 12px rgba(248, 200, 56, 0.75) !important;
}
.kicker::after,
.section-kicker::after,
.eyebrow::after,
[class*="kicker"]::after {
  background: linear-gradient(90deg, var(--pl-gold), transparent) !important;
}

/* Map panel matching the screenshot format */
.pl-pro-map-panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 48, 24, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(2, 2, 2, 0.98)) !important;
  border: 1px solid rgba(248, 200, 56, 0.74) !important;
  outline: 1px solid rgba(216, 48, 24, 0.62) !important;
  border-radius: 18px !important;
  padding: 22px !important;
  box-shadow:
    inset 0 0 34px rgba(248, 200, 56, 0.05),
    0 0 24px rgba(216, 48, 24, 0.62),
    0 0 38px rgba(248, 200, 56, 0.18),
    0 22px 70px rgba(0, 0, 0, 0.78) !important;
}

.pl-map-titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 4px 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(248, 200, 56, 0.42);
}

.pl-map-titlebar h3 {
  margin: 0 !important;
  color: var(--pl-gold) !important;
  font-family: Anton, Impact, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  font-size: 1.35rem !important;
}

.pl-map-titlebar h3::before,
.pl-map-titlebar h3::after {
  content: "—";
  color: var(--pl-gold);
  margin: 0 10px;
}

.pl-map-titlebar strong {
  color: var(--pl-cream);
  font-family: Anton, Impact, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(216, 48, 24, 0.7);
}

.pl-map-titlebar span {
  color: var(--pl-gold);
}

/* stylized map area */
.pl-real-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(248, 200, 56, 0.36);
  background:
    radial-gradient(
      circle at 56% 45%,
      rgba(248, 200, 56, 0.16),
      transparent 30%
    ),
    radial-gradient(circle at 70% 22%, rgba(216, 48, 24, 0.1), transparent 20%),
    linear-gradient(145deg, #0a0907, #010101) !important;
  box-shadow: inset 0 0 32px rgba(0, 0, 0, 0.75);
}

.pl-real-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(248, 200, 56, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 200, 56, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, transparent, rgba(0, 0, 0, 0.55));
  background-size:
    48px 48px,
    48px 48px,
    100% 100%;
  opacity: 0.85;
}

.pl-real-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      23deg,
      transparent 0 22%,
      rgba(248, 200, 56, 0.72) 22.3%,
      transparent 22.8%
    ),
    linear-gradient(
      355deg,
      transparent 0 42%,
      rgba(248, 200, 56, 0.58) 42.2%,
      transparent 42.7%
    ),
    linear-gradient(
      116deg,
      transparent 0 55%,
      rgba(248, 200, 56, 0.56) 55.2%,
      transparent 55.7%
    ),
    linear-gradient(
      84deg,
      transparent 0 64%,
      rgba(248, 200, 56, 0.48) 64.2%,
      transparent 64.7%
    );
  filter: drop-shadow(0 0 12px rgba(248, 200, 56, 0.62));
  opacity: 0.88;
}

.pl-map-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 6;
  padding: 14px 18px;
  border-radius: 9px;
  color: var(--pl-gold);
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(248, 200, 56, 0.62);
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
  box-shadow: 0 0 18px rgba(216, 48, 24, 0.32);
}

.pl-pin {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pl-cream);
  font-family: Anton, Impact, sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 10px rgba(216, 48, 24, 0.86),
    0 3px 0 rgba(0, 0, 0, 0.86);
}

.pl-pin i {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(180deg, #ffe37b, var(--pl-gold), var(--pl-gold3));
  border: 2px solid var(--pl-red-dark);
  box-shadow:
    0 0 0 5px rgba(216, 48, 24, 0.26),
    0 0 20px rgba(216, 48, 24, 0.95),
    0 0 24px rgba(248, 200, 56, 0.72);
}

.pl-pin i::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 5px;
  top: 5px;
  border-radius: 50%;
  background: var(--pl-red-dark);
}

.pl-pin.primary i {
  width: 42px;
  height: 42px;
  box-shadow:
    0 0 0 7px rgba(216, 48, 24, 0.3),
    0 0 28px rgba(216, 48, 24, 0.95),
    0 0 36px rgba(248, 200, 56, 0.78);
}
.pl-pin.primary i::after {
  width: 14px;
  height: 14px;
  left: 11px;
  top: 11px;
}

/* Approximate real orientation based on user's service-area map */
.pl-pin.manhattan {
  left: 28%;
  top: 43%;
}
.pl-pin.junction {
  left: 12%;
  top: 66%;
}
.pl-pin.stgeorge {
  left: 52%;
  top: 46%;
}
.pl-pin.wamego {
  left: 72%;
  top: 41%;
}
.pl-pin.westmoreland {
  left: 64%;
  top: 15%;
}
.pl-pin.alma {
  left: 47%;
  top: 72%;
}
.pl-pin.paxico {
  left: 70%;
  top: 72%;
}

.pl-counties {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 8;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(248, 200, 56, 0.62);
  color: var(--pl-gold);
  background: rgba(0, 0, 0, 0.78);
  font-family: Anton, Impact, sans-serif;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  box-shadow: 0 0 18px rgba(216, 48, 24, 0.28);
}

.pl-counties span {
  color: var(--pl-gold);
}

/* service cards below map */
.pl-service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.pl-service-cards article {
  min-height: 170px;
  padding: 22px 18px;
  border-radius: 12px;
  border: 1px solid rgba(248, 200, 56, 0.6);
  outline: 1px solid rgba(216, 48, 24, 0.52);
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 48, 24, 0.16), transparent 45%),
    linear-gradient(180deg, #090909, #020202);
  box-shadow:
    0 0 20px rgba(216, 48, 24, 0.48),
    0 0 24px rgba(248, 200, 56, 0.14);
  text-align: center;
}

.pl-service-icon {
  color: var(--pl-gold);
  font-size: 2.4rem;
  line-height: 1;
  text-shadow: 0 0 16px rgba(248, 200, 56, 0.7);
}

.pl-service-cards h4 {
  margin: 12px 0;
  color: var(--pl-cream);
  font-family: Anton, Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(216, 48, 24, 0.7),
    0 4px 0 #000;
}

.pl-service-cards h4::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--pl-red);
  box-shadow: 0 0 12px rgba(216, 48, 24, 0.9);
}

.pl-service-cards p {
  margin: 0;
  color: var(--pl-cream);
  line-height: 1.45;
}
.pl-service-cards p span {
  color: var(--pl-red);
}

/* serving strip */
.pl-city-strip {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid rgba(248, 200, 56, 0.64);
  outline: 1px solid rgba(216, 48, 24, 0.42);
  background: rgba(0, 0, 0, 0.74);
  box-shadow: 0 0 20px rgba(216, 48, 24, 0.32);
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
}
.pl-city-strip strong {
  color: var(--pl-gold);
  letter-spacing: 0.08em;
}
.pl-city-strip span {
  color: var(--pl-cream);
  text-shadow: 0 0 10px rgba(216, 48, 24, 0.74);
}

/* Responsive */
@media (max-width: 1100px) {
  .pl-pro-header,
  .site-header {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    min-height: auto !important;
    text-align: center !important;
  }
  .pl-pro-nav,
  .nav {
    flex-wrap: wrap !important;
  }
  .pl-pro-call,
  .header-call,
  .call-top {
    justify-self: center !important;
  }
  .pl-service-cards {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 700px) {
  .pl-pro-nav,
  .nav {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 18px !important;
  }
  .pl-map-titlebar {
    flex-direction: column;
    align-items: flex-start;
  }
  .pl-real-map {
    min-height: 560px;
  }
  .pl-pin {
    font-size: 0.72rem;
  }
  .pl-pin.manhattan {
    left: 7%;
    top: 38%;
  }
  .pl-pin.junction {
    left: 6%;
    top: 62%;
  }
  .pl-pin.stgeorge {
    left: 42%;
    top: 42%;
  }
  .pl-pin.wamego {
    left: 58%;
    top: 37%;
  }
  .pl-pin.westmoreland {
    left: 48%;
    top: 14%;
  }
  .pl-pin.alma {
    left: 35%;
    top: 70%;
  }
  .pl-pin.paxico {
    left: 58%;
    top: 70%;
  }
}

.nav-link:hover::after {
  width: 50px !important;
}

/* =========================================================
   MOBILE CROWDING FIX
   Desktop stays the same. This only affects tablets/phones.
   ========================================================= */

@media (max-width: 900px) {
  body {
    overflow-x: hidden !important;
  }

  .site-header,
  .pl-pro-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    min-height: auto !important;
    padding: 16px 14px 18px !important;
    text-align: center !important;
  }

  .brand,
  .site-header .brand,
  .pl-pro-header .brand {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .brand img,
  .site-header img[src*="logo"],
  .pl-pro-header img[src*="logo"] {
    width: min(82vw, 300px) !important;
    max-width: 300px !important;
    height: auto !important;
  }

  .nav,
  .pl-pro-nav,
  .site-header nav {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px 10px !important;
    padding: 8px 0 0 !important;
    justify-content: center !important;
  }

  .nav a,
  .pl-pro-nav a,
  .site-header nav a {
    font-size: 0.82rem !important;
    line-height: 1.1 !important;
    padding: 10px 6px 14px !important;
    text-align: center !important;
    white-space: normal !important;
  }

  .nav a::before,
  .pl-pro-nav a::before,
  .site-header nav a::before {
    bottom: 5px !important;
  }

  .nav a::after,
  .pl-pro-nav a::after,
  .site-header nav a::after {
    bottom: -2px !important;
  }

  .header-call,
  .pl-pro-call,
  .call-top {
    width: min(100%, 300px) !important;
    min-width: 0 !important;
    min-height: 54px !important;
    padding: 8px 18px !important;
    font-size: 0.9rem !important;
  }

  .hero {
    min-height: auto !important;
    padding: 58px 18px 46px !important;
    background-position: center top !important;
  }

  .hero-copy,
  .hero-content,
  .service-copy,
  .request-content {
    max-width: 100% !important;
    text-align: left !important;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 5rem) !important;
    line-height: 0.9 !important;
    margin-bottom: 22px !important;
  }

  h2,
  .pl-display-heading,
  .area-main-heading,
  .gold-heading,
  .service-copy h2,
  .section-head h2,
  .section-heading h2 {
    font-size: clamp(2.7rem, 14vw, 4.7rem) !important;
    line-height: 0.92 !important;
    letter-spacing: 0.005em !important;
  }

  .area-main-heading {
    margin-bottom: 0.18em !important;
  }

  .gold-heading {
    margin-bottom: 0.42em !important;
  }

  .kicker,
  .section-kicker,
  .eyebrow,
  [class*="kicker"] {
    font-size: 0.75rem !important;
    letter-spacing: 0.12em !important;
    gap: 8px !important;
  }

  .kicker::before,
  .section-kicker::before,
  .eyebrow::before,
  [class*="kicker"]::before,
  .kicker::after,
  .section-kicker::after,
  .eyebrow::after,
  [class*="kicker"]::after {
    width: 22px !important;
  }

  .service-line,
  .hero-services {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    margin-bottom: 16px !important;
  }

  .actions,
  .hero-actions,
  .area-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .btn,
  .actions .btn,
  .hero-actions .btn {
    width: 100% !important;
    min-height: 52px !important;
    padding: 0 18px !important;
    text-align: center !important;
  }

  .haul-grid,
  .fleet-grid,
  .project-grid,
  .capability-grid,
  .pl-service-cards,
  .seo-city-grid,
  .trust-bar {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .haul-grid article {
    height: 190px !important;
  }

  .fleet-grid img {
    height: 240px !important;
  }

  .service-area,
  .million-area,
  .real-geo-area,
  .request {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 58px 18px !important;
  }

  .service-map-panel,
  .pl-pro-map-panel,
  .real-map-panel {
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .pl-map-titlebar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .pl-map-titlebar h3 {
    font-size: 1.1rem !important;
  }

  .pl-map-titlebar strong {
    font-size: 0.78rem !important;
  }

  .pl-real-map,
  .real-service-map,
  .service-map {
    min-height: 520px !important;
  }

  .pl-pin,
  .geo-city,
  .city-node {
    font-size: 0.66rem !important;
    padding: 6px 8px !important;
  }

  .pl-pin i,
  .geo-city span,
  .city-node span {
    width: 14px !important;
    height: 14px !important;
  }

  .pl-pin.primary i {
    width: 28px !important;
    height: 28px !important;
  }

  .pl-pin.primary i::after {
    width: 10px !important;
    height: 10px !important;
    left: 7px !important;
    top: 7px !important;
  }

  .pl-city-strip {
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    font-size: 0.82rem !important;
  }

  .pl-city-strip span,
  .pl-city-strip strong {
    flex: 1 1 100% !important;
  }

  .request-content,
  .need-card,
  .service-card {
    padding: 26px 20px !important;
  }

  .final-cta {
    padding: 54px 18px 70px !important;
  }

  .final-cta img {
    width: 150px !important;
  }

  .site-footer {
    padding: 42px 18px 90px !important;
  }

  .site-footer img {
    width: 150px !important;
  }

  .site-footer nav {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .sticky-call {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    width: auto !important;
  }

  .sticky-call a,
  a.sticky-call {
    width: 100% !important;
    min-height: 52px !important;
  }
}

@media (max-width: 480px) {
  .nav,
  .pl-pro-nav,
  .site-header nav {
    grid-template-columns: 1fr !important;
  }

  .brand img,
  .site-header img[src*="logo"],
  .pl-pro-header img[src*="logo"] {
    width: min(86vw, 260px) !important;
  }

  h1 {
    font-size: clamp(2.8rem, 18vw, 4.3rem) !important;
  }

  h2,
  .area-main-heading,
  .gold-heading,
  .service-copy h2 {
    font-size: clamp(2.45rem, 16vw, 4rem) !important;
  }

  .pl-real-map,
  .real-service-map,
  .service-map {
    min-height: 560px !important;
  }
}

/* =========================================================
   MOBILE HAMBURGER MENU + SERVICE AREA HOVER FIX
   No logo/content changes.
   ========================================================= */

/* Hide permanently-active Service Area line/triangle by default */
.pl-pro-nav a[href="#area"],
.nav a[href="#area"],
.site-header nav a[href="#area"] {
  color: #f5f1e6 !important;
}

.pl-pro-nav a[href="#area"]::before,
.nav a[href="#area"]::before,
.site-header nav a[href="#area"]::before {
  width: 0 !important;
}

.pl-pro-nav a[href="#area"]::after,
.nav a[href="#area"]::after,
.site-header nav a[href="#area"]::after {
  opacity: 0 !important;
}

/* Show the line/triangle only on hover or keyboard focus */
.pl-pro-nav a:hover,
.nav a:hover,
.site-header nav a:hover,
.pl-pro-nav a:focus-visible,
.nav a:focus-visible,
.site-header nav a:focus-visible {
  color: #f8c838 !important;
}

.pl-pro-nav a:hover::before,
.nav a:hover::before,
.site-header nav a:hover::before,
.pl-pro-nav a:focus-visible::before,
.nav a:focus-visible::before,
.site-header nav a:focus-visible::before {
  width: 100% !important;
}

.pl-pro-nav a:hover::after,
.nav a:hover::after,
.site-header nav a:hover::after,
.pl-pro-nav a:focus-visible::after,
.nav a:focus-visible::after,
.site-header nav a:focus-visible::after {
  opacity: 1 !important;
}

/* Remove small Services v/chevron */
.menu-chevron {
  display: none !important;
}

/* Desktop: hide hamburger */
.mobile-menu-toggle {
  display: none;
}

/* Mobile: compact header + hamburger dropdown */
@media (max-width: 760px) {
  .site-header,
  .pl-pro-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    min-height: 74px !important;
    height: 74px !important;
    padding: 8px 14px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas: "brand toggle" !important;
    align-items: center !important;
    gap: 10px !important;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.98),
      rgba(0, 0, 0, 0.94)
    ) !important;
    border-bottom: 1px solid rgba(248, 200, 56, 0.3) !important;
    overflow: visible !important;
  }

  .site-header .brand,
  .pl-pro-header .brand,
  .brand {
    grid-area: brand !important;
    width: auto !important;
    justify-self: start !important;
    display: flex !important;
    align-items: center !important;
  }

  .site-header .brand img,
  .pl-pro-header .brand img,
  .brand img,
  .site-header img[src*="logo"],
  .pl-pro-header img[src*="logo"] {
    width: 170px !important;
    max-width: 170px !important;
    height: auto !important;
  }

  .mobile-menu-toggle {
    grid-area: toggle !important;
    display: inline-flex !important;
    width: 48px !important;
    height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 6px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(248, 200, 56, 0.75) !important;
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.96),
      rgba(0, 0, 0, 0.96)
    ) !important;
    box-shadow:
      0 0 14px rgba(216, 48, 24, 0.42),
      0 0 18px rgba(248, 200, 56, 0.16) !important;
    cursor: pointer !important;
  }

  .mobile-menu-toggle span {
    display: block !important;
    width: 24px !important;
    height: 3px !important;
    border-radius: 99px !important;
    background: #f8c838 !important;
    box-shadow: 0 0 9px rgba(248, 200, 56, 0.8) !important;
    transition:
      transform 0.22s ease,
      opacity 0.22s ease !important;
  }

  body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg) !important;
  }

  body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg) !important;
  }

  .site-header nav,
  .pl-pro-nav,
  .nav {
    position: absolute !important;
    top: 74px !important;
    left: 0 !important;
    right: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 10px 14px 14px !important;
    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(216, 48, 24, 0.16),
        transparent 36%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.96)) !important;
    border-bottom: 1px solid rgba(248, 200, 56, 0.3) !important;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.75) !important;
    transform: translateY(-12px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease !important;
  }

  body.mobile-menu-open .site-header nav,
  body.mobile-menu-open .pl-pro-nav,
  body.mobile-menu-open .nav {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
  }

  .site-header nav a,
  .pl-pro-nav a,
  .nav a {
    width: 100% !important;
    padding: 14px 8px 16px !important;
    text-align: center !important;
    font-size: 1rem !important;
    border-bottom: 1px solid rgba(248, 200, 56, 0.12) !important;
  }

  .site-header nav a:last-child,
  .pl-pro-nav a:last-child,
  .nav a:last-child {
    border-bottom: 0 !important;
  }

  .pl-pro-call,
  .header-call,
  .call-top,
  .site-header a[href^="tel"] {
    display: none !important;
  }

  main,
  .hero,
  section:first-of-type {
    scroll-margin-top: 84px !important;
  }
}

@media (max-width: 420px) {
  .site-header .brand img,
  .pl-pro-header .brand img,
  .brand img,
  .site-header img[src*="logo"],
  .pl-pro-header img[src*="logo"] {
    width: 145px !important;
    max-width: 145px !important;
  }
}

/* =========================================================
   MOBILE POLISH FIX
   Reduces glow, improves word spacing, centers What We Haul.
   Desktop remains unchanged.
   ========================================================= */

@media (max-width: 760px) {
  h1,
  h2,
  h3,
  .pl-display-heading,
  .pl-section-heading,
  .area-main-heading,
  .gold-heading,
  .service-copy h2,
  .section-head h2,
  .section-heading h2,
  .haul-strip h2,
  .fleet h2,
  .request h2,
  .final-cta h2 {
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.1),
      0 0 7px rgba(216, 48, 24, 0.48),
      0 0 13px rgba(216, 48, 24, 0.32),
      0 4px 0 rgba(0, 0, 0, 0.88) !important;
  }

  .gold-heading,
  h1 span,
  .service-copy h2 span,
  .section-head h2 span,
  .section-heading h2 span {
    text-shadow:
      0 0 5px rgba(248, 200, 56, 0.42),
      0 0 10px rgba(216, 48, 24, 0.45),
      0 4px 0 rgba(0, 0, 0, 0.9) !important;
  }

  h1,
  .area-main-heading,
  .gold-heading,
  .service-copy h2 {
    letter-spacing: 0.012em !important;
    word-spacing: 0.06em !important;
  }

  .area-main-heading {
    line-height: 0.94 !important;
    margin-bottom: 0.34em !important;
  }

  .gold-heading {
    line-height: 0.94 !important;
    margin-top: 0.1em !important;
    margin-bottom: 0.48em !important;
  }

  .area-main-heading,
  .gold-heading {
    font-size: clamp(2.95rem, 13.5vw, 4.65rem) !important;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.9rem) !important;
    line-height: 0.94 !important;
  }

  .haul-strip {
    padding-top: 54px !important;
  }

  .haul-strip h2,
  .what-we-haul-title,
  #services h2 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    width: 100% !important;
    text-align: center !important;
    font-size: clamp(2.6rem, 13vw, 4.3rem) !important;
    line-height: 0.95 !important;
    margin: 0 auto 30px !important;
    padding: 0 10px !important;
  }

  .haul-strip h2::before,
  .haul-strip h2::after,
  .what-we-haul-title::before,
  .what-we-haul-title::after,
  #services h2::before,
  #services h2::after {
    content: "" !important;
    display: block !important;
    flex: 1 1 36px !important;
    max-width: 70px !important;
    height: 2px !important;
    background: linear-gradient(90deg, transparent, #f8c838) !important;
    box-shadow: 0 0 10px rgba(248, 200, 56, 0.55) !important;
  }

  .haul-strip h2::after,
  .what-we-haul-title::after,
  #services h2::after {
    background: linear-gradient(90deg, #f8c838, transparent) !important;
  }

  .btn,
  .btn.gold,
  .btn-primary,
  a.btn-primary,
  .sticky-call,
  a.sticky-call {
    box-shadow:
      0 0 10px rgba(248, 200, 56, 0.24),
      0 8px 20px rgba(0, 0, 0, 0.55) !important;
  }

  section {
    padding-top: 54px !important;
    padding-bottom: 54px !important;
  }

  .hero {
    padding-top: 42px !important;
  }

  .haul-grid article,
  .fleet-grid img,
  .service-card,
  .fleet-card,
  .pl-service-card-row article {
    box-shadow:
      0 0 10px rgba(216, 48, 24, 0.24),
      0 10px 24px rgba(0, 0, 0, 0.58) !important;
  }
}

@media (max-width: 430px) {
  h1,
  .area-main-heading,
  .gold-heading {
    letter-spacing: 0.006em !important;
    word-spacing: 0.04em !important;
  }

  .area-main-heading,
  .gold-heading {
    font-size: clamp(2.75rem, 14vw, 4.1rem) !important;
  }

  .service-copy p,
  .hero p {
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  .haul-strip h2,
  .what-we-haul-title,
  #services h2 {
    flex-wrap: wrap !important;
    gap: 10px !important;
    max-width: 360px !important;
  }

  .haul-strip h2::before,
  .haul-strip h2::after,
  .what-we-haul-title::before,
  .what-we-haul-title::after,
  #services h2::before,
  #services h2::after {
    flex-basis: 70px !important;
  }
}

/* =========================================================
   FINAL MOBILE HERO LIST FIX
   Turns the hero service list into two columns and reduces crowding.
   Desktop remains unchanged.
   ========================================================= */

@media (max-width: 760px) {
  /* Reduce red glow on mobile headings */
  h1,
  h2,
  h3,
  .hero h1,
  .hero-title,
  .section-title,
  .pl-display-heading,
  .pl-section-heading,
  .area-main-heading,
  .gold-heading,
  .service-copy h2,
  .section-head h2,
  .section-heading h2,
  .haul-strip h2,
  .fleet h2,
  .request h2,
  .final-cta h2 {
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.1),
      0 0 6px rgba(216, 48, 24, 0.38),
      0 0 12px rgba(216, 48, 24, 0.24),
      0 4px 0 rgba(0, 0, 0, 0.88) !important;
  }

  .hero h1,
  .hero-title,
  h1 {
    font-size: clamp(3rem, 13.2vw, 4.85rem) !important;
    line-height: 0.94 !important;
    letter-spacing: 0.01em !important;
    word-spacing: 0.05em !important;
    margin-bottom: 24px !important;
  }

  .hero h1 span,
  .gold-heading,
  h1 span {
    text-shadow:
      0 0 5px rgba(248, 200, 56, 0.38),
      0 0 9px rgba(216, 48, 24, 0.34),
      0 4px 0 rgba(0, 0, 0, 0.9) !important;
  }

  /* Hero service list: two columns on mobile */
  .hero-services,
  .hero .hero-services,
  .hero .service-line,
  .hero-content .service-line,
  .hero-copy .service-line {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 14px !important;
    width: 100% !important;
    margin: 22px 0 26px !important;
    padding: 0 !important;
    align-items: start !important;
  }

  .hero-services > *,
  .hero .hero-services > *,
  .hero .service-line > *,
  .hero-content .service-line > *,
  .hero-copy .service-line > * {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    width: auto !important;
    min-width: 0 !important;
    font-size: clamp(0.86rem, 3.6vw, 1.03rem) !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    letter-spacing: 0.015em !important;
    color: #f5f1e6 !important;
    margin: 0 !important;
  }

  .hero-services > *::before,
  .hero .hero-services > *::before,
  .hero .service-line > *::before,
  .hero-content .service-line > *::before,
  .hero-copy .service-line > *::before {
    content: "" !important;
    flex: 0 0 18px !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    border: 4px solid #f8c838 !important;
    background: radial-gradient(
      circle,
      #f8c838 0 28%,
      transparent 31%
    ) !important;
    box-shadow: 0 0 7px rgba(248, 200, 56, 0.46) !important;
  }

  /* If the existing list has two service-line rows, make them behave as one compact block */
  .hero .service-line.second,
  .hero-copy .service-line.second,
  .hero-content .service-line.second {
    margin-top: -12px !important;
  }

  /* Hero paragraph spacing */
  .hero p,
  .hero-text {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-top: 18px !important;
  }

  /* Center and fix What We Haul */
  .haul-strip h2,
  #services h2,
  .what-we-haul-title {
    text-align: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 360px !important;
    width: 100% !important;
  }

  /* Softer glows on mobile cards/buttons */
  .btn,
  .btn.gold,
  .btn-primary,
  a.btn-primary,
  .sticky-call,
  a.sticky-call {
    box-shadow:
      0 0 8px rgba(248, 200, 56, 0.22),
      0 8px 18px rgba(0, 0, 0, 0.52) !important;
  }
}

@media (max-width: 430px) {
  .hero-services,
  .hero .hero-services,
  .hero .service-line,
  .hero-content .service-line,
  .hero-copy .service-line {
    grid-template-columns: 1fr 1fr !important;
    gap: 11px 10px !important;
  }

  .hero-services > *,
  .hero .hero-services > *,
  .hero .service-line > *,
  .hero-content .service-line > *,
  .hero-copy .service-line > * {
    font-size: 0.84rem !important;
  }

  .hero-services > *::before,
  .hero .hero-services > *::before,
  .hero .service-line > *::before,
  .hero-content .service-line > *::before,
  .hero-copy .service-line > *::before {
    flex-basis: 16px !important;
    width: 16px !important;
    height: 16px !important;
    border-width: 3px !important;
  }
}

/* =========================================================
   MOBILE SERVING CITY GRID FIX
   Converts the bottom Serving city list into 2 rows x 3 columns.
   Desktop remains unchanged.
   ========================================================= */

@media (max-width: 768px) {
  .city-service-row,
  .pl-city-strip,
  .service-cities,
  .serving-cities,
  .city-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px 8px !important;
    align-items: center !important;
    justify-items: center !important;
    padding: 18px 12px !important;
  }

  .city-service-row strong,
  .pl-city-strip strong {
    grid-column: 1 / -1 !important;
    justify-self: start !important;
    width: 100% !important;
    margin-bottom: 4px !important;
    color: #f8c838 !important;
    text-align: left !important;
  }

  .city-service-row span,
  .pl-city-strip span,
  .service-cities li,
  .serving-cities li,
  .city-list li {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 0.82rem !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    white-space: normal !important;
    word-break: normal !important;
  }
}

@media (max-width: 430px) {
  .city-service-row,
  .pl-city-strip,
  .service-cities,
  .serving-cities,
  .city-list {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px 6px !important;
    padding: 16px 8px !important;
  }

  .city-service-row span,
  .pl-city-strip span,
  .service-cities li,
  .serving-cities li,
  .city-list li {
    font-size: 0.72rem !important;
  }
}

/* =========================================================
   FINAL NAV FIX — PASTE-SAFE OVERRIDE
   Makes all menu items uniform. Service Area only lights on hover.
   ========================================================= */

.menu-chevron {
  display: none !important;
}

.pl-pro-nav a[href="#area"],
.nav a[href="#area"],
.site-header nav a[href="#area"] {
  color: #f5f1e6 !important;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.22),
    0 0 13px var(--pl-red-glow),
    0 3px 0 rgba(0, 0, 0, 0.9) !important;
}

.pl-pro-nav a[href="#area"]::before,
.nav a[href="#area"]::before,
.site-header nav a[href="#area"]::before {
  width: 0 !important;
}

.pl-pro-nav a[href="#area"]::after,
.nav a[href="#area"]::after,
.site-header nav a[href="#area"]::after {
  opacity: 0 !important;
}

.pl-pro-nav a:hover,
.nav a:hover,
.site-header nav a:hover,
.pl-pro-nav a:focus-visible,
.nav a:focus-visible,
.site-header nav a:focus-visible {
  color: var(--pl-gold) !important;
  text-shadow:
    0 0 10px rgba(248, 200, 56, 0.78),
    0 0 16px rgba(216, 48, 24, 0.62),
    0 3px 0 rgba(0, 0, 0, 0.88) !important;
}

.pl-pro-nav a:hover::before,
.nav a:hover::before,
.site-header nav a:hover::before,
.pl-pro-nav a:focus-visible::before,
.nav a:focus-visible::before,
.site-header nav a:focus-visible::before {
  width: 100% !important;
}

.pl-pro-nav a:hover::after,
.nav a:hover::after,
.site-header nav a:hover::after,
.pl-pro-nav a:focus-visible::after,
.nav a:focus-visible::after,
.site-header nav a:focus-visible::after {
  opacity: 1 !important;
}

.pl-pro-nav a.active,
.nav a.active,
.site-header nav a.active,
.pl-pro-nav a[aria-current="page"],
.nav a[aria-current="page"],
.site-header nav a[aria-current="page"] {
  color: var(--pl-gold) !important;
}

.pl-pro-nav a.active::before,
.nav a.active::before,
.site-header nav a.active::before,
.pl-pro-nav a[aria-current="page"]::before,
.nav a[aria-current="page"]::before,
.site-header nav a[aria-current="page"]::before {
  width: 100% !important;
}

.pl-pro-nav a.active::after,
.nav a.active::after,
.site-header nav a.active::after,
.pl-pro-nav a[aria-current="page"]::after,
.nav a[aria-current="page"]::after,
.site-header nav a[aria-current="page"]::after {
  opacity: 1 !important;
}

/* Mobile polish: keep header compact and list/grid cleaner */
@media (max-width: 760px) {
  .site-header,
  .pl-pro-header {
    min-height: 74px !important;
    height: 74px !important;
    padding: 8px 14px !important;
  }

  .brand img,
  .site-header img[src*="logo"],
  .pl-pro-header img[src*="logo"] {
    width: 170px !important;
    max-width: 170px !important;
  }

  h1,
  h2,
  h3,
  .hero h1,
  .hero-title,
  .pl-display-heading,
  .pl-section-heading,
  .area-main-heading,
  .gold-heading,
  .service-copy h2,
  .section-head h2,
  .section-heading h2,
  .haul-strip h2,
  .fleet h2,
  .request h2,
  .final-cta h2 {
    text-shadow:
      0 0 4px rgba(255, 255, 255, 0.1),
      0 0 6px rgba(216, 48, 24, 0.38),
      0 0 12px rgba(216, 48, 24, 0.24),
      0 4px 0 rgba(0, 0, 0, 0.88) !important;
  }

  .hero h1,
  .hero-title,
  h1 {
    font-size: clamp(3rem, 13.2vw, 4.85rem) !important;
    line-height: 0.94 !important;
    letter-spacing: 0.01em !important;
    word-spacing: 0.05em !important;
    margin-bottom: 24px !important;
  }

  .hero-services,
  .hero .hero-services,
  .hero .service-line,
  .hero-content .service-line,
  .hero-copy .service-line {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 14px !important;
    width: 100% !important;
    margin: 22px 0 26px !important;
    padding: 0 !important;
    align-items: start !important;
  }

  .hero-services > *,
  .hero .hero-services > *,
  .hero .service-line > *,
  .hero-content .service-line > *,
  .hero-copy .service-line > * {
    display: flex !important;
    align-items: center !important;
    gap: 9px !important;
    width: auto !important;
    min-width: 0 !important;
    font-size: clamp(0.86rem, 3.6vw, 1.03rem) !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    text-transform: uppercase !important;
    white-space: normal !important;
    letter-spacing: 0.015em !important;
    color: #f5f1e6 !important;
    margin: 0 !important;
  }

  .hero-services > *::before,
  .hero .hero-services > *::before,
  .hero .service-line > *::before,
  .hero-content .service-line > *::before,
  .hero-copy .service-line > *::before {
    content: "" !important;
    flex: 0 0 18px !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    border: 4px solid #f8c838 !important;
    background: radial-gradient(
      circle,
      #f8c838 0 28%,
      transparent 31%
    ) !important;
    box-shadow: 0 0 7px rgba(248, 200, 56, 0.46) !important;
  }

  .city-service-row,
  .pl-city-strip,
  .service-cities,
  .serving-cities,
  .city-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px 8px !important;
    align-items: center !important;
    justify-items: center !important;
    padding: 18px 12px !important;
  }

  .city-service-row strong,
  .pl-city-strip strong {
    grid-column: 1 / -1 !important;
    justify-self: start !important;
    width: 100% !important;
    margin-bottom: 4px !important;
    color: #f8c838 !important;
    text-align: left !important;
  }

  .city-service-row span,
  .pl-city-strip span,
  .service-cities li,
  .serving-cities li,
  .city-list li {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
    font-size: 0.82rem !important;
    line-height: 1.15 !important;
    font-weight: 900 !important;
    white-space: normal !important;
  }
}

@media (max-width: 430px) {
  .brand img,
  .site-header img[src*="logo"],
  .pl-pro-header img[src*="logo"] {
    width: 145px !important;
    max-width: 145px !important;
  }

  .city-service-row,
  .pl-city-strip,
  .service-cities,
  .serving-cities,
  .city-list {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px 6px !important;
    padding: 16px 8px !important;
  }

  .city-service-row span,
  .pl-city-strip span,
  .service-cities li,
  .serving-cities li,
  .city-list li {
    font-size: 0.72rem !important;
  }
}
