/* ===================== CONTACT PAGE ===================== */

.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: Garamond, Georgia, serif;
  font-size: 2.2rem;
  margin: 0 0 0.5rem;
  border-bottom: none;
}

.contact-lead {
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.contact-detail {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.45;
}

.contact-detail .ic {
  color: #00b36b;
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
  width: 1.6rem;
  text-align: center;
}

.contact-detail strong {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
}

.contact-detail a {
  color: #00b36b;
  text-decoration: none;
}
.contact-detail a:hover { text-decoration: underline; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-btn {
  text-decoration: none;
  font-family: 'Arial Narrow', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.7rem 1.4rem;
  background: #00b36b;
  color: white;
  border: 2px solid #00b36b;
  transition: all 0.2s;
}

.contact-btn:hover { background: #009959; border-color: #009959; }

.contact-btn.alt {
  background: none;
  color: #00b36b;
}
.contact-btn.alt:hover { background: #00b36b; color: white; }

/* Map */
.contact-map {
  position: relative;
  width: 100%;
  height: 470px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #eef1f2;
}

#map { width: 100%; height: 100%; }

.map-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: 'Arial Narrow', Arial, sans-serif;
  color: #888;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 1.25rem; }
  .contact-map { height: 360px; }
}
