:root {
    --primary: #DC2626;
    --primary-dark: #B91C1C;
    --primary-light: #EF4444;
    --secondary: #18181B;
    --accent: #FBBF24;
    --text: #18181B;
    --text-light: #71717A;
    --background: #FAFAFA;
    --surface: #FFFFFF;
}

/* ========================================
   SECTION: hero_fullscreen_overlay
   Hero plein ecran avec image fond + overlay
   ======================================== */
.section-hero-fullscreen-overlay {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.section-hero-fullscreen-overlay .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.section-hero-fullscreen-overlay .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-hero-fullscreen-overlay .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24,24,27,.75) 0%, rgba(24,24,27,.5) 50%, rgba(24,24,27,.85) 100%);
}
.section-hero-fullscreen-overlay .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 2rem;
}
.section-hero-fullscreen-overlay h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}
.section-hero-fullscreen-overlay h1 em {
    font-style: normal;
    color: var(--primary-light);
}
.section-hero-fullscreen-overlay .hero-text {
    font-size: 1.15rem;
    line-height: 1.75;
    color: rgba(255,255,255,.85);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.section-hero-fullscreen-overlay .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.section-hero-fullscreen-overlay .btn-primary {
    background: var(--primary);
    color: #fff;
    padding: .9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background .2s, transform .2s;
}
.section-hero-fullscreen-overlay .btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}
.section-hero-fullscreen-overlay .btn-secondary {
    background: rgba(255,255,255,.1);
    color: #fff;
    padding: .9rem 2rem;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.25);
    text-decoration: none;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: border-color .2s;
}
.section-hero-fullscreen-overlay .btn-secondary:hover { border-color: #fff; }
/* Barres d'equalizer decoratives */
.section-hero-fullscreen-overlay .eq-bars {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 1;
    opacity: .25;
}
.section-hero-fullscreen-overlay .eq-bar {
    width: 4px;
    background: var(--primary-light);
    border-radius: 2px;
    animation: eq-bounce 1.2s ease-in-out infinite;
}
.section-hero-fullscreen-overlay .eq-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.section-hero-fullscreen-overlay .eq-bar:nth-child(2) { height: 35px; animation-delay: .15s; }
.section-hero-fullscreen-overlay .eq-bar:nth-child(3) { height: 15px; animation-delay: .3s; }
.section-hero-fullscreen-overlay .eq-bar:nth-child(4) { height: 40px; animation-delay: .45s; }
.section-hero-fullscreen-overlay .eq-bar:nth-child(5) { height: 25px; animation-delay: .6s; }
.section-hero-fullscreen-overlay .eq-bar:nth-child(6) { height: 30px; animation-delay: .75s; }
.section-hero-fullscreen-overlay .eq-bar:nth-child(7) { height: 18px; animation-delay: .9s; }
@keyframes eq-bounce {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(.4); }
}

@media (max-width: 768px) {
    .section-hero-fullscreen-overlay { min-height: 80vh; }
    .section-hero-fullscreen-overlay h1 { font-size: 2rem; }
}

/* ========================================
   SECTION: parcours_apprentissage
   Timeline horizontale 3 etapes
   ======================================== */
.section-parcours-apprentissage {
    padding: 5rem 0;
    background: var(--background);
}
.section-parcours-apprentissage .section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3.5rem;
}
.section-parcours-apprentissage .timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
/* Ligne de connexion */
.section-parcours-apprentissage .timeline::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 16%;
    right: 16%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-dark));
    border-radius: 2px;
    z-index: 0;
}
.section-parcours-apprentissage .step {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}
.section-parcours-apprentissage .step-circle {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: var(--surface);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    box-shadow: 0 4px 16px rgba(220,38,38,.15);
    transition: transform .3s, box-shadow .3s;
}
.section-parcours-apprentissage .step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(220,38,38,.25);
}
.section-parcours-apprentissage .step-number {
    font-size: .75rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: .5rem;
}
.section-parcours-apprentissage .step h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .6rem;
}
.section-parcours-apprentissage .step p {
    color: var(--text-light);
    font-size: .92rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section-parcours-apprentissage .timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .section-parcours-apprentissage .timeline::before {
        display: none;
    }
}

