/* === CONTACT PAGE === */

.contact-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  overflow: hidden;
}

.contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.6)
  );
}

.contact-hero .hero-text {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  max-width: 720px;
  padding: 0 1rem;
}

.contact-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.contact-hero .subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* INTRO */

.contact-intro {
  max-width: 760px;
  margin: 3rem auto 2rem;
  padding: 0 1.25rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* GRID */

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.25rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARDS */

.contact-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1.75rem;
}

.contact-card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.contact-card p {
  line-height: 1.6;
}

.contact-line {
  margin-top: 1rem;
}

.contact-line a {
  font-weight: 600;
}

.contact-note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

/* CLOSING */

.contact-closing {
  text-align: center;
  padding: 2.5rem 1rem 3rem;
  font-size: 0.95rem;
  opacity: 0.8;
}
