/* ==========================================================================
   MAPS TOWING — AREAS WE SERVE PAGE
   ========================================================================== */

/* --- Hero --- */
.areas-hero {
  position: relative;
  background: var(--graphite-850);
  height: 580px;
  padding: 44px var(--side-pad) 52px;
  overflow: hidden;
}

.areas-hero__glow {
  position: absolute;
  top: -133px;
  left: 959px;
  width: 629px;
  height: 629px;
  pointer-events: none;
}

.areas-hero__inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 112px;
}

.areas-hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.areas-hero__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 750px;
  max-width: 100%;
}

.areas-hero__title {
  font-size: 72px;
  font-weight: 700;
  line-height: 78px;
  color: var(--graphite-50);
  text-shadow: 0 4px 32px rgba(255, 56, 0, 0.12), 0 4px 40px rgba(0, 0, 0, 0.32);
}

.areas-hero__title span {
  color: var(--primary-2);
}

.areas-hero__sub {
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-250);
  max-width: 700px;
}

.areas-hero__call {
  flex: none;
}

/* --- Full coverage list --- */
.coverage {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 72px var(--side-pad);
}

.coverage__head {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coverage__head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.coverage__title {
  font-size: 44px;
  font-weight: 600;
  line-height: 50px;
  color: var(--graphite-900);
  width: 650px;
  max-width: 100%;
}

.coverage__sub {
  font-size: 16px;
  line-height: 22px;
  color: var(--graphite-700);
  width: 650px;
  max-width: 100%;
}

.coverage__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}

.cov-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--graphite-50);
  border: 1px solid var(--graphite-150);
  border-radius: var(--r-16);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.02));
}

.cov-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--graphite-150);
}

.cov-card__range {
  font-size: 24px;
  font-weight: 600;
  line-height: 28px;
  color: var(--graphite-900);
}

.cov-card__count {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--graphite-550);
}

.cov-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.cov-card__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--graphite-900);
}

.cov-card__link {
  color: inherit;
  transition: color 0.2s var(--ease);
}

.cov-card__link:hover {
  color: var(--primary-1);
}

.cov-card__dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-1);
}

/* --- FAQ bottom spacing on this page --- */
.faq--areas {
  padding-bottom: 144px;
}

/* ==========================================================================
   MOBILE
   ========================================================================== */
@media (max-width: 1023.98px) {
  .areas-hero {
    padding: 96px var(--side-pad-mobile) 40px;
  }

  .areas-hero__glow {
    top: 232px;
    left: 50%;
    transform: translateX(-50%);
    width: 534px;
    height: 523px;
  }

  .areas-hero__inner {
    padding-top: 0;
  }

  .areas-hero__bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .areas-hero__title {
    font-size: 44px;
    line-height: 50px;
    font-weight: 600;
  }

  .areas-hero__call {
    width: 100%;
    height: 48px;
    padding: 12px 20px;
  }

  .coverage {
    gap: 24px;
    padding: 72px var(--side-pad-mobile);
  }

  .coverage__head-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .coverage__title {
    font-size: 32px;
    line-height: 38px;
    width: 100%;
  }

  .coverage__sub {
    width: 100%;
  }

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