/* ==========================================================
   ISABELLA — HEADER V4
   Transparent · compact on scroll · premium mobile panel
   ========================================================== */

.site-header-v4 {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns:
        minmax(180px, .75fr)
        minmax(620px, 2fr)
        minmax(250px, .9fr);
    align-items: center;
    min-height: 112px;
    padding:
        0
        clamp(24px, 4.2vw, 84px);
    border-bottom: 1px solid transparent;
    background:
        linear-gradient(
            180deg,
            rgba(3, 3, 3, .86) 0%,
            rgba(3, 3, 3, .42) 66%,
            rgba(3, 3, 3, 0) 100%
        );
    transition:
        min-height .4s ease,
        padding .4s ease,
        background .4s ease,
        border-color .4s ease,
        box-shadow .4s ease,
        backdrop-filter .4s ease;
}

.site-header-v4.is-scrolled {
    min-height: 78px;
    border-bottom-color: rgba(215, 181, 111, .18);
    background: rgba(7, 7, 7, .88);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, .22);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

/* Brand */

.brand-v4,
.brand-v4:link,
.brand-v4:visited,
.brand-v4:hover,
.brand-v4:active {
    position: relative;
    display: inline-flex;
    width: max-content;
    flex-direction: column;
    color: #f7f1e8;
    text-decoration: none;
}

.brand-v4 span {
    color: #f7f1e8;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 3.25vw, 64px);
    font-weight: 400;
    line-height: .78;
    letter-spacing: -.055em;
    transition:
        font-size .4s ease,
        color .3s ease;
}

.brand-v4 small {
    margin-top: 14px;
    padding-left: 4px;
    color: #cba863;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .5em;
    text-transform: uppercase;
    transition:
        margin .4s ease,
        font-size .4s ease;
}

.site-header-v4.is-scrolled .brand-v4 span {
    font-size: 42px;
}

.site-header-v4.is-scrolled .brand-v4 small {
    margin-top: 10px;
    font-size: 8px;
}

/* Desktop navigation */

.main-nav-v4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(17px, 1.65vw, 34px);
    min-width: 0;
}

.main-nav-v4 a {
    position: relative;
    padding: 15px 0;
    color: rgba(247, 241, 232, .76);
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(13px, .96vw, 17px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -.01em;
    text-decoration: none;
    white-space: nowrap;
    transition:
        color .3s ease,
        transform .3s ease;
}

.main-nav-v4 a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            #d7b56d,
            transparent
        );
    opacity: 0;
    transform: scaleX(.25);
    transition:
        opacity .3s ease,
        transform .3s ease;
}

.main-nav-v4 a:hover,
.main-nav-v4 a:focus-visible {
    color: #e7c985;
    outline: none;
}

.main-nav-v4 a:hover::after,
.main-nav-v4 a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Header actions */

.header-actions-v4 {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    min-width: 0;
}

.header-lang-v4 {
    display: grid;
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(224, 192, 126, .38);
    border-radius: 50%;
    background: rgba(17, 15, 12, .42);
    color: #f1dfb7;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-decoration: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        border-color .3s ease,
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.header-lang-v4:hover,
.header-lang-v4:focus-visible {
    border-color: rgba(239, 209, 145, .88);
    background: rgba(202, 164, 88, .13);
    color: #efd38f;
    transform: translateY(-2px);
    outline: none;
}

.header-sponsor-v4 {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid rgba(245, 217, 154, .7);
    border-radius: 999px;
    background:
        linear-gradient(
            125deg,
            #9a681f 0%,
            #e8c878 44%,
            #f3d99b 60%,
            #ad792c 100%
        );
    color: #151006;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .15em;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow:
        0 16px 42px rgba(185, 137, 49, .25),
        inset 0 1px 0 rgba(255, 255, 255, .5);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        filter .3s ease;
}

.header-sponsor-v4 span:last-child {
    font-size: 16px;
    line-height: 1;
}

.header-sponsor-v4:hover,
.header-sponsor-v4:focus-visible {
    transform: translateY(-3px);
    filter: brightness(1.06);
    box-shadow:
        0 22px 58px rgba(185, 137, 49, .37),
        inset 0 1px 0 rgba(255, 255, 255, .6);
    outline: none;
}

/* Mobile menu button */

.header-menu-toggle {
    position: relative;
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(230, 200, 137, .36);
    border-radius: 50%;
    background: rgba(17, 15, 12, .48);
    cursor: pointer;
}

.header-menu-toggle span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 1px;
    background: #ead29d;
    transform: translateX(-50%);
    transition:
        top .3s ease,
        transform .3s ease;
}

