:root {
    /* Palette — réglée à l'œil sur tes maquettes, facile à nuancer */
    --creme: #fbf5e9;
    --or: #e2a72e;
    --noir: #1c1b18;
    --sable: #ebe4cf;
    --gris: #8c8678;

    /* Traits de signature */
    --ombre: 4px 4px 0 var(--noir);
    --bordure: 2px solid var(--noir);
    --rayon: 14px;

    /* Polices — système pour l'instant */
    --titre: system-ui, sans-serif;
    --corps: system-ui, -apple-system, sans-serif;
    --mono: ui-monospace, "Courier New", monospace;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    background: var(--creme);
    color: var(--noir);
    font-family: var(--corps);
    line-height: 1.55;
}

.contenu {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

h1, h2, h3 {
    font-family: var(--titre);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin: 0 0 0.6rem;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 1.6rem; }

a { color: inherit; }

/* La signature des libellés : mono, majuscule, espacé, discret */
.label {
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 0.78rem;
    color: var(--gris);
}

/* ---- Nav ---- */
nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}
nav .marque {
    font-family: var(--titre);
    font-weight: 800;
    font-size: 1.15rem;
    margin-right: auto;        /* pousse le reste à droite */
}
nav a {
    text-decoration: none;
    font-weight: 600;
}
nav a:hover { color: var(--or); }

nav a.actif {
    background: var(--noir);
    color: var(--or);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
}

hr {
    border: none;
    border-top: var(--bordure);
    margin: 0;
}

/* ---- Boutons ---- */
button, .btn {
    display: inline-block;
    font-family: var(--corps);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.6rem 1.15rem;
    border: var(--bordure);
    border-radius: var(--rayon);
    background: var(--creme);
    color: var(--noir);
    box-shadow: var(--ombre);
    cursor: pointer;
    text-decoration: none;
    transition: transform .05s ease, box-shadow .05s ease;
}
button:hover, .btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--noir);
}
button:active, .btn:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}
.btn-or { background: var(--or); }

/* ---- Cartes ---- */
.carte {
    background: var(--creme);
    border: var(--bordure);
    border-radius: var(--rayon);
    box-shadow: var(--ombre);
    padding: 1.5rem;
}

/* ---- Accueil : hero ---- */
.hero { padding: 2.5rem 0 1.5rem; }
.hero .label { color: var(--or); }
.hero-titre {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.05;
    margin: 0.4rem 0 1.2rem;
}
.hero-titre .dore {
    color: var(--or);
    font-style: italic;
}
.hero-sous-titre {
    font-size: 1.5rem;
    margin: 1.5rem 0 1.2rem;
}
.hero-texte {
    max-width: 620px;
    font-size: 1.1rem;
    color: #4a463f;
    margin-bottom: 1.8rem;
}
.hero-boutons {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

/* ---- Accueil : bandeau de stats ---- */
.stats {
    display: flex;
    flex-wrap: wrap;
    border: var(--bordure);
    border-radius: var(--rayon);
    box-shadow: var(--ombre);
    background: var(--creme);
    margin: 2rem 0;
    overflow: hidden;
}
.stat {
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1.3rem 1.5rem;
    border-right: var(--bordure);
}
.stat:last-child { border-right: none; }
.stat-nombre {
    font-family: var(--titre);
    font-weight: 800;
    font-size: 2.2rem;
    line-height: 1;
}
/* ---- Accueil : podium ---- */
.podium {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}
.podium .carte {
    flex: 1;
    text-align: center;
}
.podium-rang {
    font-family: var(--titre);
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1;
}
.podium-nom {
    font-weight: 700;
    margin: 0.4rem 0;
}
.podium-or { background: var(--or); }
