/* Skip link – widoczny po focuse (WCAG 2.4.1, 2.4.7) */
.skip-link:not(:focus):not(:focus-visible) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link:focus,
.skip-link:focus-visible {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1050;
    padding: 0.75rem 1rem;
    background: #fff;
    color: #000;
    border: 2px solid currentColor;
    border-radius: 0.25rem;
}

/* Spójny header + branding */
.site-header {
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}

.site-header__brand {
    padding: .5rem 0;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}

.site-brand:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.site-brand__logo {
    width: auto;
    height: 44px;
    max-width: 160px;
}

@media (min-width: 992px) {
    .site-brand__logo {
        height: 52px;
        max-width: 220px;
    }
}

.site-brand__text {
    font-weight: 700;
    line-height: 1.2;
}
