/* ─── CONTACT PAGE ──────────────────────────────────────────── */

.contact-page {
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

/* Contact info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.3s var(--ease-out-expo);
}

.contact-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  border-color: rgba(176,0,0,0.25);
  transform: translateY(-2px);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.contact-card-content {
  flex: 1;
  min-width: 0;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.contact-card-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-mid);
  margin: 0;
}

.contact-card-content a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}

.contact-card-content a:hover {
  color: var(--red-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Map */
.contact-map-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-map {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  height: 500px;
  position: relative;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.map-caption {
  font-size: 0.8rem;
  color: var(--ink-mid);
  text-align: center;
  margin: 0;
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-map {
    height: 400px;
  }
}

@media (max-width: 500px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .contact-map {
    height: 320px;
  }
}