/* V2: Section Lokasi (home anchor #lokasi) */
.lokasi { background: var(--bg-deep); }

.lokasi-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
}
@media (max-width: 900px) {
  .lokasi-grid { grid-template-columns: 1fr; }
}

.lokasi-info {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 40px);
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.lokasi-info::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 24px; height: 24px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  pointer-events: none;
}
.lokasi-info::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 24px; height: 24px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
}

.lokasi-pin {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-muted);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
}
.lokasi-pin svg { width: 28px; height: 28px; }

.lokasi-info h3 {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}

.lokasi-info address {
  font-style: normal;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 15px;
}

.lokasi-hours {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 15px;
}

.lokasi-divider {
  display: flex; gap: 8px;
  margin: 28px 0;
}
.lokasi-divider span {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
}

.lokasi-actions {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 28px;
}
.lokasi-actions .btn {
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all .2s var(--ease);
}
.lokasi-actions .btn .icon { width: 16px; height: 16px; flex-shrink: 0; }
.lokasi-actions .btn-primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.lokasi-actions .btn-primary:hover { background: var(--gold-bright); border-color: var(--gold-bright); }
.lokasi-actions .btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}
.lokasi-actions .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.lokasi-map-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--gold-muted);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-elev);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}
.lokasi-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(0.95) saturate(0.85);
}

.lokasi-map-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(45deg, rgba(201,168,76,0.04) 0 12px, transparent 12px 24px),
    var(--bg-elev);
}
.fallback-overlay {
  text-align: center;
  padding: 32px;
  max-width: 320px;
}
.fallback-icon {
  width: 56px; height: 56px;
  color: var(--gold-muted);
  margin: 0 auto 16px;
  display: block;
}
.fallback-overlay p {
  color: var(--text-soft);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.6;
}
.fallback-overlay .btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background .2s var(--ease);
}
.fallback-overlay .btn-primary:hover { background: var(--gold-bright); }
