html {
    overflow-y: scroll;
    scrollbar-gutter: stable;
}

body {
    padding-top: 0 !important;
}

.topbar,
.mobile-nav-overlay {
    display: none !important;
}

.site-header {
    position: relative;
    left: 50%;
    z-index: 30;
    display: flex;
    width: min(1400px, calc(100vw - 2rem));
    height: 136px;
    min-height: 136px;
    margin: 0;
    padding: 8px 24px;
    transform: translateX(-50%);
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(197, 169, 94, 0.2);
    border-radius: 18px;
    color: #f7f1e6;
    background: rgba(7, 7, 7, 0.96);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    font-family: Inter, Arial, sans-serif;
}

.site-header,
.site-header * {
    box-sizing: border-box;
}

.site-header__logos,
.site-header__actions,
.site-header__nav {
    display: flex;
    align-items: center;
}

.site-header__logos {
    flex: 0 1 auto;
    gap: 18px;
}

.site-header__logo-link {
    display: block;
    flex: 0 0 auto;
    text-decoration: none;
}

.site-header__rog-logo {
    display: block;
    width: auto;
    height: 60px;
}

.site-header__divider {
    width: 1px;
    height: 34px;
    flex: 0 0 auto;
    background: rgba(197, 169, 94, 0.45);
}

.site-header__hbtn-logo {
    display: block;
    width: auto;
    height: 110px;
}

.site-header__actions {
    flex: 0 0 auto;
    gap: 16px;
}

.site-header__nav {
    gap: 16px;
}

.site-header__nav a {
    color: #f7f1e6;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: color 160ms ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
    color: #d7bd78;
}

.site-header__cta {
    display: inline-flex;
    min-width: 190px;
    min-height: 38px;
    padding: 9px 16px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    color: #1a140b;
    background: linear-gradient(135deg, #ead8ac, #c5a95e);
    box-shadow: 0 12px 28px rgba(197, 169, 94, 0.2);
    font-size: 13.6px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
    color: #1a140b;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(197, 169, 94, 0.28);
}

.site-header__toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid rgba(197, 169, 94, 0.35);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.site-header__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: #f7f1e6;
    transition: transform 160ms ease, opacity 160ms ease;
}

.site-header__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__toggle.active span:nth-child(2) { opacity: 0; }
.site-header__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 29;
    display: none;
    padding: 112px 24px 32px;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    color: #f7f1e6;
    background: rgba(7, 7, 7, 0.98);
    font-family: Inter, Arial, sans-serif;
}

.site-mobile-nav.active { display: flex; }

.site-mobile-nav a:not(.site-mobile-nav__cta) {
    color: #f7f1e6;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
}

.site-mobile-nav__cta {
    display: inline-flex;
    min-height: 44px;
    margin-top: 8px;
    padding: 10px 18px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #1a140b;
    background: linear-gradient(135deg, #ead8ac, #c5a95e);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
}

body.site-menu-open { overflow: hidden; }

@media (max-width: 980px) {
    .site-header {
        width: 100vw;
        height: 82px;
        min-height: 82px;
        margin: 0;
        padding: 8px 16px;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .site-header__logos { gap: 10px; }
    .site-header__rog-logo { height: 34px; }
    .site-header__divider { height: 24px; }
    .site-header__hbtn-logo { height: 64px; }
    .site-header__actions { display: none; }
    .site-header__toggle { display: block; flex: 0 0 auto; }
}

@media (max-width: 420px) {
    .site-header { padding-inline: 10px; }
    .site-header__rog-logo { height: 29px; }
    .site-header__hbtn-logo { height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
    .site-header__nav a,
    .site-header__cta,
    .site-header__toggle span { transition: none; }
}
