.location-address {
  text-align: center;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .location-address {
    font-size: 1.125rem;
  }
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-map);
  background: #fff;
  aspect-ratio: 16 / 10;
  width: 100%;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.7) contrast(.95);
  display: block;
  animation: map-fade-in 0.35s ease;
}

@keyframes map-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Map facade (click-to-load) ─────────────────────────── */
.map-facade {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  background: var(--paper-2);
  border: none;
  cursor: pointer;
  padding: 2rem;
  text-align: center;
  transition: background 0.2s ease;
  font-family: inherit;
}

.map-facade:hover {
  background: var(--paper-3);
}

.map-facade:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: -3px;
}

.map-facade__icon {
  color: var(--gold-deep);
  opacity: 0.75;
}

.map-facade__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
}

.map-facade__hint {
  font-size: 0.75rem;
  color: var(--ink);
}

.transport-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3.5rem;
}

@media (min-width: 640px) {
  .transport-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.transport-item {
  text-align: center;
}

@media (min-width: 640px) {
  .transport-item {
    text-align: left;
  }
}

.transport-item__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.transport-item__desc {
  color: var(--muted);
  line-height: 1.625;
  font-size: 0.875rem;
}
