/* ── Base & Utilities ───────────────────────────────── */
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* ── Scroll Reveal ──────────────────────────────────── */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal[data-reveal-state="hidden"] {
    opacity: 0;
    transform: translateY(32px);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html { scroll-behavior: auto; }
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ── Mobile Menu ────────────────────────────────────── */
.mobile-link { display: block; }

/* ── Form Select Arrow ──────────────────────────────── */
select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23065f46' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* ── Navbar Scrolled State ──────────────────────────── */
#site-header.scrolled {
    background-color: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 12px rgba(6, 78, 59, 0.08);
}

/* ── Selection Color ────────────────────────────────── */
::selection {
    background-color: rgba(16, 185, 129, 0.2);
    color: #064e3b;
}
