.location-section {
  padding-block: clamp(82px, 10vw, 124px);
}

.location-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(42px, 8vw, 70px);
  margin-top: 36px;
}

.location-grid figure {
  overflow: hidden;
  border: 2px solid var(--color-ink);
  border-radius: 12px;
  background: var(--color-tan);
  box-shadow: var(--shadow-chunky);
}

.location-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.location-grid h2 {
  max-width: 600px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.12;
}

.location-grid p {
  max-width: 640px;
  margin-top: 24px;
  color: rgba(36, 36, 33, 0.74);
  font-size: 18px;
  line-height: 1.68;
}

.location-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.location-pills span {
  border: 1px solid rgba(36, 36, 33, 0.18);
  border-radius: 999px;
  padding: 7px 16px;
  background: rgba(255, 253, 247, 0.66);
  color: rgba(36, 36, 33, 0.64);
  font-weight: 700;
}

@media (max-width: 900px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
}