.header-menu-toggle span:first-child {
    top: 20px;
}

.header-menu-toggle span:last-child {
    top: 27px;
}

.header-menu-open .header-menu-toggle span:first-child {
    top: 23px;
    transform:
        translateX(-50%)
        rotate(45deg);
}

.header-menu-open .header-menu-toggle span:last-child {
    top: 23px;
    transform:
        translateX(-50%)
        rotate(-45deg);
}

/* Mobile backdrop */

.header-mobile-backdrop {
    position: fixed;
    z-index: 10001;
    inset: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, .58);
    opacity: 0;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition:
        opacity .4s ease,
        visibility .4s ease;
}

.header-menu-open .header-mobile-backdrop {
    visibility: visible;
    opacity: 1;
}

/* Mobile panel */

.header-mobile-panel {
    position: fixed;
    z-index: 10002;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(470px, 92vw);
    flex-direction: column;
    overflow-y: auto;
    padding:
        34px
        clamp(24px, 6vw, 46px)
        38px;
    border-left: 1px solid rgba(219, 184, 112, .2);
    background:
        radial-gradient(
            circle at 90% 8%,
            rgba(205, 166, 90, .18),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #18140f 0%,
            #0c0b09 58%,
            #070706 100%
        );
    box-shadow:
        -30px 0 90px rgba(0, 0, 0, .46);
    visibility: hidden;
    transform: translateX(105%);
    transition:
        transform .55s cubic-bezier(.2, .75, .2, 1),
        visibility .55s ease;
}

.header-menu-open .header-mobile-panel {
    visibility: visible;
    transform: translateX(0);
}

.header-mobile-panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: clamp(55px, 9vh, 88px);
}

.header-mobile-brand {
    display: flex;
    flex-direction: column;
}

.header-mobile-brand span {
    color: #f6efe4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: .8;
    letter-spacing: -.05em;
}

.header-mobile-brand small {
    margin-top: 13px;
    color: #cba863;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .48em;
    text-transform: uppercase;
}

.header-mobile-close {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(228, 197, 131, .35);
    border-radius: 50%;
    background: rgba(10, 9, 8, .34);
    cursor: pointer;
}

.header-mobile-close span {
    position: absolute;
    top: 21px;
    left: 12px;
    width: 18px;
    height: 1px;
    background: #e7ce97;
}

.header-mobile-close span:first-child {
    transform: rotate(45deg);
}

.header-mobile-close span:last-child {
    transform: rotate(-45deg);
}

.header-mobile-nav {
    display: flex;
    flex-direction: column;
}

.header-mobile-nav a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(241, 229, 205, .1);
    color: #f2eadf;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 7vw, 38px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -.025em;
    text-decoration: none;
}

.header-mobile-nav a::after {
    content: "↗";
    position: absolute;
    right: 0;
    color: #cba863;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    opacity: .55;
}

.header-mobile-actions {
    display: grid;
    gap: 12px;
    margin-top: 42px;
}

.header-mobile-language {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(224, 190, 122, .28);
    border-radius: 999px;
    color: #e9ddc4;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    letter-spacing: .12em;
    text-decoration: none;
    text-transform: uppercase;
}

.header-mobile-language strong {
    color: #e4c47f;
}

.header-mobile-sponsor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 999px;
    background:
        linear-gradient(
            125deg,
            #96651e,
            #e5c375,
            #b07d2f
        );
    color: #151006;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
}

.header-mobile-sponsor span {
    font-size: 18px;
}

.header-mobile-socials {
    display: flex;
    gap: 25px;
    margin-top: auto;
    padding-top: 42px;
}

.header-mobile-socials a {
    color: rgba(239, 228, 207, .62);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
}

/* Responsive desktop */

