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

.contact-hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 70px;
}

.contact-hero .hero-sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.contact-section {
  padding-bottom: 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* INFO BLOCKS */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.info-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  animation: fadeUp 0.5s ease both;
}

.info-block:nth-child(2) { animation-delay: 0.1s; }
.info-block:nth-child(3) { animation-delay: 0.2s; }

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(196, 113, 74, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.info-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.info-block p {
  font-size: 14px;
  color: var(--charcoal-muted);
  line-height: 1.85;
  font-weight: 300;
}

/* MAP */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 500px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  animation: fadeUp 0.5s ease both 0.15s;
}

.map-wrap iframe {
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    height: 360px;
  }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
