/* ==========================================================================
   INSTITUTIONAL PAGES - DESIGN SYSTEM (Editorial & Trust)
   Respect du socle visuel : Sobriété, Typographie élégante, Espacement généreux
   ========================================================================== */

:root {
    --ebony: #12100e;
    --gold: #EAC68E;
    --ivory: #e8dcc8;
    --background: #12100e;
}

body {
    background: var(--background);
    color: var(--ivory);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    font-weight: 300;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main.institutional-container {
    flex: 1;
    /* Pousse le footer en bas */
}

/* Header cohérent (Identique à PDP/PLP) */
/* Header cohérent (Identique à PDP/PLP) */
#top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 100;
    transition: all 0.3s ease;

    /* DESKTOP : Noir profond + Bordure dorée (Harmonie footer) */
    background: #040303;
    border-bottom: 1px solid rgba(212, 165, 116, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

body.has-announcement-bar #top-nav {
    top: 32px;
}

/* MOBILE : Dégradé pour adoucir le contraste */
@media (max-width: 768px) {
    #top-nav {
        top: 32px !important;
        background: linear-gradient(to bottom, rgba(10, 9, 8, 1) 0%, rgba(10, 9, 8, 0.9) 80%, rgba(10, 9, 8, 0) 100%);
        border-bottom: none;
    }
}

.institutional-container {
    max-width: 800px;
    margin: 160px auto 100px;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.editorial-header {
    text-align: center;
    margin-bottom: 80px;
}

.editorial-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: 0.05em;
}

.editorial-header .subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--gold);
}

.content-section {
    margin-bottom: 64px;
}

.content-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 400;
    margin: 0 0 24px 0;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-section h2::after {
    content: '';
    height: 1px;
    flex-grow: 1;
    background: rgba(234, 198, 142, 0.2);
}

.content-section p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 24px;
}

.content-section ul {
    list-style: none;
    padding: 0;
}

.content-section li {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.content-section li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* LIENS INTERACTIFS */
.content-section a {
    color: #b0b0b0;
    /* Gris lisible sur fond sombre */
    text-decoration: underline;
    text-decoration-color: rgba(176, 176, 176, 0.4);
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.content-section a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

/* Tableau de tailles */
.size-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 14px;
}

.size-table th,
.size-table td {
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.size-table th {
    background: rgba(234, 198, 142, 0.05);
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
}

.size-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 640px) {
    .editorial-header h1 {
        font-size: 32px;
    }

    .institutional-container {
        margin-top: 120px;
    }
}

/* BLOC HÉBERGEUR OVH - PROPRE & DISCRET */
.hosting-provider {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-top: 12px;
    padding-left: 16px;
    border-left: 2px solid rgba(234, 198, 142, 0.2);
    /* Ligne dorée fine */
}

.hosting-provider strong {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.1em;
}

.hosting-provider .provider-name {
    color: #ccc;
    font-weight: 500;
}