/* ==========================================================================
   SERVICE AREA — City grid with visual hierarchy + radial glow
   ========================================================================== */

.service-area {
  background: var(--bg-1);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}

.service-area .section-title {
  text-align: center;
}

.service-area .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.service-area__subline {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--text-secondary);
  text-align: center;
  margin-top: calc(var(--space-xl) * -1 + var(--space-sm));
  margin-bottom: var(--space-xl);
}

/* Radial glow behind grid — subtle orange coverage radius feel */
.service-area__cities {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-area__cities::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-subtle) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   PRIMARY CITIES — Top row, larger
   ========================================================================== */

.service-area__primary {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.city-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  transition: all var(--duration-micro) var(--ease-micro);
}

.city-tag:hover {
  border-color: var(--border-accent);
}

.city-tag--primary {
  font-family: var(--font-heading);
  font-size: var(--text-subsection);
  color: var(--text-primary);
  border-left: 2px solid var(--primary);
}

/* ==========================================================================
   SECONDARY CITIES — Tighter grid, smaller
   ========================================================================== */

.service-area__secondary {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  position: relative;
  z-index: 1;
}

.city-tag--secondary {
  font-family: var(--font-body);
  font-size: var(--text-body);
  color: var(--text-secondary);
}

/* ==========================================================================
   FOOTER NOTE
   ========================================================================== */

.service-area__note {
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-xl);
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
  .service-area__cities::before {
    width: 300px;
    height: 300px;
  }

  .city-tag--primary {
    font-size: var(--text-body);
  }
}

@media (max-width: 480px) {
  .service-area__primary,
  .service-area__secondary {
    gap: var(--space-xs);
  }

  .city-tag {
    padding: 0.375rem 1rem;
  }
}
