/* =========================
   Global Site Header
   ========================= */

.site-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

.site-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.site-brand {
    display: flex;
    align-items: baseline;
    gap: 10px;

    color: #17212b;
    text-decoration: none;
}

.site-brand-main {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-brand-sub {
    font-size: 13px;
    color: #6b7280;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav-link {
    padding: 10px 16px;

    color: #374151;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;

    border-radius: 6px;
    transition: background 0.2s ease;
}

.site-nav-link:hover {
    background: #f3f4f6;
}

.site-nav-clients {
    color: #ffffff;
    background: #17212b;
}

.site-nav-clients:hover {
    background: #2d3742;
}


/* Mobile */
@media (max-width: 700px) {

    .site-header-inner {
        padding: 14px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .site-brand-sub {
        display: none;
    }

    .site-nav {
        width: 100%;
    }

    .site-nav-link {
        flex: 1;
        text-align: center;
        padding: 10px 8px;
        font-size: 13px;
    }
}
/* Site Footer
--------------------------------------------- */

.site-footer {
    margin-top: 80px;
    border-top: 1px solid #e1e5e8;
    background: #ffffff;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 38px 40px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-footer-name {
    margin: 0;

    font-size: 14px;
    font-weight: 600;
    color: #17212b;
}

.site-footer-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-footer-links a {
    font-size: 13px;
    color: #5f6973;
    text-decoration: none;
}

.site-footer-links a:hover {
    color: #17212b;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-footer-copy {
    margin: 0;

    font-size: 12px;
    color: #8a939c;
}

@media (max-width: 700px) {

    .site-footer {
        margin-top: 50px;
    }

    .site-footer-inner {
        padding: 28px 24px 30px;

        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .site-footer-name {
        font-size: 14px;
    }

    .site-footer-links {
        display: block;
    }

    .site-footer-links a {
        font-size: 13px;
    }

    .site-footer-copy {
        font-size: 12px;
    }

    body.clients-page .site-footer,
    body.notes-index-page .site-footer,
    body.notes-page .site-footer {
    display: none;
    }
}