@media (max-width: 1560px) {
    .site-header-v4 {
        grid-template-columns:
            minmax(170px, .68fr)
            minmax(570px, 1.8fr)
            minmax(230px, .8fr);
        padding:
            0
            clamp(22px, 3vw, 50px);
    }

    .main-nav-v4 {
        gap: clamp(14px, 1.25vw, 24px);
    }

    .main-nav-v4 a {
        font-size: clamp(12px, .88vw, 15px);
    }

    .header-sponsor-v4 {
        padding: 0 19px;
        font-size: 10px;
    }
}

@media (max-width: 1280px) {
    .site-header-v4 {
        grid-template-columns:
            minmax(155px, .62fr)
            minmax(500px, 1.65fr)
            minmax(205px, .72fr);
        column-gap: 18px;
    }

    .brand-v4 span {
        font-size: 48px;
    }

    .brand-v4 small {
        margin-top: 11px;
        font-size: 8px;
    }

    .main-nav-v4 {
        gap: 15px;
    }

    .main-nav-v4 a {
        font-size: 12px;
    }

    .header-lang-v4 {
        width: 46px;
        height: 46px;
    }

    .header-sponsor-v4 {
        min-height: 46px;
        padding: 0 16px;
        letter-spacing: .1em;
    }
}

/* Tablet/mobile breakpoint */

@media (max-width: 1180px) {
    .site-header-v4 {
        grid-template-columns:
            1fr
            auto;
        min-height: 92px;
        padding:
            0
            clamp(20px, 5vw, 42px);
    }

    .site-header-v4.is-scrolled {
        min-height: 70px;
    }

    .main-nav-v4 {
        display: none;
    }

    .header-lang-v4,
    .header-sponsor-v4 {
        display: none;
    }

    .header-menu-toggle {
        display: block;
    }

    .brand-v4 span {
        font-size: 48px;
    }

    .brand-v4 small {
        margin-top: 11px;
        font-size: 8px;
    }

    .site-header-v4.is-scrolled .brand-v4 span {
        font-size: 38px;
    }
}

@media (max-width: 560px) {
    .site-header-v4 {
        min-height: 80px;
        padding: 0 18px;
    }

    .site-header-v4.is-scrolled {
        min-height: 64px;
    }

    .brand-v4 span {
        font-size: 40px;
    }

    .brand-v4 small {
        margin-top: 9px;
        font-size: 7px;
    }

    .header-menu-toggle {
        width: 44px;
        height: 44px;
    }
}

/* Lock document while mobile panel is open */

html.header-menu-open,
html.header-menu-open body {
    overflow: hidden;
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .site-header-v4,
    .brand-v4 span,
    .brand-v4 small,
    .main-nav-v4 a,
    .main-nav-v4 a::after,
    .header-lang-v4,
    .header-sponsor-v4,
    .header-mobile-backdrop,
    .header-mobile-panel,
    .header-menu-toggle span {
        transition: none;
    }
}

/* ==========================================================
   HEADER V4 — CORRECTION PRIORITAIRE FR/EN + SPONSORS
   ========================================================== */

html body header.site-header-v4 .header-actions-v4 {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 16px !important;
    width: auto !important;
    min-width: max-content !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Bouton langue indépendant */

html body header.site-header-v4
.header-actions-v4 a.header-lang-v4 {
    position: relative !important;
    display: inline-grid !important;
    flex: 0 0 54px !important;
    width: 54px !important;
    min-width: 54px !important;
    max-width: 54px !important;
    height: 54px !important;
    min-height: 54px !important;
    padding: 0 !important;
    margin: 0 !important;
    place-items: center !important;
    overflow: hidden !important;

    border: 1px solid rgba(227, 192, 120, .62) !important;
    border-radius: 999px !important;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(239, 207, 142, .16),
            transparent 36%
        ),
        linear-gradient(
            145deg,
            rgba(39, 31, 21, .96),
            rgba(12, 11, 9, .98)
        ) !important;

    color: #efd69d !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    letter-spacing: .13em !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;

    box-shadow:
        0 14px 34px rgba(0, 0, 0, .34),
        0 0 0 1px rgba(241, 211, 151, .04),
        inset 0 1px 0 rgba(255, 255, 255, .11) !important;

    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;

    transition:
        transform .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        background .3s ease !important;
}