/* ========================================
   SECTION: bienfaits_bento
   Bento grid — 2 grandes + 2 petites cards
   ======================================== */
.section-bienfaits-bento {
    padding: 5rem 0;
    background: var(--surface);
}
.section-bienfaits-bento .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-bienfaits-bento .section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}
.section-bienfaits-bento .section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}
.section-bienfaits-bento .bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}
.section-bienfaits-bento .bento-card {
    background: var(--background);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e5e5e5;
    transition: transform .2s, box-shadow .2s;
}
.section-bienfaits-bento .bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.07);
}
.section-bienfaits-bento .bento-card.large {
    grid-column: span 1;
    padding: 2.5rem;
}
.section-bienfaits-bento .bento-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}
.section-bienfaits-bento .bento-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .6rem;
}
.section-bienfaits-bento .bento-card p {
    color: var(--text-light);
    font-size: .92rem;
    line-height: 1.65;
}
.section-bienfaits-bento .bento-card.large h3 { font-size: 1.25rem; }
.section-bienfaits-bento .bento-card.large p { font-size: .95rem; }

/* Bento layout : 1er=haut-gauche, 2e=haut-droite, 3e=bas-gauche, 4e=bas-droite */
/* Les "large" ont un accent lateral */
.section-bienfaits-bento .bento-card.large {
    border-left: 4px solid var(--primary);
}

@media (max-width: 768px) {
    .section-bienfaits-bento .bento-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SECTION: bordeaux_stats_band
   Bandeau full-width image + overlay + stats
   ======================================== */
.section-bordeaux-stats-band {
    position: relative;
    padding: 5rem 0;
    color: #fff;
    overflow: hidden;
}
.section-bordeaux-stats-band .band-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.section-bordeaux-stats-band .band-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-bordeaux-stats-band .band-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24,24,27,.88) 0%, rgba(220,38,38,.6) 100%);
}
.section-bordeaux-stats-band .band-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.section-bordeaux-stats-band .band-quote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.section-bordeaux-stats-band .stats-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.section-bordeaux-stats-band .stat-item {
    text-align: center;
}
.section-bordeaux-stats-band .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: .4rem;
}
.section-bordeaux-stats-band .stat-label {
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .section-bordeaux-stats-band .stats-row { gap: 2rem; }
    .section-bordeaux-stats-band .stat-number { font-size: 2rem; }
}

/* ========================================
   SECTION: articles_magazine_grid
   1 article featured + 2 empiles
   ======================================== */
.section-articles-magazine-grid {
    padding: 5rem 0;
    background: var(--background);
}
.section-articles-magazine-grid .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-articles-magazine-grid .section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}
.section-articles-magazine-grid .section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}
.section-articles-magazine-grid .magazine-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
}
.section-articles-magazine-grid .mag-card {
    background: var(--surface);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    border: 1px solid #eee;
    transition: transform .2s, box-shadow .2s;
}
.section-articles-magazine-grid .mag-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.section-articles-magazine-grid .mag-featured {
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
}
.section-articles-magazine-grid .mag-featured .mag-image {
    height: 220px;
    overflow: hidden;
}
.section-articles-magazine-grid .mag-featured .mag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}
.section-articles-magazine-grid .mag-featured:hover .mag-image img {
    transform: scale(1.05);
}
.section-articles-magazine-grid .mag-featured .mag-body {
    padding: 1.5rem;
    flex: 1;
}
.section-articles-magazine-grid .mag-featured .mag-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: .6rem;
    line-height: 1.3;
}
.section-articles-magazine-grid .mag-featured .mag-body p {
    color: var(--text-light);
    font-size: .92rem;
    line-height: 1.6;
}
.section-articles-magazine-grid .mag-small {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
}
.section-articles-magazine-grid .mag-small .mag-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
    opacity: .3;
    min-width: 2.5rem;
    text-align: center;
}
.section-articles-magazine-grid .mag-small h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: .3rem;
    line-height: 1.3;
}
.section-articles-magazine-grid .mag-small .mag-excerpt {
    color: var(--text-light);
    font-size: .85rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-articles-magazine-grid .magazine-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .section-articles-magazine-grid .mag-featured { grid-row: auto; }
}

