.site-header {
    --header-red: #cf101d;
    position: relative;
    z-index: 100;
    height: 84px;
    background: #fff;
    border-bottom: 1px solid #efefef;
    box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 34px;
}
.site-header__brand {
    flex: 0 0 auto;
    display: block;
    line-height: 0;
}
.site-header__brand img {
    width: 208px;
    height: 62px;
    object-fit: contain;
    object-position: left center;
}
.site-header__nav {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 42px;
    margin-left: auto;
    height: 100%;
}
.site-header__nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #1f1f1f;
    font-size: .84rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}
.site-header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 2px;
    border-radius: 8px;
    background: var(--header-red);
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .2s ease, transform .2s ease;
}
.site-header__nav a:hover,
.site-header__nav a.is-active { color: var(--header-red); }
.site-header__nav a:hover::after,
.site-header__nav a.is-active::after { opacity: 1; transform: scaleX(1); }
.site-header__cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    color: #fff;
    background: linear-gradient(180deg, #da1422, #c60714);
    border: 1px solid #bd0713;
    border-radius: 7px;
    box-shadow: 0 8px 22px rgba(207,16,29,.2);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header__cta:hover {
    color: #fff;
    background: #b8000d;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(207,16,29,.28);
}
.site-header__cta svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.site-header__toggle { display: none; }

@media (max-width: 1199.98px) {
    .site-header__inner { gap: 24px; }
    .site-header__brand img { width: 180px; }
    .site-header__nav { gap: 26px; }
    .site-header__cta { padding-inline: 17px; }
}
@media (max-width: 991.98px) {
    .site-header { height: 74px; }
    .site-header__brand img { width: 168px; height: 54px; }
    .site-header__toggle {
        order: 3;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 42px;
        height: 42px;
        padding: 9px;
        margin-left: auto;
        background: #fff;
        border: 1px solid #e4e4e4;
        border-radius: 6px;
    }
    .site-header__toggle span { width: 100%; height: 2px; background: #222; }
    .site-header__nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        display: none;
        height: auto;
        padding: 14px 24px 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border-top: 1px solid #eee;
        box-shadow: 0 16px 28px rgba(0,0,0,.08);
    }
    .site-header__nav.is-open { display: flex; }
    .site-header__nav a { min-height: 45px; }
    .site-header__nav a::after { left: 0; right: auto; bottom: 6px; width: 35px; }
    .site-header__cta { margin-left: auto; min-height: 42px; padding-inline: 14px; font-size: .82rem; }
}
@media (max-width: 575.98px) {
    .site-header__inner { gap: 10px; }
    .site-header__brand img { width: 142px; }
    .site-header__cta span { display: none; }
    .site-header__cta { width: 42px; padding: 0; border-radius: 6px; }
}
