/**
 * Find Us — hotel location map above the footer.
 */

.lux-location-map {
  --lux-navy: #1a2332;
  --lux-gold: #c9a96e;
  --lux-muted: #6b7a8d;
  --lux-surface: #f7f5f1;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--lux-surface) 48%, #ebe6dc 100%);
  border-top: 1px solid rgba(26, 35, 50, 0.08);
  padding: 72px 0 64px;
}

.lux-location-map__inner {
  max-width: 1140px;
}

.lux-location-map__header {
  text-align: center;
  margin: 0 auto 28px;
  max-width: 640px;
}

.lux-location-map__title {
  margin: 0 0 12px;
  color: var(--lux-navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.lux-location-map__text {
  margin: 0 0 10px;
  color: var(--lux-muted);
  font-family: "Barlow", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
}

.lux-location-map__address {
  margin: 0;
  color: var(--lux-navy);
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.lux-location-map__address-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lux-location-map__address-link:hover,
.lux-location-map__address-link:focus-visible {
  color: #b8944f;
  border-bottom-color: var(--lux-gold);
  outline: none;
}

.lux-location-map__frame-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 460px;
  overflow: hidden;
  border: 1px solid rgba(26, 35, 50, 0.12);
  background: #dfe3ea;
  box-shadow: 0 18px 40px rgba(26, 35, 50, 0.08);
}

.lux-location-map__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  max-width: 100%;
}

.lux-location-map__actions {
  margin: 18px 0 0;
  text-align: center;
}

.lux-location-map__open-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 4px;
  color: var(--lux-gold);
  font-family: "Barlow", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lux-location-map__open-link:hover,
.lux-location-map__open-link:focus-visible {
  color: #b8944f;
  border-bottom-color: var(--lux-gold);
  outline: none;
}

@media (max-width: 1024px) {
  .lux-location-map {
    padding: 60px 0 52px;
  }

  .lux-location-map__frame-wrap {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .lux-location-map {
    padding: 52px 0 44px;
  }

  .lux-location-map__frame-wrap {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .lux-location-map {
    padding: 44px 0 36px;
  }

  .lux-location-map__frame-wrap {
    height: 320px;
  }

  .lux-location-map__text {
    font-size: 16px;
  }
}