/* ========================================
   SECTION: faq_split
   Titre a gauche, accordion a droite
   ======================================== */
.section-faq-split {
    padding: 5rem 0;
    background: var(--surface);
}
.section-faq-split .faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 4rem;
    max-width: 950px;
    margin: 0 auto;
    align-items: start;
}
.section-faq-split .faq-intro h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}
.section-faq-split .faq-intro p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}
.section-faq-split .faq-intro::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-top: 1.5rem;
}
.section-faq-split .faq-list {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}
.section-faq-split .faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
}
.section-faq-split .faq-item[open] {
    border-color: var(--primary-light);
}
.section-faq-split .faq-item summary {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .98rem;
}
.section-faq-split .faq-item summary::-webkit-details-marker { display: none; }
.section-faq-split .faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--primary);
    transition: transform .2s;
}
.section-faq-split .faq-item[open] summary::after {
    transform: rotate(45deg);
}
.section-faq-split .faq-item .faq-answer {
    padding: 0 1.5rem 1.2rem;
    color: var(--text-light);
    font-size: .92rem;
    line-height: 1.65;
}

@media (max-width: 768px) {
    .section-faq-split .faq-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ========================================
   SECTION: cta_soundwave
   CTA sombre avec ondes SVG decoratives
   ======================================== */
.section-cta-soundwave {
    position: relative;
    padding: 5rem 0;
    background: var(--secondary);
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.section-cta-soundwave .wave-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: .06;
}
.section-cta-soundwave .cta-inner {
    position: relative;
    z-index: 1;
}
.section-cta-soundwave h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}
.section-cta-soundwave p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,.8);
}
.section-cta-soundwave .btn-cta {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: background .2s, transform .2s;
}
.section-cta-soundwave .btn-cta:hover {
    background: var(--primary-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(--primary-dark);
}

/* ========================================
   SECTION: drum_hero_bordeaux
   Hero split text + image
   ======================================== */
.section-drum-hero-bordeaux {
    padding: 4rem 0 0;
    background: var(--background);
}
.section-drum-hero-bordeaux .container {
    max-width: 1100px;
}
.section-drum-hero-bordeaux .hero-content {
    max-width: 600px;
    margin-bottom: 2.5rem;
}
.section-drum-hero-bordeaux .hero-badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: .35rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: 1.5rem;
}
.section-drum-hero-bordeaux h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.section-drum-hero-bordeaux .hero-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.section-drum-hero-bordeaux .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.section-drum-hero-bordeaux .hero-image {
    border-radius: 16px;
    overflow: hidden;
    max-height: 450px;
}
.section-drum-hero-bordeaux .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   SECTION: music_benefits_grid
   Grille de cartes avantages
   ======================================== */
.section-music-benefits-grid {
    padding: 5rem 0;
    background: var(--surface);
}
.section-music-benefits-grid .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-music-benefits-grid .section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}
.section-music-benefits-grid .section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}
.section-music-benefits-grid .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.section-music-benefits-grid .benefit-card {
    background: var(--background);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    border: 1px solid #eee;
    transition: transform .2s, box-shadow .2s;
}
.section-music-benefits-grid .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.06);
}
.section-music-benefits-grid .benefit-icon {
    font-size: 1.8rem;
    margin-bottom: .8rem;
    display: block;
}
.section-music-benefits-grid .benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}
.section-music-benefits-grid .benefit-card p {
    color: var(--text-light);
    font-size: .92rem;
    line-height: 1.6;
}

/* ========================================
   SECTION: bordeaux_music_scene
   Contenu culturel avec highlights
   ======================================== */
.section-bordeaux-music-scene {
    padding: 4rem 0;
    background: var(--background);
}
.section-bordeaux-music-scene h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}
.section-bordeaux-music-scene > .container > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
}
.section-bordeaux-music-scene .highlights {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: .8rem;
}
.section-bordeaux-music-scene .highlights li {
    padding: .8rem 1.2rem;
    background: var(--surface);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
    font-size: .95rem;
    color: var(--text);
    line-height: 1.5;
}
