:root {
    --gold: #c5a059;
    --dark-gold: #8f6b1e;
    --deep-black: #0a0a0a;
    --shadow: rgba(0, 0, 0, 0.8);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    /* Effet de texture sombre et vignette */
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    box-shadow: 0 5px 20px var(--shadow);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Branding --- */
/* --- Branding --- */
.site-brand {
    display: flex;
    align-items: center; 
    gap: 20px; /* Espace entre le logo et le texte */
    flex-shrink: 0; /* Empêche le bloc de s'écraser */
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-main {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    
    /* FORCE LA LIGNE UNIQUE */
    white-space: nowrap; 
    line-height: 1.2;
}

.brand-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-gold);
    opacity: 0.8;
    margin-top: 0.2rem;
    white-space: nowrap; /* Optionnel : force aussi le nom sur une ligne */
}

/* Ajustement du logo pour qu'il soit bien proportionné au texte */
.site-logo {
    height: 65px; /* Augmenté un peu pour correspondre à la taille du texte double ligne */
    width: auto;
    display: block;
}

/* --- Navigation --- */
.site-nav a {
    font-family: 'Cinzel', serif;
    margin-left: 2.5rem;
    text-decoration: none;
    color: var(--gold);
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.5rem 0;
}

.site-nav a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

/* Soulignement ornemental */
.site-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.site-nav a:hover::after {
    width: 100%;
}

/* Bordure de finition style fer forgé/dorure */
.header-border-bottom {
    height: 4px;
    background: linear-gradient(90deg, #0a0a0a, var(--dark-gold), #0a0a0a);
    width: 100%;
    opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .site-brand {
        border-left: none;
        border-bottom: 1px solid var(--dark-gold);
        padding: 0 0 1rem 0;
    }

    .site-nav a {
        margin: 0 1rem;
        font-size: 0.8rem;
    }
}