.loft-contact-map-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  min-width: 0;
}

.loft-contact-video-panel {
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  padding: clamp(1rem, 2vw, 1.5rem);
  background: hsl(var(--card));
}

.loft-contact-video-heading {
  padding: 0.35rem 0.35rem 1.25rem;
}

.loft-contact-video-heading p {
  margin: 0 0 0.8rem;
  color: hsl(var(--primary));
  font: 500 11px/1.2 "DM Mono", monospace;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.loft-contact-video-heading h2 {
  margin: 0;
  color: hsl(var(--foreground));
  font-family: var(--font-serif), Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.loft-contact-video-frame {
  overflow: hidden;
  background: hsl(var(--muted));
}

.loft-contact-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #231c19;
}

@media (max-width: 640px) {
  .loft-contact-map-stack {
    gap: 2rem;
  }
}