html body header.site-header-v4
.header-actions-v4 a.header-lang-v4:hover,
html body header.site-header-v4
.header-actions-v4 a.header-lang-v4:focus-visible {
    color: #fff0c8 !important;
    border-color: rgba(248, 218, 153, .98) !important;

    background:
        radial-gradient(
            circle at 35% 25%,
            rgba(249, 219, 154, .25),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(65, 49, 28, .98),
            rgba(17, 14, 10, .98)
        ) !important;

    box-shadow:
        0 18px 44px rgba(0, 0, 0, .42),
        0 0 26px rgba(211, 169, 85, .18),
        inset 0 1px 0 rgba(255, 255, 255, .16) !important;

    transform: translateY(-2px) !important;
    outline: none !important;
}

/* Bouton Sponsors indépendant et doré */

html body header.site-header-v4
.header-actions-v4 a.header-sponsor-v4 {
    position: relative !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;

    width: auto !important;
    min-width: 142px !important;
    max-width: none !important;
    height: 54px !important;
    min-height: 54px !important;

    padding: 0 24px !important;
    margin: 0 !important;
    overflow: hidden !important;

    border: 1px solid rgba(255, 226, 162, .88) !important;
    border-radius: 999px !important;

    background:
        linear-gradient(
            115deg,
            #8f5d19 0%,
            #c89843 22%,
            #f3d994 48%,
            #fff0bd 58%,
            #d0a04d 76%,
            #8d5b18 100%
        ) !important;

    background-size: 180% 100% !important;
    background-position: 35% 50% !important;

    color: #171006 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: .14em !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;

    box-shadow:
        0 17px 42px rgba(188, 139, 48, .32),
        0 0 25px rgba(218, 176, 92, .1),
        inset 0 1px 0 rgba(255, 255, 255, .62),
        inset 0 -1px 0 rgba(91, 54, 9, .24) !important;

    transition:
        transform .3s ease,
        filter .3s ease,
        box-shadow .3s ease,
        background-position .5s ease !important;
}

html body header.site-header-v4
.header-actions-v4 a.header-sponsor-v4::before {
    content: "" !important;
    position: absolute !important;
    top: -60% !important;
    left: -45% !important;
    width: 32% !important;
    height: 220% !important;
    display: block !important;
    opacity: .7 !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .74),
            transparent
        ) !important;

    transform: rotate(18deg) !important;
    transition: left .65s ease !important;
    pointer-events: none !important;
}

html body header.site-header-v4
.header-actions-v4 a.header-sponsor-v4:hover::before {
    left: 120% !important;
}

html body header.site-header-v4
.header-actions-v4 a.header-sponsor-v4:hover,
html body header.site-header-v4
.header-actions-v4 a.header-sponsor-v4:focus-visible {
    color: #120c04 !important;
    filter: brightness(1.08) saturate(1.05) !important;
    transform: translateY(-3px) !important;
    background-position: 80% 50% !important;

    box-shadow:
        0 23px 58px rgba(188, 139, 48, .44),
        0 0 34px rgba(225, 184, 98, .18),
        inset 0 1px 0 rgba(255, 255, 255, .72) !important;

    outline: none !important;
}

html body header.site-header-v4
.header-actions-v4 a.header-sponsor-v4 span {
    position: relative !important;
    z-index: 2 !important;
    display: inline-block !important;
    color: inherit !important;
}

html body header.site-header-v4
.header-actions-v4 a.header-sponsor-v4 span:last-child {
    font-size: 16px !important;
    letter-spacing: 0 !important;
}

/* Empêcher toute fusion visuelle */

html body header.site-header-v4
.header-actions-v4 a.header-lang-v4 +
a.header-sponsor-v4 {
    margin-left: 0 !important;
}

/* Ajustement écrans intermédiaires */

@media (max-width: 1360px) and (min-width: 1181px) {
    html body header.site-header-v4 .header-actions-v4 {
        gap: 10px !important;
    }

    html body header.site-header-v4
    .header-actions-v4 a.header-lang-v4 {
        flex-basis: 46px !important;
        width: 46px !important;
        min-width: 46px !important;
        max-width: 46px !important;
        height: 46px !important;
        min-height: 46px !important;
    }

    html body header.site-header-v4
    .header-actions-v4 a.header-sponsor-v4 {
        min-width: 124px !important;
        height: 46px !important;
        min-height: 46px !important;
        padding: 0 17px !important;
        font-size: 10px !important;
    }
}

