/* ---------------------------------------------------------------------------
   custom.css — light polish layered on top of the Webflow export. Loaded
   AFTER propassistants.css so these win by source order.
   --------------------------------------------------------------------------- */

/* Smooth scrolling for in-page anchor links (e.g. the "Assistants" nav link
   jumping to the assistants section). */
html {
  scroll-behavior: smooth;
}

/* The contact form's submit button had no hover state. Add subtle feedback. */
.submit-button {
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.submit-button:hover {
  background-color: #00403d;
  transform: translateY(-1px);
}
