/* Accessibility quick fixes — loaded after output.css */

/* Hero video color grading — moved from inline style to avoid CSP issues */
.hero-video-filter {
  filter: saturate(0.65) sepia(0.12) brightness(0.85) contrast(1.05);
}

/* Darken muted text for WCAG contrast on cream/white backgrounds */
.text-brand-muted {
  color: #6b6b6b;
}

/* Dark text on gold buttons for WCAG contrast */
.btn-gold {
  color: #2c2c2c;
}

/* Visible focus ring for form inputs */
.form-input:focus {
  outline: none;
  border-bottom-color: #BDA588;
  box-shadow: 0 2px 0 0 #BDA588;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
