/* ============================================================
   MIGHTY SHINE — Contact Page Styles
   Supplements css/style.css
   ============================================================ */


/* ============================================================
   CONTACT HERO
   ============================================================ */
.contact-hero {
  min-height: 65vh;
  padding-top: 120px;
  padding-bottom: 72px;
}

.contact-hero .hero__content {
  padding-left: 4%;
}

.contact-hero .hero__headline {
  margin-top: 2rem;
}

.contact-hero .hero__bg-photo {
  object-position: center 65%;
}


/* ============================================================
   CONTACT INFO
   ============================================================ */
.contact-info {
  padding: var(--section-pad);
  background: var(--cream);
}

.contact-info .section-title {
  margin-bottom: 3rem;
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-info__card {
  background: var(--white);
  border: 3px solid var(--navy);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 6px 6px 0 var(--navy);
}

.contact-info__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.contact-info__label {
  font-size: 0.46rem;
  color: var(--navy);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-info__card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

.contact-info__link {
  font-size: 0.44rem;
  color: var(--sky-blue);
  letter-spacing: 0.06em;
  margin-top: 4px;
  transition: color 0.15s;
}

.contact-info__link:hover { color: var(--navy); }

.contact-info__email {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  transition: color 0.15s;
}

.contact-info__email:hover { color: var(--gold); }


/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-form-section {
  padding: var(--section-pad);
  background: var(--white);
}

.contact-form-section .section-title { margin-bottom: 1rem; }
.contact-form-section .section-subhead { margin-bottom: 2.5rem; }

.contact-form__embed {
  max-width: 720px;
  margin: 0 auto;
  border: 4px solid var(--navy);
  box-shadow: 8px 8px 0 var(--navy);
  padding: 48px 40px;
  background: var(--cream);
}

/* Placeholder shown until embed code is inserted */
.contact-form__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px;
  border: 3px dashed rgba(27,20,100,0.2);
}

.contact-form__placeholder-label {
  font-size: 0.52rem;
  color: var(--navy);
  letter-spacing: 0.1em;
}

.contact-form__placeholder-note {
  font-size: 0.95rem;
  color: #aaa;
}


/* ============================================================
   CONTACT FAQ — inherits .faq from style.css, minor overrides
   ============================================================ */
.contact-faq .section-title {
  margin-bottom: 3rem;
}


/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-form__embed {
    padding: 32px 24px;
  }
}


/* ============================================================
   RESPONSIVE — 600px
   ============================================================ */
@media (max-width: 600px) {
  .contact-hero {
    min-height: 55vh;
  }

  .contact-hero .hero__content {
    padding-left: 0;
  }

  .contact-info__card {
    box-shadow: 4px 4px 0 var(--navy);
  }

  .contact-form__embed {
    padding: 24px 16px;
    box-shadow: 4px 4px 0 var(--navy);
  }
}
