/* ------------------------------------------------------------------
   Contact page — extends legal.css with contact-specific blocks
   ------------------------------------------------------------------ */

/* Cinematic pixelated glow on the hero */
.legal-hero {
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: '';
  position: absolute;
  bottom: -450px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 850px;
  background: radial-gradient(ellipse at center bottom, rgba(255, 120, 120, 0.45) 0%, rgba(255, 120, 120, 0.18) 30%, rgba(255, 120, 120, 0.06) 55%, transparent 75%);
  filter: blur(150px);
  animation: fadeIn 2s ease-out forwards;
  pointer-events: none;
  z-index: 0;
}

/* Contact grid */
.contact-grid {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Contact card - reuses legal-block look */
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 30px;
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-card h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
}

.contact-card p {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.contact-card a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: #FFFFFF;
}

/* Big email link */
.contact-email {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: border-color 0.3s ease;
}

.contact-email:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-email a {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.contact-email a:hover {
  color: #FFFFFF;
}

/* Channels grid - 2 columns */
.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .contact-grid {
    padding: 0 20px 60px;
    gap: 24px;
  }

  .contact-channels {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-email {
    padding: 24px;
  }
}