:root {
  --loc-dark: #0f1c2e;
  --loc-accent: #6b93b7;
  --loc-soft: #f5f7fb;
}

body {
  background: var(--loc-soft);
}

.location-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 24px;
  padding: 70px 6vw 50px;
  background: #fff;
}

.location-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--loc-dark);
}

.location-hero p {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.7;
}

.location-hero .hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.location-hero-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,28,46,0.16);
}

.location-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-section {
  width: min(1000px, 92vw);
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(15,28,46,0.12);
}

.location-section h2 {
  margin-bottom: 16px;
  color: var(--loc-dark);
}

.location-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.location-list span {
  background: rgba(107,147,183,0.12);
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--loc-accent);
  font-weight: 600;
}

.location-cta {
  text-align: center;
  padding: 50px 24px 70px;
}

.location-cta .cta-box {
  width: min(900px, 90vw);
  margin: 0 auto;
  background: var(--loc-dark);
  color: #fff;
  padding: 36px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-cta .cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.location-cta .btn-secondary {
  border: 1px solid #fff;
  color: #fff;
}

@media (max-width: 720px) {
  .location-hero {
    padding: 60px 6vw 40px;
  }

  .location-section {
    padding: 26px;
  }
}
