/* Header shell */
.site-header { 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    background: #000; 
    padding: 0 var(--gutter);
    backdrop-filter: blur(5px);
    background-color: rgba(255, 255, 255, 0.7);
}

/* Navbar */
.navbar {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    height: 100px;
}

/* Brand */
.brand-logo img { 
    height: 45px; 
    display: block; 
}

/* Right links – uppercase, tight tracking like reference */
.navlinks { 
    display: flex; 
    align-items: center; 
    gap: 1rem;
}

.navlinks a {
    font-size: 12px;
    color: #000;
    display: flex;
}

.navlinks a:hover { 
    color: rgba(0, 0, 0, 0.6); 
    text-decoration: none; 
}

.navlinks p {
    color: rgba(0, 0, 0, 0.6); 
    font-size: 16px; 
    letter-spacing: -.01px; 
    line-height: 1.3em;
}