/* ============================================================
   IPPUN PROJECT — Contact Page Styles
   css/pages/contact.css
   ============================================================ */

/* -- CONTACT HERO ENTRANCE ------------------------------------ */
.contact-child {
  transform: translateY(10px);
  animation: contactSlideUp 0.3s ease forwards;
}

.contact-hero .section-eyebrow { animation-delay: 0.05s; }
.contact-hero h1               { animation-delay: 0.15s; }
.contact-hero .contact-sub     { animation-delay: 0.25s; }

@keyframes contactSlideUp {
  to {
    transform: translateY(0);
  }
}

/* -- CONTACT HERO --------------------------------------------- */
.contact-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 64px 80px;
}

.contact-hero .section-eyebrow {
  margin-bottom: var(--space-6);
}

.contact-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: var(--space-5);
}

.contact-hero .contact-sub {
  font-size: 19px;
  font-weight: 300;
  color: var(--color-slate);
  line-height: 1.6;
  max-width: 540px;
}

/* -- CONTACT BLOCKS ------------------------------------------- */
.contact-blocks {
  padding: 0 64px var(--space-section);
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.contact-block .section-eyebrow {
  margin-bottom: var(--space-3);
}

.contact-block a {
  font-family: var(--font-sans);
  font-size: var(--text-body-lg);
  font-weight: 400;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.contact-block a:hover {
  color: var(--color-crimson);
}

/* -- MOBILE RESPONSIVE ---------------------------------------- */
@media (max-width: 768px) {
  .contact-hero {
    padding: 100px var(--grid-margin) 64px;
    min-height: 50vh;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero .contact-sub {
    font-size: 16px;
    max-width: 320px;
  }

  .contact-blocks {
    padding: 0 var(--grid-margin) var(--space-section);
  }
}
