/* =============================================
   Robinson & Sons Construction LLC
   location.css — SEO Location Landing Pages
   ============================================= */

/* Section 1: Hero (70vh, hero-fallback.png background) */
.location-hero {
  position: relative;
  height: 70vh;
  min-height: 460px;
  background: url("../images/hero-fallback.png") center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.location-hero .about-hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.location-hero .about-hero-content {
  padding-bottom: 70px;
}

/* Section 2: Local Expertise label */
.location-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 18px;
  font-weight: 500;
}

/* Section 3: Services */
.location-services-sub {
  max-width: 700px;
  margin: 0 auto 55px;
  font-size: 1rem;
  line-height: 1.85;
  color: #666;
  text-align: center;
}

.location-service-card {
  border-top: 3px solid #000;
  padding: 30px;
  height: 100%;
  background: #fff;
}

.location-service-card h3 {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

.location-service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 22px;
}

.location-service-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-bottom: 3px;
  transition: letter-spacing 0.3s ease;
}

.location-service-link:hover {
  color: #000;
  letter-spacing: 2.5px;
}

/* Section 4: Why Choose Us — heading above the value columns */
.location-values-heading {
  text-align: center;
  padding: 70px 0 10px;
}

.location-values-heading .story-label {
  color: rgba(255, 255, 255, 0.5);
}

.location-values-heading h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}

/* Section 5: Contact CTA buttons */
.location-cta-buttons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .location-hero {
    height: 60vh;
    min-height: 380px;
  }
  .location-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