/* Sur mobile, les deux boutons desktop restent masqués */

@media (max-width: 1180px) {
    html body header.site-header-v4
    .header-actions-v4 a.header-lang-v4,
    html body header.site-header-v4
    .header-actions-v4 a.header-sponsor-v4 {
        display: none !important;
    }
}

/* ==========================================================
   HEADER V4 — SPONSORS LUXURY SIGNATURE
   ========================================================== */

html body header.site-header-v4
.header-actions-v4 > a.header-sponsor-v4 {
    position: relative !important;
    isolation: isolate !important;
    overflow: hidden !important;

    min-width: 154px !important;
    min-height: 54px !important;
    padding: 0 28px !important;

    border: 1px solid rgba(255, 226, 157, .95) !important;
    border-radius: 999px !important;

    background:
        linear-gradient(
            115deg,
            #5f3c0f 0%,
            #a87528 18%,
            #d8b35f 38%,
            #f6df9e 50%,
            #fff3c2 58%,
            #c8943c 76%,
            #684313 100%
        ) !important;

    background-size: 220% 100% !important;
    background-position: 26% 50% !important;

    color: #160f05 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;

    box-shadow:
        0 18px 44px rgba(168, 116, 32, .34),
        0 0 28px rgba(232, 193, 108, .12),
        inset 0 1px 0 rgba(255, 255, 255, .78),
        inset 0 -1px 0 rgba(82, 49, 7, .34) !important;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, .25) !important;

    transition:
        transform .35s ease,
        filter .35s ease,
        box-shadow .35s ease,
        background-position .7s ease !important;
}

html body header.site-header-v4
.header-actions-v4 > a.header-sponsor-v4::before {
    content: "" !important;
    position: absolute !important;
    z-index: 0 !important;
    top: -70% !important;
    left: -55% !important;
    width: 34% !important;
    height: 240% !important;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, .9),
            transparent
        ) !important;

    transform: rotate(19deg) !important;
    opacity: .75 !important;
    pointer-events: none !important;

    transition:
        left .75s cubic-bezier(.2,.7,.2,1) !important;
}

html body header.site-header-v4
.header-actions-v4 > a.header-sponsor-v4::after {
    content: "" !important;
    position: absolute !important;
    z-index: 0 !important;
    inset: 3px !important;

    border: 1px solid rgba(255, 248, 219, .28) !important;
    border-radius: 999px !important;

    box-shadow:
        inset 0 0 18px rgba(255, 244, 210, .16) !important;

    pointer-events: none !important;
}

html body header.site-header-v4
.header-actions-v4 > a.header-sponsor-v4:hover,
html body header.site-header-v4
.header-actions-v4 > a.header-sponsor-v4:focus-visible {
    transform: translateY(-3px) scale(1.015) !important;
    filter: brightness(1.08) saturate(1.06) !important;
    background-position: 82% 50% !important;

    box-shadow:
        0 24px 64px rgba(173, 122, 36, .48),
        0 0 38px rgba(238, 201, 116, .2),
        inset 0 1px 0 rgba(255, 255, 255, .86),
        inset 0 -1px 0 rgba(82, 49, 7, .28) !important;

    outline: none !important;
}

html body header.site-header-v4
.header-actions-v4 > a.header-sponsor-v4:hover::before,
html body header.site-header-v4
.header-actions-v4 > a.header-sponsor-v4:focus-visible::before {
    left: 125% !important;
}

html body header.site-header-v4
.header-actions-v4 > a.header-sponsor-v4 span {
    position: relative !important;
    z-index: 2 !important;
}

html body header.site-header-v4
.header-actions-v4 > a.header-sponsor-v4 span:first-child {
    color: #1b1206 !important;
}

html body header.site-header-v4
.header-actions-v4 > a.header-sponsor-v4 span:last-child {
    color: #4f310d !important;
    font-size: 15px !important;
}
