/* ============================================================
   LOCATION PAGE — location-page.css
   ============================================================ */

/* ---- Distances card (replaces image in split) ---- */
.lp-distances-card {
  background: var(--navy-deep);
  border: 1px solid rgba(176,144,96,0.2);
  border-radius: 2px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.lp-dist-item {
  display: grid;
  grid-template-columns: minmax(110px, max-content) 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
}

.lp-dist-num {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.lp-dist-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lp-dist-lbl {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}

.lp-dist-mode {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(176,144,96,0.7);
  line-height: 1.5;
}

.lp-dist-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
}

/* ---- Full map section ---- */
.lp-map-section {
  padding: var(--sp) 0 0;
}

.lp-map-head {
  padding-bottom: 48px;
}

.lp-map-wrap {
  position: relative;
  width: 100%;
  height: 560px;
  overflow: hidden;
}

.lp-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.85) contrast(1.05);
}

.lp-map-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--navy-deep);
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
  pointer-events: none;
}

.lp-map-badge-title {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.lp-map-badge-sub {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .lp-dist-item { gap: 16px; }
  .lp-map-wrap { height: 420px; }
}

@media (max-width: 768px) {
  .lp-distances-card { padding: 28px 24px; }
  .lp-map-wrap { height: 340px; }
}

@media (max-width: 520px) {
  .lp-map-wrap { height: 280px; }
  .lp-map-badge { top: 12px; left: 12px; padding: 10px 14px; }
  .lp-map-badge-title { font-size: 0.85rem; }
}
