/* I18N Layout Fix */

.site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:96px;
    z-index:1000;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 5vw;
    box-sizing:border-box;
    background:rgba(5,5,5,.72);
    backdrop-filter:blur(22px);
    border-bottom:1px solid rgba(247,242,234,.10);
}

.site-header .brand{
    text-decoration:none;
    color:#F7F2EA;
    display:flex;
    flex-direction:column;
    line-height:1;
}

.site-header .brand span{
    font-family:"Cormorant Garamond", Georgia, serif;
    font-size:42px;
    letter-spacing:-.04em;
}

.site-header .brand small{
    margin-top:8px;
    color:#C7A45D;
    font-size:11px;
    letter-spacing:.34em;
    text-transform:uppercase;
}

.site-header nav{
    display:flex;
    align-items:center;
    gap:34px;
    white-space:nowrap;
}

.site-header nav a{
    color:rgba(247,242,234,.78);
    text-decoration:none;
    font-size:15px;
}

.site-header nav a.lang{
    width:58px;
    height:58px;
    border:1px solid rgba(247,242,234,.20);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Road restore */
.road-usa{
    min-height:100vh;
    padding:150px 5vw 120px;
    box-sizing:border-box;
    background:#050505;
    color:#F7F2EA;
}

.road-inner{
    max-width:1320px;
    margin:0 auto;
}

.road-steps{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.road-step{
    padding:34px;
    border:1px solid rgba(247,242,234,.12);
    background:rgba(247,242,234,.035);
    border-radius:22px;
}

.road-step span{
    display:block;
    color:#C7A45D;
    letter-spacing:.24em;
    margin-bottom:18px;
}

.road-step strong{
    display:block;
    font-size:22px;
    margin-bottom:12px;
}

.road-step p{
    color:rgba(247,242,234,.68);
    line-height:1.75;
}

/* Responsive */
@media(max-width:1050px){
    .site-header{
        height:auto;
        min-height:86px;
        padding:18px 22px;
        align-items:flex-start;
    }

    .site-header nav{
        gap:16px;
        overflow-x:auto;
        max-width:68vw;
        padding-bottom:8px;
    }

    .road-steps{
        grid-template-columns:1fr;
    }
}
