/* ============================
   LOCATION PAGE STYLES
   ============================ */

/* Hero */
.loc-hero {
  background: linear-gradient(135deg, #7F1D1D 0%, #B91C1C 50%, #991B1B 100%);
  padding: 7rem 1.5rem 5rem;
  text-align: center;
}

.loc-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.loc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.loc-hero h1 span {
  color: #FCA5A5;
}

.loc-hero .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.loc-hero .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
}

.loc-hero .hero-rating {
  margin-bottom: 1.25rem;
}

.loc-hero .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

@media (min-width: 480px) {
  .loc-hero .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Proximity Strip */
.proximity-strip {
  background: #1F2937;
  padding: 1.5rem;
  border-bottom: 3px solid #B91C1C;
}

.proximity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.proximity-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.proximity-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #F87171;
  font-family: 'Inter', sans-serif;
}

.proximity-item span {
  font-size: 0.8rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Inter', sans-serif;
}

@media (min-width: 640px) {
  .proximity-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Why Section */
.loc-why {
  background: #FFFDF9;
  padding: 5rem 1.5rem;
}

.loc-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.loc-why-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border-left: 4px solid #B91C1C;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.loc-why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.6rem;
  font-family: 'Playfair Display', serif;
}

.loc-why-card p {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .loc-why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Other Locations */
.other-locations {
  background: #F9FAFB;
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid #E5E7EB;
}

.other-locations h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}

.other-loc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.other-loc-grid a {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #B91C1C;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s, border-color 0.2s;
}

.other-loc-grid a:hover {
  background: #FEF2F2;
  border-color: #B91C1C;
}
