.site-header{
    position:fixed;
    top:0;
    left:0;
    z-index:80;
    width:100%;
    height:88px;
    padding:0 5vw;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:linear-gradient(to bottom,rgba(0,0,0,.72),rgba(0,0,0,0));
    backdrop-filter:blur(12px);
    transition:.4s ease;
}

.site-header.scrolled{
    height:74px;
    background:rgba(5,5,5,.88);
    border-bottom:1px solid var(--line);
}

.brand{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.brand span{
    font-family:var(--display);
    font-size:34px;
    font-weight:400;
    letter-spacing:-.04em;
}

.brand small{
    margin-top:4px;
    color:var(--gold-soft);
    text-transform:uppercase;
    letter-spacing:.34em;
    font-size:9px;
}

.main-nav{
    display:flex;
    gap:30px;
}

.main-nav a{
    font-size:13px;
    color:rgba(247,242,234,.72);
    transition:.3s;
}

.main-nav a:hover{
    color:var(--gold-soft);
}

.lang{
    border:1px solid rgba(247,242,234,.22);
    border-radius:999px;
    padding:10px 15px;
    font-size:12px;
    color:var(--ivory);
}

@media(max-width:900px){
    .main-nav{display:none}
}

/* ==========================================================
   HEADER · Logo premium ivory/gold
========================================================== */

.brand,
.brand:link,
.brand:visited,
.brand:hover,
.brand:active{
    color:#F8F2E8 !important;
    text-decoration:none !important;
}

.brand span,
.brand small{
    color:#F8F2E8 !important;
    text-decoration:none !important;
}

.brand small{
    color:#C8A75A !important;
    letter-spacing:.28em !important;
}


/* FORCE FIX · Logo header jamais mauve */

body header a.brand,
body header a.brand:link,
body header a.brand:visited,
body header a.brand:hover,
body header a.brand:active,
body .site-header a.brand,
body .site-header a.brand:link,
body .site-header a.brand:visited,
body .site-header a.brand:hover,
body .site-header a.brand:active{
    color:#F8F2E8 !important;
    text-decoration:none !important;
}

body header a.brand span,
body header a.brand span:link,
body header a.brand span:visited,
body header a.brand span:hover,
body header a.brand span:active{
    color:#F8F2E8 !important;
    text-decoration:none !important;
}

body header a.brand small,
body header a.brand small:link,
body header a.brand small:visited,
body header a.brand small:hover,
body header a.brand small:active{
    color:#C8A75A !important;
    text-decoration:none !important;
}

