/* ==========================================================================
   AnimalsCell — ac-contact.css
   Loaded only on the Contact page (post ID 6234). Compact editorial
   hero, plain-text guidance list, a restrained CF7 form, a mint
   corrections callout, a neutral medical-notice box, and a simple
   policy-link row. Font-family intentionally unset — the theme's
   global typography (Manrope) already applies.
   ========================================================================== */

/* 1. Hero (compact) --------------------------------------------------- */
.ac-contact-hero {
  max-width: 850px;
  margin: 0 auto;
  padding: 56px 24px 8px;
  background: #F7FAF9;
  text-align: left;
}
.ac-contact-hero__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--ac-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ac-contact-hero__title {
  margin: 0 0 18px;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -1px;
  color: #102A43;
}
.ac-contact-hero__intro {
  margin: 0 0 12px;
  font-size: 19px;
  line-height: 1.6;
  color: #486581;
  max-width: 780px;
}
.ac-contact-hero__intro:last-child {
  margin-bottom: 0;
}

/* 2. Guidance list ------------------------------------------------------ */
.ac-contact-guidance {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 48px;
}
.ac-contact-guidance h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.2vw, 28px);
  line-height: 1.2;
  font-weight: 700;
  color: #102A43;
}
.ac-contact-guidance ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ac-contact-guidance li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 20px;
  font-size: 16.5px;
  line-height: 1.6;
  color: #334E68;
}
.ac-contact-guidance li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: #0F766E;
  font-weight: 700;
}
.ac-contact-guidance li:last-child {
  margin-bottom: 0;
}

/* 3. Contact form --------------------------------------------------- */
.ac-contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.ac-contact-form-wrap form.wpcf7-form {
  margin: 0;
}
.ac-contact-form-wrap form.wpcf7-form p {
  margin: 0 0 20px;
}
.ac-contact-form-wrap form.wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #102A43;
}
.ac-contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
  margin-top: 8px;
}
.ac-contact-form-wrap input.wpcf7-form-control:not(.wpcf7-submit) {
  display: block;
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  border: 1px solid #CBD8DE;
  border-radius: 6px;
  padding: 13px 15px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #102A43;
  box-sizing: border-box;
  transition: border-color .15s ease, outline-color .15s ease;
}
.ac-contact-form-wrap textarea.wpcf7-form-control {
  display: block;
  width: 100%;
  min-height: 180px;
  background: #FFFFFF;
  border: 1px solid #CBD8DE;
  border-radius: 6px;
  padding: 13px 15px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: #102A43;
  box-sizing: border-box;
  resize: vertical;
  transition: border-color .15s ease, outline-color .15s ease;
}
.ac-contact-form-wrap input.wpcf7-form-control:not(.wpcf7-submit):focus,
.ac-contact-form-wrap textarea.wpcf7-form-control:focus {
  border-color: #0F766E;
  outline: 2px solid rgba(15, 118, 110, .15);
  outline-offset: 2px;
}
.ac-contact-form-wrap input.wpcf7-not-valid,
.ac-contact-form-wrap textarea.wpcf7-not-valid {
  border-color: #C53030;
}
.ac-contact-form-wrap .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #C53030;
}
.ac-contact-form-wrap input.wpcf7-submit {
  display: inline-block;
  width: auto;
  height: auto;
  background: #0F766E;
  color: #FFFFFF;
  padding: 13px 22px;
  border: none;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color .15s ease;
}
.ac-contact-form-wrap input.wpcf7-submit:hover {
  background: #0B5D56;
}
.ac-contact-form-wrap input.wpcf7-submit:focus-visible {
  outline: 2px solid #0F766E;
  outline-offset: 2px;
}
.ac-contact-form-wrap .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 14px 16px;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.55;
  border: 1px solid #DCE6E3;
  background: #F7FAF9;
  color: #334E68;
}
.ac-contact-form-wrap .wpcf7-mail-sent-ok .wpcf7-response-output {
  background: #EEF6F3;
  border-color: #0F766E;
  color: #0B5D56;
}
.ac-contact-form-wrap .wpcf7-validation-errors .wpcf7-response-output,
.ac-contact-form-wrap .wpcf7-mail-sent-ng .wpcf7-response-output,
.ac-contact-form-wrap .wpcf7-spam-blocked .wpcf7-response-output,
.ac-contact-form-wrap .wpcf7-aborted .wpcf7-response-output {
  background: #FDF2F2;
  border-color: #C53030;
  color: #9B2C2C;
}


/* 4. Medical notice (neutral, not alarming) ------------------------------ */
.ac-contact-medical {
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 24px 28px;
  background: #F7FAF9;
  border: 1px solid #DCE6E3;
  border-radius: 8px;
}
.ac-contact-medical h2 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: #102A43;
}
.ac-contact-medical p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: #627D98;
}

/* 5. Policy links row ---------------------------------------------------- */
.ac-contact-policylinks {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  border-top: 1px solid #DCE6E3;
  padding-top: 24px;
}
.ac-contact-policylinks a {
  font-size: 14.5px;
  font-weight: 600;
  color: #0F766E;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ac-contact-policylinks a:hover {
  color: #0B5D56;
}

/* 6. Responsive ---------------------------------------------------------- */
@media (max-width: 767px) {
  .ac-contact-hero {
    padding: 40px 20px 4px;
  }
  .ac-contact-hero__title {
    font-size: clamp(36px, 9vw, 42px);
  }
  .ac-contact-hero__intro {
    font-size: 16.5px;
  }
  .ac-contact-guidance,
  .ac-contact-form-wrap,
  .ac-contact-policylinks {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ac-contact-medical {
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px;
  }
  .ac-contact-form-wrap input.wpcf7-submit {
    width: 100%;
  }
}