  /* ── HERO ── */
  .hero {
    background: var(--violet);
    padding: 4rem 2rem 4.5rem;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    position: relative; overflow: hidden;
    min-height: 480px; justify-content: center;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg,  transparent, transparent 47px, rgba(251,238,9,0.05) 48px),
      repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(251,238,9,0.05) 48px);
    pointer-events: none;
  }
  .hero-eyebrow {
    position: relative; z-index: 1;
    font-size: 0.62rem; font-weight: 700; letter-spacing: 0.28em;
    text-transform: uppercase; color: var(--jaune); margin-bottom: 1rem;
  }
  .hero-h1 {
    position: relative; z-index: 1;
    font-size: clamp(3.2rem, 10vw, 6rem); font-weight: 900;
    line-height: 0.92; letter-spacing: -0.03em; color: var(--blanc);
  }
  .hero-h1 span { display: block; color: var(--jaune); }
  .hero-sub {
    position: relative; z-index: 1;
    margin-top: 1rem; font-size: 0.72rem; font-weight: 400;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--blanc); opacity: 0.85;
  }
  .hero-dates {
    position: relative; z-index: 1;
    margin-top: 2rem; display: flex; border: 2px solid var(--jaune);
  }
  .hero-date {
    padding: 0.8rem 1.5rem; text-align: center;
    border-right: 1px solid rgba(251,238,9,0.35);
  }
  .hero-date:last-child { border-right: none; }
  .hd-jour { display: block; font-size: 0.5rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--jaune); margin-bottom: 3px; }
  .hd-num  { display: block; font-size: 2rem; font-weight: 900; line-height: 1; color: var(--blanc); }
  .hd-mois { display: block; font-size: 0.5rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blanc); margin-top: 3px; }
  .hero-cta {
    position: relative; z-index: 1;
    margin-top: 2.25rem; display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
  }
  .btn-primary {
    display: inline-block; padding: 0.8rem 2rem;
    background: var(--jaune); color: var(--noir);
    font-size: 0.65rem; font-weight: 900; letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none; transition: background 0.15s, transform 0.1s;
  }
  .btn-primary:hover { background: #ffe800; transform: translateY(-1px); }
  .btn-outline {
    display: inline-block; padding: 0.8rem 2rem;
    background: transparent; color: var(--blanc);
    border: 2px solid rgba(255,255,255,0.4);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    text-decoration: none; transition: border-color 0.15s, color 0.15s;
  }
  .btn-outline:hover { border-color: var(--blanc); color: var(--blanc); }
 
  /* ── SECTIONS COMMUNES ── */
  .section { padding: 4rem 2rem; }
  .section-inner { max-width: 1060px; margin: 0 auto; }
  .section-header {
    display: flex; align-items: baseline; gap: 1rem;
    border-bottom: 2px solid var(--noir);
    padding-bottom: 0.7rem; margin-bottom: 2.5rem;
    justify-content: space-between;
  }
  .section-header h2 {
    font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700;
    letter-spacing: -0.02em; color: var(--noir);
  }
  .section-header .label {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--violet);
  }
  .section-link {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--violet); text-decoration: none;
    border-bottom: 1px solid var(--violet); padding-bottom: 1px;
    transition: opacity 0.15s;
  }
  .section-link:hover { opacity: 0.65; }
 
  /* ── ARTISTES GRID ── */
  .artistes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1px;
    background: var(--bord);
    border: 1px solid var(--bord);
  }
  .artiste-card {
    background: var(--blanc); padding: 1.5rem;
    display: flex; flex-direction: column; gap: 0.6rem;
    transition: background 0.12s;
    text-decoration: none; color: inherit;
  }
  .artiste-card:hover { background: var(--gris); }
  .artiste-card-img {
    width: 100%; aspect-ratio: 1/1; object-fit: cover;
    background: var(--gris);
    display: block;
  }
  .artiste-card-img-placeholder {
    width: 100%; aspect-ratio: 1/1;
    background: var(--violet);
    display: flex; align-items: center; justify-content: center;
  }
  .artiste-card-img-placeholder span {
    font-size: 2rem; font-weight: 900; color: var(--jaune); letter-spacing: -0.05em;
  }
  .artiste-card h3 {
    font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; color: var(--noir);
    margin-top: 0.4rem;
  }
  .artiste-card .style {
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--violet);
  }
  .artiste-card .region {
    font-size: 0.7rem; color: #595959; margin-top: auto;
  }
 
  /* ── AGENDA ── */
  .agenda-list { display: flex; flex-direction: column; }
  .agenda-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    align-items: center; gap: 1.75rem;
    padding: 1.5rem 0; border-bottom: 1px solid var(--bord);
    text-decoration: none; color: inherit;
    transition: background 0.12s, padding 0.12s;
  }
  .agenda-item:hover {
    background: var(--gris); padding-left: 1rem; padding-right: 1rem;
    margin-left: -1rem; margin-right: -1rem;
  }
  .agenda-date { display: flex; flex-direction: column; }
  .ad-jour { font-size: 0.5rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--noir); }
  .ad-num  { font-size: 2.4rem; font-weight: 900; line-height: 1; color: var(--violet); }
  .ad-mois { font-size: 0.52rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: #595959; }
  .agenda-content h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; color: var(--noir); margin-bottom: 0.2rem; }
  .agenda-lieu { font-size: 0.75rem; font-weight: 700; color: var(--violet); letter-spacing: 0.04em; }
  .agenda-artists { font-size: 0.72rem; color: #595959; margin-top: 0.2rem; }
  .agenda-tag {
    display: inline-block; padding: 0.28rem 0.7rem;
    font-size: 0.55rem; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; white-space: nowrap; align-self: flex-start;
  }
  .tag-concert { background: var(--jaune); color: var(--noir); }
  .tag-bal     { background: var(--violet); color: var(--blanc); }
  .tag-fete    { background: var(--noir); color: var(--jaune); }
  .tag-gratuit { background: var(--gris); color: var(--noir); border: 1px solid var(--bord); }
  .agenda-item.highlight { background: var(--jaune); padding: 1.75rem 2rem; margin: 1rem -2rem; border-bottom: none; }
  .agenda-item.highlight:hover { background: #ffe800; }
  .agenda-item.highlight .ad-num { color: var(--noir); }
  .agenda-item.highlight .ad-mois { color: #3d3d3d; }
  .agenda-item.highlight h3 { font-size: 1.4rem; }
 
  /* ── BANNIÈRE ── */
  .banniere { background: var(--violet); padding: 3.5rem 2rem; text-align: center; }
  .banniere p { font-size: clamp(1rem, 2.2vw, 1.45rem); font-weight: 300; line-height: 1.7; color: var(--blanc); max-width: 700px; margin: 0 auto; }
  .banniere p strong { font-weight: 700; color: var(--jaune); }