/* Menü im CAGE-Stil: eigene Vektor-Buchstaben, echte Linktexte für Screenreader. */
#site-nav {
    align-items: center;
    gap: 24px;
}

#site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 0;
    color: #c5c8ce;
}

#site-nav a:hover,
#site-nav a:focus-visible,
#site-nav a.active {
    color: #fff;
}

#site-nav .nav-wordmark {
    display: block;
    width: auto;
    height: 16px;
    overflow: visible;
}

#site-nav .nav-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1100px) {
    header > .menu {
        display: block;
        padding: 9px 12px;
        font: 700 12px/1.2 'Segoe UI', Arial, sans-serif;
        letter-spacing: .12em;
    }

    #site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 16px 22px;
        background: #0b0c0f;
        border-bottom: 1px solid var(--line);
    }

    #site-nav.open {
        display: flex;
    }

    #site-nav a {
        min-height: 44px;
        width: 100%;
        padding: 10px 0;
    }
}
