/* ─── Contact/Location Section ─────────────────────────────────────────── */
.contact-section {
  padding: 8rem 0;
  background-color: var(--color-bg-white);
}

.contact__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .contact__wrapper {
    grid-template-columns: 1fr;
    gap: 6rem;
  }
}

.location-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.location-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 4rem 3rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  color: #fff;
}

.location-card__pin {
  width: 56px;
  height: 56px;
  background-color: #fce7e8;
  color: #111;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.location-card__title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.location-card__desc {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  max-width: 400px;
}

.location-card__pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.l-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.3;
}

.l-dot.is-active {
  opacity: 1;
  width: 24px;
  border-radius: 10px;
}

.contact__content {
  max-width: 500px;
}

.contact__title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: -0.04em;
}

.contact__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 4rem;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-item__icon {
  width: 56px;
  height: 56px;
  background-color: #f7f3f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8e7d7a;
  flex-shrink: 0;
}

.contact-item__label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item__value {
  font-size: 1.125rem;
  color: #111;
  font-weight: 500;
}