/* =============================================
   Contact Page
   ============================================= */

/* Hero */
.contact-hero {
  position: relative;
  min-height: 55vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 128px;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  pointer-events: none;
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.contact-hero-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 3rem !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 0.75rem !important;
  line-height: 1.1 !important;
}
.contact-hero-sub {
  font-family: 'Newsreader', serif !important;
  font-size: 1.25rem !important;
  font-style: italic;
  color: rgba(255,255,255,0.6) !important;
  margin: 0 !important;
}

/* Body */
.contact-body {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}

/* Cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}
.contact-card {
  background: #F5F2EF;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
}
.contact-card-icon {
  margin-bottom: 1.25rem;
}
.contact-card-title {
  font-family: 'Manrope', sans-serif !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 0 0.6rem !important;
}
.contact-card-text {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.9rem !important;
  line-height: 1.6 !important;
  color: #666 !important;
  margin: 0 0 1.25rem !important;
}
.contact-card-link {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: #C78665 !important;
  text-decoration: none !important;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.contact-card-link:hover {
  color: #835E38 !important;
}

/* Bottom note */
.contact-note {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}
.contact-note p {
  font-family: 'Manrope', sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.7 !important;
  color: #888 !important;
  margin: 0 !important;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 767px) {
  .contact-hero { min-height: 40vh; }
  .contact-hero-title { font-size: 2.2rem !important; }

  .contact-body { padding: 2.5rem 1.5rem 3.5rem; }
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .contact-card { padding: 2rem 1.5rem; }
}
