/* ─── Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(135deg, rgb(1, 134, 6) 0%, rgb(0, 200, 83) 100%);
    color: white;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.site-header__logo {
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
}

.site-header__logo_highlight {
    color: #018606 !important;
    text-shadow: 0 1px 6px #fff, 0 0px 2px #fff;
}

.site-header__logo span {
    font-weight: 800;
}

.site-header__badge {
    background: rgba(255,255,255,0.2);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.03em;
    position: relative;
    top: -10px;
}

.site-header__logo_text {
    font-family: 'ImpactWeb', 'Inter', sans-serif !important;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: normal;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    margin-right: 0.75rem;
    min-height: auto;
    box-shadow: none;
}
