/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-primary);
    color: var(--bg-primary);
    padding: 8px;
    z-index: 10000;
    transition: top 0.3s;
    font-weight: 600;
    text-decoration: none;
}

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