html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Visible, high-contrast focus ring for keyboard users on every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #c98a3b;
    outline-offset: 2px;
}

/* Skip link: hidden until focused, then jumps to the top of the viewport */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    background: #1b4332;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 0 0 0.5rem 0;
    font-weight: 600;
}

.skip-link:focus {
    left: 0;
}

/* Honeypot field: hidden from sighted users, marked aria-hidden for assistive tech,
   left in the tab order at tabindex="-1" so it never intercepts keyboard focus */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Mobile nav */
.mobile-menu {
    transition: max-height 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu.active {
    max-height: 400px;
}

/* Subtle decorative texture behind the hero copy (purely visual, aria-hidden in markup) */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0, transparent 45%),
        radial-gradient(circle at 85% 60%, rgba(255,255,255,0.08) 0, transparent 40%);
    pointer-events: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .animate-fade-in-up {
        animation: none;
    }
}
