.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 6%;
    color: #fff;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo img {
    max-height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a:hover {
    opacity: 0.75;
}

.nav-btn {
    border: 1px solid #fff;
    padding: 10px 18px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 18px;
}

.brand-logo img {
    max-height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.brand-divider {
    width: 2px;
    height: 58px;
    background: #b99665;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: #fff;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.brand-subtitle {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #eddac0;
    margin-top: 6px;
}