html { scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; }

/* Improve form field styling beyond Tailwind defaults */
input[type="text"], input[type="email"], textarea {
  border: 1px solid #cbd5e1;
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  width: 100%;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  outline: none;
  border-color: #0ea5e9;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

/* Reduced motion: pause hero video for users who request it */
@media (prefers-reduced-motion: reduce) {
  video[autoplay] { display: none; }
}

/* Print-friendly */
@media print {
  #top-banner, header, video, form, .no-print { display: none !important; }
}
