.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--header-shadow);
    padding: 0.875rem 0;
    margin-bottom: 0.75rem;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    direction: ltr;
}

.site-header__logo-wrap {
    flex-shrink: 0;
    order: 1;
    margin-right: auto;
}

.site-header__logo {
    display: block;
    max-height: 52px;
    width: auto;
}

.site-header__text {
    order: 2;
    direction: rtl;
    text-align: right;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.4;
    margin: 0;
    margin-left: auto;
}

.site-footer {
    padding: 1.5rem 0 0.5rem;
    margin-top: 2rem;
    text-align: center;
}

.site-footer__link {
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.site-footer__link:hover {
    color: var(--color-primary-dark);
}

@media (max-width: 575.98px) {
    .site-header__logo {
        max-height: 36px;
    }

    .site-header__text {
        font-size: 0.9375rem;
        font-weight: 700;
    }
}
