/* ─── LOCATIONS ─── */
.locations {
  padding: 80px 0;
  background: var(--navy);
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 146, 58, 0.15);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.location-card:hover {
  background: rgba(201, 146, 58, 0.08);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 146, 58, 0.15);
}

.location-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 146, 58, 0.15);
  border: 1px solid rgba(201, 146, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.location-city {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.location-addr {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.location-phone {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.location-card .btn-outline-gold {
  font-size: 0.82rem;
  padding: 0.5rem 1.2rem;
  margin-top: auto;
  display: inline-block;
}

.label-gold {
  color: var(--gold-light);
}

.locations-title {
  margin-bottom: 3rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .locations {
    padding: 60px 0;
  }

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