.op-contact {
  padding: 88px 0;
  background: var(--op-surface-alt);
}

.op-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.op-contact__title {
  font-size: 1.9rem;
  font-weight: 600;
  margin: .3em 0 .8em;
}

.op-contact__item {
  display: flex;
  gap: 14px;
  margin-bottom: 1.2em;
}
.op-contact__item svg {
  width: 24px;
  height: 24px;
  color: var(--op-brand-dark);
  flex: none;
  margin-top: 3px;
}
.op-contact__item strong {
  font-family: var(--op-font-display);
  font-weight: 600;
  display: block;
  font-size: .95rem;
}
.op-contact__item span {
  color: var(--op-ink-soft);
  font-size: .95rem;
}

.op-contact__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.6em;
}

.op-contact__map {
  border-radius: var(--op-radius);
  overflow: hidden;
  box-shadow: var(--op-shadow);
  min-height: 340px;
}
.op-contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}
.op-contact__map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: linear-gradient(145deg, var(--op-surface-alt), var(--op-brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--op-brand-dark);
  font-family: var(--op-font-display);
  font-weight: 500;
}

@media (max-width: 960px) {
  .op-contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .op-contact { padding: 64px 0; }
}
