/* ═══════════════════════════════════════════════
   CONTACT — Editorial info row (no form)
═══════════════════════════════════════════════ */
.contact { background: var(--cream); }

/* ── Map ── */
.contact__map {
  width: 100%;
  aspect-ratio: 16 / 6;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--border-d);
  margin-bottom: 48px;
  filter: grayscale(0.15) contrast(1.02);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.contact__inner {
  max-width: 960px;
  margin: 0 auto;
}

/* ── Info row ── */
.contact__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border-d);
  border-bottom: 1px solid var(--border-d);
}
.contact-item {
  padding: 32px 36px;
  border-left: 1px solid var(--border-d);
}
.contact-item:first-child { border-left: none; }
.contact-item__label {
  display: block; font-size: 9px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 10px;
}
.contact-item p {
  font-size: 14px; color: var(--text-2); line-height: 1.7;
}
.contact-item a { color: var(--green); transition: opacity 0.2s; }
.contact-item a:hover { opacity: 0.7; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact__info { grid-template-columns: repeat(2, 1fr); }
  .contact-item:nth-child(2n+1) { border-left: none; }
  .contact-item { border-top: 1px solid var(--border-d); }
  .contact-item:nth-child(-n+2) { border-top: none; }
}

@media (max-width: 600px) {
  .contact__info { grid-template-columns: 1fr; }
  .contact-item {
    border-left: none !important;
    border-top: 1px solid var(--border-d);
    padding: 24px 4px;
  }
  .contact-item:first-child { border-top: none; }

  .contact__map {
    aspect-ratio: 4 / 3;
    margin-bottom: 32px;
    border-radius: var(--radius, 12px);
  }
}