#mainHeader {
    display: block;
    width: 100%;
    margin: 0 0 1.5rem;
    background: #252525;
}

.site-header, .site-header * {
    box-sizing: border-box;
    background: transparent;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: calc(100% - 80px);
    max-width: 1200px;
    margin-inline: auto;
    padding-block: 25px;
    border-bottom: 1px solid #484744;
    color: #f1eee8;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.site-header a { text-decoration: none; }
.site-header a:hover { text-decoration: underline; text-underline-offset: 5px; }
.site-header a:focus-visible { outline: 2px solid #f1eee8; outline-offset: 5px; }
.site-brand { display: block; flex-shrink: 0; }
.site-brand span {
    display: block;
    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.7px;
    line-height: 1.2;
}
.site-brand small {
    display: block;
    font-size: 11px;
    letter-spacing: 3.5px;
    margin-top: 5px;
    text-transform: uppercase;
    color: #b9b6b0;
}
.site-header nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px 22px;
    font-size: 13px;
}
.site-header nav a { display: inline-flex; align-items: center; min-height: 44px; }
.site-header .site-account { text-align: right; font-size: 12px; color: #b9b6b0; }

@media (max-width: 700px) {
    .site-header {
        width: calc(100% - 36px);
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding-block: 20px 12px;
    }
    .site-header nav { justify-content: flex-start; gap: 0 20px; }
    .site-header .site-account { text-align: left; }
}
