:root {
    --orange: #F5A623;
    --cream: #FFF8EE;
    --brown: #1A0A00;
    --pale: #FFF0D6;
    --dark-orange: #854F0B;
    --orange-mid: #E8900A;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { background: var(--cream); color: var(--brown); font-family: 'Josefin Sans', sans-serif; overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 68px;
    background: var(--cream); border-bottom: 2px solid var(--orange);
  }
  .nav-logo { font-family: 'Permanent Marker', cursive; font-size: 1.4rem; color: var(--brown); text-decoration: none; }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover, .nav-links a.active { color: var(--orange); }

  /* HERO */
  .hero {
    margin-top: 68px; min-height: calc(100vh - 68px);
    background: var(--orange);
    display: grid; grid-template-columns: 1fr 400px;
    align-items: center; padding: 80px 48px 80px 64px;
    position: relative; overflow: hidden; gap: 40px;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 24px, rgba(255,255,255,0.04) 24px, rgba(255,255,255,0.04) 48px);
  }
  .hero-content { position: relative; z-index: 2; }
  .hero-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brown); opacity: 0.6; margin-bottom: 16px; }
  .hero-name { font-family: 'Bebas Neue', cursive; font-size: clamp(3rem, 8vw, 7rem); line-height: 0.88; letter-spacing: 0.02em; color: var(--cream); }
  .hero-name .hollow { -webkit-text-stroke: 3px var(--cream); color: transparent; display: block; }
  .hero-tagline { font-family: 'Playfair Display', serif; font-style: italic; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--brown); margin-top: 28px; opacity: 0.85; line-height: 1.4; }
  .hero-ctas { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
  .btn-primary { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: var(--brown); color: var(--cream); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; border: 2px solid var(--brown); border-radius: 2px; box-shadow: 5px 5px 0 rgba(0,0,0,0.25); transition: transform 0.15s, box-shadow 0.15s; font-family: 'Josefin Sans', sans-serif; white-space: nowrap; }
  .btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 rgba(0,0,0,0.25); }
  .btn-ghost { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: transparent; color: var(--brown); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; border: 2px solid var(--brown); border-radius: 2px; transition: background 0.2s, color 0.2s; font-family: 'Josefin Sans', sans-serif; white-space: nowrap; }
  .btn-ghost:hover { background: var(--brown); color: var(--cream); }

  .hero-mascotte {
    position: relative; z-index: 2;
    display: flex; align-items: flex-end; justify-content: center;
    filter: drop-shadow(8px 12px 24px rgba(26,10,0,0.25));
    animation: mascotteIn 0.8s cubic-bezier(.22,1,.36,1) 0.3s both;
  }
  @keyframes mascotteIn { from{opacity:0;transform:translateY(40px) rotate(-4deg)} to{opacity:1;transform:translateY(0) rotate(0)} }
  .hero-mascotte img { width: 100%; max-width: 360px; height: auto; }

  /* STATS */
  .stats-bar { background: var(--brown); padding: 28px 48px; display: flex; align-items: center; justify-content: space-around; gap: 16px; flex-wrap: wrap; }
  .stat { text-align: center; }
  .stat-num { font-family: 'Bebas Neue', cursive; font-size: 2.4rem; color: var(--orange); display: block; line-height: 1; }
  .stat-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,248,238,0.5); margin-top: 4px; }
  .stat-sep { width: 1px; height: 48px; background: rgba(245,166,35,0.2); }

  /* SECTIONS */
  section { padding: 96px 48px; }
  .section-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
  .section-label::after { content: ''; flex: 1; height: 1px; background: var(--orange); opacity: 0.3; }
  .section-title { font-family: 'Bebas Neue', cursive; font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: 0.03em; color: var(--brown); line-height: 1; margin-bottom: 24px; }
  .btn-solid { display: inline-flex; align-items: center; gap: 10px; padding: 15px 32px; background: var(--orange); color: var(--brown); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; border: 2px solid var(--brown); border-radius: 2px; box-shadow: 4px 4px 0 var(--brown); transition: transform 0.15s, box-shadow 0.15s; font-family: 'Josefin Sans', sans-serif; }
  .btn-solid:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--brown); }

  /* SWING TOON */
  .swing-toon-section { background: var(--pale); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 100%; }
  .swing-photo { aspect-ratio: 4/3; background: var(--brown); border-radius: 4px; overflow: hidden; border: 3px solid var(--brown); box-shadow: 10px 10px 0 var(--orange); }
  .swing-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .swing-photo .photo-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 32px; background: linear-gradient(135deg, #0d0500, var(--brown)); }
  .swing-desc { font-size: 0.95rem; line-height: 1.75; color: var(--dark-orange); margin-bottom: 28px; }
  .swing-desc em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--brown); }
  .formation-list { list-style: none; margin-bottom: 32px; }
  .formation-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid rgba(245,166,35,0.2); font-size: 0.84rem; color: var(--dark-orange); }
  .formation-list li .instr { font-family: 'Bebas Neue', cursive; font-size: 1rem; color: var(--orange); min-width: 130px; letter-spacing: 0.05em; }

  /* CONCERTS */
  .concerts-section { background: var(--cream); max-width: 1100px; margin: 0 auto; }
  .concerts-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .concert-item { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 24px; padding: 20px 28px; background: var(--pale); border: 2px solid rgba(245,166,35,0.3); border-radius: 4px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
  .concert-item.featured { background: var(--orange); border-color: var(--brown); }
  .concert-item:hover { border-color: var(--orange); transform: translate(-3px,-3px); box-shadow: 6px 6px 0 var(--orange); }
  .concert-item.featured:hover { box-shadow: 6px 6px 0 var(--brown); }
  .c-day { font-family:'Bebas Neue',cursive; font-size:2rem; color:var(--orange); text-align:center; line-height:1; }
  .concert-item.featured .c-day { color: var(--brown); }
  .c-dw { font-size:0.6rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase; color:var(--dark-orange); display:block; }
  .concert-item.featured .c-dw { color:var(--brown); opacity:0.7; }
  .c-venue { font-family:'Bebas Neue',cursive; font-size:1.2rem; color:var(--brown); letter-spacing:0.03em; }
  .c-city { font-size:0.78rem; color:var(--dark-orange); margin-top:2px; }
  .concert-item.featured .c-city { color:var(--brown); opacity:0.8; }
  .btn-ticket { display:inline-flex; align-items:center; gap:8px; padding:10px 20px; background:var(--orange); color:var(--brown); font-size:0.7rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase; text-decoration:none; border:2px solid var(--brown); border-radius:2px; box-shadow:3px 3px 0 var(--brown); transition:transform 0.15s,box-shadow 0.15s; font-family:'Josefin Sans',sans-serif; white-space:nowrap; }
  .btn-ticket:hover { transform:translate(-2px,-2px); box-shadow:5px 5px 0 var(--brown); }
  .concert-item.featured .btn-ticket { background:var(--brown); color:var(--orange); }

  /* BIO */
  .bio-section { background: var(--brown); display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }
  .bio-photo { aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; border: 3px solid var(--orange); box-shadow: -10px 10px 0 var(--orange); }
  .bio-photo img { width:100%; height:100%; object-fit:cover; display:block; }
  .bio-photo .photo-ph { width:100%; height:100%; display:flex; flex-direction:column; align-items:center; justify-content:center; background:linear-gradient(160deg,#2a1000,#0d0500); gap:12px; padding:32px; }
  .bio-content .section-label { color: var(--orange); }
  .bio-content .section-label::after { background: var(--orange); opacity: 0.2; }
  .bio-content .section-title { color: var(--cream); }
  .bio-text { font-size:0.95rem; line-height:1.8; color:rgba(255,248,238,0.7); margin-bottom:32px; }
  .bio-text em { font-family:'Playfair Display',serif; font-style:italic; color:var(--orange); }
  .scenes-list { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px; }
  .scene-tag { padding:6px 14px; background:rgba(245,166,35,0.12); border:1px solid rgba(245,166,35,0.3); border-radius:2px; font-size:0.72rem; font-weight:600; letter-spacing:0.1em; color:var(--orange); }
  .btn-outline-light { display:inline-flex; align-items:center; gap:10px; padding:14px 32px; background:transparent; color:var(--orange); font-size:0.75rem; font-weight:600; letter-spacing:0.18em; text-transform:uppercase; text-decoration:none; border:2px solid var(--orange); border-radius:2px; transition:background 0.2s,color 0.2s; font-family:'Josefin Sans',sans-serif; }
  .btn-outline-light:hover { background:var(--orange); color:var(--brown); }

  /* BOUTIQUE */
  .boutique-section { background: var(--pale); }
  .albums-preview { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; margin-bottom:32px; }
  .album-prev { display:flex; align-items:center; gap:20px; padding:24px 28px; background:var(--cream); border:2px solid rgba(245,166,35,0.3); border-radius:4px; transition:border-color 0.2s,transform 0.2s,box-shadow 0.2s; }
  .album-prev:hover { border-color:var(--orange); transform:translate(-3px,-3px); box-shadow:6px 6px 0 var(--orange); }
  .album-thumb { width:72px; height:72px; flex-shrink:0; background:var(--brown); border-radius:2px; overflow:hidden; }
  .album-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
  .album-thumb .athumb-ph { width:100%; height:100%; background:linear-gradient(135deg,#2a1400,var(--brown)); display:flex; align-items:center; justify-content:center; }
  .album-thumb .athumb-ph span { font-family:'Bebas Neue',cursive; font-size:0.65rem; color:var(--orange); letter-spacing:0.05em; text-align:center; padding:4px; }
  .album-prev-info h4 { font-family:'Bebas Neue',cursive; font-size:1.2rem; color:var(--brown); letter-spacing:0.03em; }
  .album-prev-info p { font-size:0.75rem; color:var(--dark-orange); margin-top:2px; }
  .album-prev-price { font-family:'Bebas Neue',cursive; font-size:1.5rem; color:var(--orange); margin-left:auto; flex-shrink:0; }

  /* BOOKING */
  .booking-section { background:var(--orange); padding:80px 48px; text-align:center; position:relative; overflow:hidden; }
  .booking-section::before { content:'♪'; position:absolute; left:-20px; top:-40px; font-size:18rem; color:var(--brown); opacity:0.06; font-family:serif; line-height:1; }
  .booking-section::after { content:'♫'; position:absolute; right:40px; bottom:-60px; font-size:18rem; color:var(--brown); opacity:0.06; font-family:serif; line-height:1; }
  .booking-section h2 { font-family:'Bebas Neue',cursive; font-size:clamp(2.5rem,6vw,5rem); color:var(--brown); letter-spacing:0.04em; margin-bottom:16px; }
  .booking-section p { font-size:1rem; color:var(--brown); opacity:0.7; max-width:520px; margin:0 auto 40px; line-height:1.6; }
  .booking-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

  /* FOOTER */
  footer { background:var(--brown); padding:48px; display:flex; align-items:center; justify-content:space-between; gap:24px; }
  .footer-logo { font-family:'Permanent Marker',cursive; font-size:1.5rem; color:var(--orange); }
  .footer-links { display:flex; gap:28px; list-style:none; }
  .footer-links a { font-size:0.72rem; font-weight:600; letter-spacing:0.15em; text-transform:uppercase; color:rgba(255,248,238,0.5); text-decoration:none; transition:color 0.2s; }
  .footer-links a:hover { color:var(--orange); }
  .footer-credit { font-size:0.68rem; color:rgba(255,248,238,0.3); letter-spacing:0.1em; }

  /* ANIMATIONS */
  @keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
  .hero-label{animation:fadeUp 0.5s ease 0.1s both}
  .hero-name{animation:fadeUp 0.6s ease 0.2s both}
  .hero-tagline{animation:fadeUp 0.6s ease 0.35s both}
  .hero-ctas{animation:fadeUp 0.6s ease 0.5s both}

  /* RESPONSIVE */
  @media(max-width:900px){
    .hero{grid-template-columns:1fr;min-height:auto;padding:60px 24px 40px}
    .hero-mascotte{display:none}
    .swing-toon-section{grid-template-columns:1fr;gap:40px}
    .bio-section{grid-template-columns:1fr}
    .bio-photo{aspect-ratio:16/9;order:-1}
    .albums-preview{grid-template-columns:1fr}
  }
  @media(max-width:768px){
    nav{padding:0 20px}
    .nav-links{display:none}
    section{padding:64px 20px}
    .stats-bar{padding:24px 20px;gap:24px}
    .stat-sep{display:none}
    footer{flex-direction:column;text-align:center}
    .footer-links{flex-wrap:wrap;justify-content:center}
    .concert-item{grid-template-columns:56px 1fr}
    .btn-ticket{grid-column:2}
    .hero-ctas{flex-direction:column}
  }

/* ── BURGER MOBILE ───────────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
nav.open .nav-links {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 2px solid var(--orange);
  padding: 20px 24px;
  gap: 16px;
  z-index: 99;
}
@media(max-width:768px) {
  .nav-burger { display: flex; }
}

/* ── TITRES DE SECTION ───────────────────────────────────── */
.section-title {
  font-family: 'Bebas Neue', cursive !important;
  font-size: 2.8rem !important;
  color: #1A0A00 !important;
  line-height: 1 !important;
  margin: 0 0 16px 0 !important;
  padding: 0 !important;
  font-weight: 400 !important;
  display: block !important;
}
.revue-section .section-title {
  color: #FFF8EE !important;
}

/* ── PAGE PRESSE · SECTION BIOGRAPHIES ──────────────────── */
/* Grille bio : 2 colonnes pleine largeur */
.bio-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 32px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Cartes bio : pleine largeur dans leur colonne */
.bio-box {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Mobile : une colonne */
@media (max-width: 768px) {
  .bio-grid {
    grid-template-columns: 1fr !important;
  }
}