.maps-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201, 169, 98, 0.12);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(220, 38, 38, 0.08), transparent 70%),
    #0a0a0a;
}

.maps-section-inner {
  margin-inline: auto;
  max-width: 80rem;
  padding: 4.5rem 1.5rem 5rem;
}

.maps-section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.maps-section-header p {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #f87171;
}

.maps-section-header h2 {
  margin-top: 1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: #f5f5f5;
}

.maps-section-header .maps-location {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #ccc;
}

.maps-frame-wrap {
  position: relative;
  margin-inline: auto;
  max-width: 72rem;
  perspective: 1400px;
}

.maps-frame-glow {
  position: absolute;
  inset: -1rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.18), rgba(201, 169, 98, 0.12));
  filter: blur(24px);
  opacity: 0.7;
  pointer-events: none;
}

.maps-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 0.45rem;
  background: #111;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: rotateX(8deg);
  transform-origin: center bottom;
}

.maps-frame iframe {
  display: block;
  width: 100%;
  height: clamp(22rem, 52vw, 32rem);
  border: 0;
  filter: saturate(1.08) contrast(1.04);
}

.maps-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.maps-open-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: 0.25rem;
  padding: 0.7rem 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fda4af;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.maps-open-link:hover {
  color: #fecdd3;
  border-color: rgba(201, 169, 98, 0.55);
  background: rgba(127, 29, 29, 0.18);
}

@media (width >= 64rem) {
  .maps-section-inner {
    padding: 5.5rem 2rem 6rem;
  }
}