/* Real Google Maps surface with a premium clickable overlay */
.locationMap {
  isolation: isolate;
  background: #ddd4c6;
}

.locationMap::before,
.locationMap::after {
  pointer-events: none;
}

.googleMapFrame {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: saturate(.7) sepia(.12) contrast(1.06);
  transform: scale(1.01);
  transition: filter .5s ease, transform .8s cubic-bezier(.2, .75, .2, 1);
}

.locationMap:hover .googleMapFrame {
  filter: saturate(1) sepia(0) contrast(1.02);
  transform: scale(1.025);
}

.locationMapShade {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(28, 17, 13, .1), transparent 28%),
    linear-gradient(0deg, rgba(28, 17, 13, .46), transparent 40%);
}

.locationMapLink {
  position: absolute;
  z-index: 6;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 38px;
  color: white;
  cursor: pointer;
}

.locationMapLink > span {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(41, 17, 18, .78);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .22);
  backdrop-filter: blur(12px);
}

.locationMapLink strong {
  display: block;
  font: 400 16px/1.2 Georgia, serif;
}

.locationMapLink small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .58);
  font-size: 6px;
  letter-spacing: .15em;
}

.locationMapLink i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #ead6af;
  color: #4c1721;
  font-style: normal;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
  transition: transform .3s ease;
}

.locationMapLink:hover i { transform: rotate(45deg); }

.locationMapLink:focus-visible {
  outline: 3px solid #e3bb70;
  outline-offset: -6px;
}

@media (max-width: 600px) {
  .locationMapLink { padding: 22px; }
  .locationMapLink > span { padding: 12px 14px; }
  .locationMapLink i { width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  .googleMapFrame, .locationMapLink i { transition: none; }
  .locationMap:hover .googleMapFrame, .locationMapLink:hover i { transform: none; }
}
