:root {
    --primary: #7B4EA8;
    --primary-dark: #5C3880;
    --primary-light: #9B70C5;
    --secondary: #1A1A2E;
    --accent: #E8AA14;
    --text: #1A1A2E;
    --text-light: #6B7280;
    --background: #FAFAF8;
    --surface: #FFFFFF;
}

/* === SECTION: drum_hero_rhythm === */
.section-drum-hero-rhythm {
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--secondary) 0%, #2D2D4A 100%);
    color: #fff;
    overflow: hidden;
}
.section-drum-hero-rhythm .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.section-drum-hero-rhythm .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.12);
    color: var(--primary-light);
    padding: .4rem 1rem;
    border-radius: 2rem;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}
.section-drum-hero-rhythm h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: #fff;
}
.section-drum-hero-rhythm h1 em {
    font-style: normal;
    color: var(--primary-light);
}
.section-drum-hero-rhythm .hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
    margin-bottom: 2rem;
}
.section-drum-hero-rhythm .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.section-drum-hero-rhythm .btn-primary {
    background: var(--primary);
    color: #fff;
    padding: .85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background .2s;
}
.section-drum-hero-rhythm .btn-primary:hover { background: var(--primary-dark); }
.section-drum-hero-rhythm .btn-secondary {
    background: transparent;
    color: #fff;
    padding: .85rem 1.8rem;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,.3);
    text-decoration: none;
    font-weight: 600;
    transition: border-color .2s;
}
.section-drum-hero-rhythm .btn-secondary:hover { border-color: #fff; }
.section-drum-hero-rhythm .hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.section-drum-hero-rhythm .hero-image img {
    width: 100%;
    height: auto;
    display: block;
}
/* Pulsation decorative */
.section-drum-hero-rhythm .hero-image::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: var(--primary);
    border-radius: 50%;
    opacity: .15;
    animation: pulse-beat 2s ease-in-out infinite;
}
@keyframes pulse-beat {
    0%, 100% { transform: scale(1); opacity: .15; }
    50% { transform: scale(1.3); opacity: .08; }
}
.section-drum-hero-rhythm .hero-image { position: relative; }

@media (max-width: 768px) {
    .section-drum-hero-rhythm .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .section-drum-hero-rhythm .hero-buttons { justify-content: center; }
    .section-drum-hero-rhythm .hero-image { order: -1; }
}

/* === SECTION: editorial_seo === */
.section-editorial-seo {
    padding: 4rem 0;
    background: var(--surface);
}
.section-editorial-seo .container {
    max-width: 740px;
    margin: 0 auto;
}
.section-editorial-seo p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.section-editorial-seo p:last-child {
    margin-bottom: 0;
}
.section-editorial-seo a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.section-editorial-seo a:hover {
    color: var(--primary-dark);
}

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

/* === SECTION: city_avignon_band === */
.section-city-avignon-band {
    padding: 5rem 0;
    background: var(--surface);
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.section-city-avignon-band .container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.section-city-avignon-band h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}
.section-city-avignon-band > .container > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.section-city-avignon-band .highlights {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}
.section-city-avignon-band .highlights li {
    padding: 1rem 0 1rem 2.5rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.5;
}
.section-city-avignon-band .highlights li::before {
    content: '♪';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.3rem;
    top: 1rem;
}
.section-city-avignon-band .highlights li:last-child { border-bottom: none; }

/* === SECTION: articles_stacked_cards === */
.section-articles-stacked-cards {
    padding: 5rem 0;
    background: var(--background);
}
.section-articles-stacked-cards .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-articles-stacked-cards .section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: .5rem;
}
.section-articles-stacked-cards .section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}
.section-articles-stacked-cards .articles-stack {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}
.section-articles-stacked-cards .article-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--surface);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #eee;
    text-decoration: none;
    color: var(--text);
    transition: transform .2s, box-shadow .2s;
}
.section-articles-stacked-cards .article-card:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.section-articles-stacked-cards .article-card .article-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-light);
    opacity: .4;
    min-width: 3rem;
    text-align: center;
}
.section-articles-stacked-cards .article-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .3rem;
}
.section-articles-stacked-cards .article-card .article-excerpt {
    color: var(--text-light);
    font-size: .9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .section-articles-stacked-cards .article-card { flex-direction: column; text-align: center; }
    .section-articles-stacked-cards .article-card .article-num { font-size: 1.5rem; }
}

/* === SECTION: contact_cta_warm === */
.section-contact-cta-warm {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    text-align: center;
}
.section-contact-cta-warm h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}
.section-contact-cta-warm p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,.9);
}
.section-contact-cta-warm .btn-cta {
    display: inline-block;
    background: #fff;
    color: var(--primary-dark);
    padding: .9rem 2.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform .2s, box-shadow .2s;
}
.section-contact-cta-warm .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
