:root {
    --primary: #4A6274;
    --primary-light: #6B8A9E;
    --primary-dark: #354857;
    --secondary: #1A1A1A;
    --accent: #C5A55A;
    --accent-light: #D4BA7A;
    --bg: #F8F6F3;
    --bg-alt: #F0EDE8;
    --surface: #FFFFFF;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --text-on-dark: #F8F6F3;
    --border: #E0DCD6;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow: 0 2px 12px rgba(26, 26, 26, 0.08);
    --shadow-lg: 0 8px 32px rgba(26, 26, 26, 0.12);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

/* === HERO MÉTROPOLE === */
.hero-metropole {
    background: linear-gradient(175deg, var(--secondary) 0%, #2A2A2A 100%);
    color: var(--text-on-dark);
    padding: 6rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-metropole::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: var(--accent);
    opacity: 0.5;
}

.hero-metropole::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-metropole .hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

.hero-metropole h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0 auto 1rem;
    max-width: 700px;
    line-height: 1.15;
}

.hero-metropole .hero-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 0 auto 1.5rem;
}

.hero-metropole .hero-subtitle {
    font-size: 1.1rem;
    color: rgba(248, 246, 243, 0.75);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-metropole .hero-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: var(--accent);
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.3s, transform 0.2s;
}

.hero-metropole .hero-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* === AVANTAGES PARIS === */
.avantages-paris {
    padding: 4rem 2rem;
    background: var(--bg);
}

.avantages-paris .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary);
}

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

.avantage-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.avantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.avantage-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.12;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    line-height: 1;
}

.avantage-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.avantage-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .avantages-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* === ARTICLES KIOSQUE === */
.articles-kiosque {
    padding: 4rem 2rem;
    background: var(--bg-alt);
}

.articles-kiosque .section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary);
}

.kiosque-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.kiosque-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--surface);
    text-decoration: none;
    color: var(--text);
    transition: background 0.2s;
}

.kiosque-item:hover {
    background: var(--bg);
}

.kiosque-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.35;
    min-width: 40px;
    text-align: center;
}

.kiosque-body h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.35rem;
}

.kiosque-body p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.kiosque-arrow {
    margin-left: auto;
    font-size: 1.2rem;
    color: var(--accent);
    transition: transform 0.2s;
}

.kiosque-item:hover .kiosque-arrow {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .kiosque-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .kiosque-arrow {
        display: none;
    }
}

/* === CTA LUMIÈRE === */
.cta-lumiere {
    padding: 4rem 2rem;
    background: var(--secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-lumiere::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.08) 0%, transparent 70%);
}

.cta-lumiere-inner {
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.cta-lumiere h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-on-dark);
    margin-bottom: 1rem;
}

.cta-lumiere p {
    color: rgba(248, 246, 243, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-lumiere .cta-btn {
    display: inline-block;
    padding: 0.85rem 2.5rem;
    background: var(--accent);
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: background 0.3s, transform 0.2s;
}

.cta-lumiere .cta-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

/* === EDITORIAL SEO LINKS === */
.section-editorial-seo a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.section-editorial-seo a:hover {
    color: var(--accent);
}
