/* =====================================================
   PAGE PLAN DU SITE - ONE TILT
   ===================================================== */

/* ========== HERO ========== */
.sitemap-hero {
    background: var(--bleu-petrole);
    position: relative;
    padding: 140px 40px 50px;
    overflow: hidden;
    text-align: left;
    margin: 0;
}

.sitemap-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    left: auto;
    bottom: auto;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 214, 100, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.sitemap-hero::after {
    display: none;
}

.sitemap-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.sitemap-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blanc);
    margin-bottom: 1rem;
}

.sitemap-hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--jaune-cuivre);
    border-radius: 2px;
}

.sitemap-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--blanc);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.sitemap-hero h1 strong {
    color: var(--jaune-cuivre);
    font-weight: 800;
}

.sitemap-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

/* ========== CONTENU ========== */
.sitemap-body {
    background: var(--ivoire);
    padding: 60px 2rem 80px;
    font-family: var(--font-primary);
}

.sitemap-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.sitemap-col-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--bleu-petrole);
    margin: 0 0 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sitemap-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.sitemap-links li a {
    color: var(--anthracite);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.sitemap-links li a:hover {
    color: var(--bleu-petrole);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .sitemap-hero {
        padding: 120px 1.25rem 40px;
    }

    .sitemap-body {
        padding: 40px 1.25rem 60px;
    }

    .sitemap-grid {
        grid-template-columns: 1fr;
    }
}
