/* Local dev only — live site uses #site-navigation with its own sticky system */
#masthead {
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}
#masthead.sticky-active {
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}
.admin-bar #masthead { top: 32px; }
@media screen and (max-width: 782px) {
    .admin-bar #masthead { top: 46px; }
}
