/* ── CONTACT PAGE STYLES ── */

.contact-section {
  background: var(--warm-white);
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.contact-item-value {
  font-size: 1.1rem;
  color: var(--text-primary);
}

.contact-item-value a {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--sand-dark);
  transition: border-color 0.3s, color 0.3s;
}

.contact-item-value a:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-map iframe {
    height: 300px;
  }
}
