/* ==========================================================================
   custom-overrides.css
   Post-migration adjustments kept OUT of the Webflow vendor CSS so they're
   easy to find, maintain, and reverse. Loaded last, after the Webflow sheets.
   ========================================================================== */

/* Show the contact form on mobile & tablet.
   The original Webflow design hid it below 991px in favor of tap-to-call/email
   links. Per request, the form is now shown on all screen sizes, in addition
   to those contact links. */
@media screen and (max-width: 991px) {
  .contact-form-wrapper {
    display: block !important;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
  }
}
