@charset "utf-8";

#header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(247,242,231,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--hairline);
    transition: box-shadow .3s;
}

#header.scrolled{
    box-shadow: 0 6px 24px rgba(43,42,36,.08);
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 126px;
}

.nav .logo img{
    height: 94px;
    width: auto;
}

.nav .logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.logo_descriptor{
    max-width: 250px;
    font-size: 8px;
    font-weight: 500;
    letter-spacing: .16em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    color: var(--olive_deep);
}

.main_menu{
    display: flex;
    align-items: center;
    gap: 24px;
}

.main_menu a{
    padding-bottom: 6px;
    border-bottom: 1.5px solid transparent;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    transition: border-color .3s, color .3s;
}

.main_menu a:hover,
.main_menu a.active{
    border-color: var(--olive);
    color: var(--olive_deep);
}

.language_switch{
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    border: 1px solid var(--hairline);
    border-radius: 999px;
    background: rgba(255,255,255,.34);
}

.main_menu .language_switch a{
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 43px;
    padding: 5px 7px;
    border: 0;
    border-radius: 999px;
    font-size: 10px;
    letter-spacing: .08em;
    line-height: 1;
    opacity: .58;
    transition: background .2s, color .2s, opacity .2s;
}

.main_menu .language_switch a:hover{
    border-color: transparent;
    opacity: 1;
}

.main_menu .language_switch a.active{
    border-color: transparent;
    background: var(--olive_deep);
    color: var(--cream);
    opacity: 1;
}

.language_flag{
    display: block;
    width: 20px;
    height: 13px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(43,42,36,.15);
    flex: none;
}

.language_flag svg{
    display: block;
    width: 100%;
    height: 100%;
}

.language_code{
    line-height: 1;
}

.nav_cta{
    padding: 9px 22px 8px;
    border: 1.5px solid var(--ink);
    border-radius: 40px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    transition: background .3s, color .3s;
    text-align: center;
}

.nav_cta span{
    display: block;
    margin-top: 2px;
    font-size: 8px;
    letter-spacing: .15em;
}

.nav_cta:hover{
    background: var(--ink);
    color: var(--cream);
}

.site_footer{
    padding-top: 80px;
    background: linear-gradient(160deg, #2e2d25 0%, #262520 100%);
    color: var(--cream_text);
}

.footer_grid{
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.3fr .6fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer_brand img{
    width: 190px;
}

.footer_brand .tag{
    margin-top: 26px;
    font-family: var(--font_serif);
    font-size: 22px;
    font-style: italic;
    color: rgba(245,239,224,.75);
}

.footer_col h4{
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .26em;
    text-transform: uppercase;
    color: #b7b391;
}

.footer_col p{
    margin-bottom: 12px;
}

.footer_col a,
.footer_col p{
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .06em;
    color: rgba(245,239,224,.82);
}

.footer_col a:hover{
    color: #fff;
}

.footer_social .social_link{
    display: inline-block;
    min-width: 148px;
    padding: 11px 18px;
    border: 1px solid rgba(183,179,145,.46);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .22em;
    text-align: center;
    text-transform: uppercase;
    color: var(--cream_text);
    background: rgba(245,239,224,.05);
}

.footer_social .social_link:hover{
    background: rgba(245,239,224,.12);
    border-color: rgba(245,239,224,.68);
}

.footer_bottom{
    border-top: 1px solid rgba(245,239,224,.18);
}

.footer_bottom .inner{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
}

.footer_bottom p{
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(245,239,224,.45);
}

.footer_legal{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.footer_legal p{
    text-align: right;
    text-transform: none;
    letter-spacing: .08em;
    color: rgba(245,239,224,.62);
}

.footer_legal .credit{
    color: rgba(245,239,224,.7);
}

.footer_legal a{
    text-decoration: underline;
    text-decoration-color: rgba(245,239,224,.28);
    text-underline-offset: 3px;
    transition: color .2s ease, text-decoration-color .2s ease;
}

.footer_legal a:hover{
    color: #fff;
    text-decoration-color: currentColor;
}
