/* ============================================================
   Sticksem — Feuille de style principale
   Thème : Reggae Moderne (noir & vert)
   ============================================================ */

/* ------- Variables ------- */
:root {
  --c-bg:        #0D0D0D;
  --c-surface:   #161616;
  --c-surface-2: #1E1E1E;
  --c-border:    #2A2A2A;
  --c-green:     #2ECC71;
  --c-green-dk:  #27AE60;
  --c-gold:      #F39C12;
  --c-white:     #FFFFFF;
  --c-text:      #E0E0E0;
  --c-text-muted:#888;

  --ff-head: 'Oswald', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --radius: 8px;
  --transition: 0.3s ease;
  --shadow: 0 4px 24px rgba(0,0,0,.5);
}

/* ------- Reset de base ------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-gold); }
ul { list-style: none; }

/* ------- Conteneur ------- */
.container {
  width: min(1200px, 100% - 2rem);
  margin-inline: auto;
}

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: .04em;
}
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { margin-bottom: 1em; color: var(--c-text); }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--ff-head);
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-green);
  color: #000;
  border-color: var(--c-green);
}
.btn--primary:hover {
  background: var(--c-green-dk);
  border-color: var(--c-green-dk);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46,204,113,.35);
}
.btn--outline {
  background: transparent;
  color: var(--c-white);
  border-color: var(--c-white);
}
.btn--outline:hover {
  background: var(--c-white);
  color: #000;
}
.btn--ghost {
  background: transparent;
  color: var(--c-green);
  border-color: var(--c-green);
}
.btn--ghost:hover {
  background: var(--c-green);
  color: #000;
}
.btn--sm   { padding: .45rem 1rem; font-size: .8rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(13,13,13,.96);
  backdrop-filter: blur(12px);
  padding: .6rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-text {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-white);
  text-transform: uppercase;
}
.logo-text span, .logo:hover .logo-text { color: var(--c-green); }

.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-link {
  font-family: var(--ff-head);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--c-green);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--c-white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta {
  background: var(--c-green);
  color: #000 !important;
  padding: .4rem 1.2rem;
  border-radius: var(--radius);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--c-green-dk); color: #000 !important; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
  z-index: 1100;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--c-white);
  transition: all var(--transition);
  border-radius: 2px;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 900;
}
.nav-overlay.visible { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1F13 0%, #0D0D0D 50%, #1A1000 100%);
}
/* Halo rasta vert/jaune/rouge qui pulse / se déplace lentement */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(46,204,113,.28) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 80% 50%, rgba(243,156,18,.20) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 95%, rgba(192,57,43,.15) 0%, transparent 60%);
  animation: heroAura 20s ease-in-out infinite alternate;
}
/* Sweep diagonal multicolore qui balaye en boucle */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg,
    transparent 25%,
    rgba(46,204,113,.10) 45%,
    rgba(243,156,18,.08) 55%,
    transparent 75%);
  background-size: 200% 200%;
  animation: heroSweep 9s linear infinite;
}
@keyframes heroAura {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(-3%, 2%) scale(1.08); }
  100% { transform: translate(2%,-2%) scale(1); }
}
@keyframes heroSweep {
  0%   { background-position: -100% -100%; }
  100% { background-position: 200% 200%; }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13,13,13,.55) 100%);
}

/* Orbes verts flottants */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .6;
}
.hero-orb--1 {
  width: 280px; height: 280px;
  top: 10%; left: -80px;
  background: radial-gradient(circle, rgba(46,204,113,.5) 0%, transparent 70%);
  animation: orbFloat1 14s ease-in-out infinite;
}
.hero-orb--2 {
  width: 200px; height: 200px;
  top: 60%; right: 8%;
  background: radial-gradient(circle, rgba(243,156,18,.45) 0%, transparent 70%);
  animation: orbFloat2 18s ease-in-out infinite;
}
.hero-orb--3 {
  width: 140px; height: 140px;
  top: 30%; right: 25%;
  background: radial-gradient(circle, rgba(192,57,43,.4) 0%, transparent 70%);
  animation: orbFloat3 12s ease-in-out infinite;
}
.hero-orb--4 {
  width: 320px; height: 320px;
  bottom: -100px; left: 35%;
  background: radial-gradient(circle, rgba(46,204,113,.22) 0%, transparent 70%);
  animation: orbFloat1 22s ease-in-out infinite reverse;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(60px, -40px) scale(1.1); }
  66%      { transform: translate(-30px, 50px) scale(.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(-80px, -60px) scale(1.15); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, 70px) scale(.85); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 1.5rem 0;
  margin-left: 5vw;
}

/* Titre avec glow vert pulsé, glitch shimmer et oscillation */
.hero-title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: .95;
  margin: 0 0 1.25rem;
  position: relative;
  display: inline-block;
}
.hero-title__text {
  display: inline-block;
  background: linear-gradient(120deg, #fff 0%, var(--c-green) 35%, #F39C12 65%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroShimmer 5s linear infinite, heroSway 8s ease-in-out infinite;
  text-shadow: 0 0 60px rgba(46,204,113,.5);
  transform-origin: bottom center;
}
/* Effet d'ombre verte pulsée derrière le titre */
.hero-title::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--c-green);
  filter: blur(24px);
  opacity: .45;
  z-index: -1;
  animation: heroGlow 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes heroSway {
  0%, 100% { transform: rotate(-1deg) translateY(0); }
  50%      { transform: rotate(1deg) translateY(-4px); }
}
@keyframes heroGlow {
  0%, 100% { opacity: .35; filter: blur(20px); }
  50%      { opacity: .65; filter: blur(30px); }
}

/* Trait vert animé sous le titre */
.hero-divider {
  display: block;
  width: 90px; height: 3px;
  background: linear-gradient(90deg, var(--c-green) 0%, #F39C12 50%, #C0392B 100%);
  margin: 0 0 1.25rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.hero-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: heroDividerSlide 2.5s ease-in-out infinite;
}
@keyframes heroDividerSlide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.hero-sub {
  font-size: 1rem;
  color: var(--c-text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Vagues sonores (égaliseur) double couche */
.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 4px;
  height: 70px;
  padding: 0 1rem 1rem;
  z-index: 1;
  pointer-events: none;
}
.hero-waves span {
  display: block;
  width: 5px;
  background: linear-gradient(to top, var(--c-green) 0%, #F39C12 60%, #C0392B 100%);
  border-radius: 2px;
  animation: waveBar 1.1s ease-in-out infinite;
  transform-origin: bottom;
}
.hero-waves span:nth-child(1)  { animation-delay: 0.00s; height: 30%; }
.hero-waves span:nth-child(2)  { animation-delay: 0.08s; height: 60%; }
.hero-waves span:nth-child(3)  { animation-delay: 0.16s; height: 90%; }
.hero-waves span:nth-child(4)  { animation-delay: 0.24s; height: 50%; }
.hero-waves span:nth-child(5)  { animation-delay: 0.32s; height: 80%; }
.hero-waves span:nth-child(6)  { animation-delay: 0.40s; height: 40%; }
.hero-waves span:nth-child(7)  { animation-delay: 0.48s; height: 100%; }
.hero-waves span:nth-child(8)  { animation-delay: 0.40s; height: 65%; }
.hero-waves span:nth-child(9)  { animation-delay: 0.32s; height: 45%; }
.hero-waves span:nth-child(10) { animation-delay: 0.24s; height: 85%; }
.hero-waves span:nth-child(11) { animation-delay: 0.16s; height: 55%; }
.hero-waves span:nth-child(12) { animation-delay: 0.08s; height: 75%; }
.hero-waves span:nth-child(13) { animation-delay: 0.16s; height: 35%; }
.hero-waves span:nth-child(14) { animation-delay: 0.24s; height: 95%; }
.hero-waves span:nth-child(15) { animation-delay: 0.32s; height: 50%; }
.hero-waves span:nth-child(16) { animation-delay: 0.40s; height: 70%; }
.hero-waves span:nth-child(17) { animation-delay: 0.48s; height: 40%; }
.hero-waves span:nth-child(18) { animation-delay: 0.56s; height: 60%; }
.hero-waves--back {
  height: 90px;
  opacity: .25;
  transform: translateY(8px);
}
.hero-waves--back span {
  width: 3px;
  background: linear-gradient(to top, rgba(46,204,113,.6), transparent);
  animation-duration: 1.6s;
}
@keyframes waveBar {
  0%, 100% { transform: scaleY(.35); }
  50%      { transform: scaleY(1.25); }
}

/* Réseaux sociaux verticaux côté gauche du hero */
.hero-social {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 3;
}
.hero-social a {
  color: var(--c-text);
  opacity: .85;
  transition: color var(--transition), opacity var(--transition), transform var(--transition);
  display: inline-flex;
}
.hero-social a:hover {
  color: var(--c-green);
  opacity: 1;
  transform: translateX(4px);
}
@media (max-width: 768px) {
  /* Hero en colonne : titre + bouton, puis réseaux dessous, plus de superposition */
  .hero {
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0 6rem;
  }
  .hero-content {
    order: 1;
    margin-left: 0;
    padding: 1rem;
    width: 100%;
    max-width: 100%;
  }
  .hero-social {
    position: static;
    transform: none;
    order: 2;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0 0;
    padding: 0 1rem;
  }
  .hero-social a svg { width: 22px; height: 22px; }
  .hero-social a:hover { transform: translateY(-3px); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
.hero-scroll__line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--c-green));
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 6rem 0; }
.section--dark { background: var(--c-surface); }

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}
.section-tag {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: .5rem;
}
.section-tag--muted { color: var(--c-text-muted); }
.section-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   PAGE HERO (sous-pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--c-surface);
  overflow: hidden;
}
.page-hero--about  { background: linear-gradient(135deg, #0D1F13, #0D0D0D); }
.page-hero--music  { background: linear-gradient(135deg, #0D0D1A, #0D0D0D); }
.page-hero--gallery{ background: linear-gradient(135deg, #1A0D10, #0D0D0D); }
.page-hero--events { background: linear-gradient(135deg, #0D1A0D, #0D0D0D); }
.page-hero--news   { background: linear-gradient(135deg, #0D0F1A, #0D0D0D); }
.page-hero--contact{ background: linear-gradient(135deg, #1A1A0D, #0D0D0D); }
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--c-bg));
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero__content .section-tag { display: block; margin-bottom: .5rem; }

/* ============================================================
   MUSIQUE — Grille & liste
   ============================================================ */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.music-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.music-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,204,113,.15);
  border-color: rgba(46,204,113,.3);
}
.music-card__cover {
  position: relative;
  aspect-ratio: 1;
  background: var(--c-surface-2);
  overflow: hidden;
}
.music-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.music-card__cover-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--c-text-muted);
}
.music-card__type {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--c-green);
  color: #000;
  font-family: var(--ff-head);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 4px;
}
.music-card__info { padding: 1.25rem; }
.music-card__info h3 { font-size: 1rem; margin-bottom: .25rem; }
.music-card__date { font-size: .8rem; color: var(--c-text-muted); }
.music-card__links { display: flex; gap: .5rem; margin-top: .75rem; flex-wrap: wrap; }

/* Boutons de streaming */
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .85rem;
  border-radius: 4px;
  font-size: .75rem;
  font-family: var(--ff-head);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all var(--transition);
}
.stream-btn--yt  { background: #FF0000; color: #fff; }
.stream-btn--yt:hover  { background: #cc0000; color: #fff; }
.stream-btn--sp  { background: #1DB954; color: #000; }
.stream-btn--sp:hover  { background: #18a34a; color: #000; }
.stream-btn--dz  { background: #FF6700; color: #fff; }
.stream-btn--dz:hover  { background: #e55a00; color: #fff; }
.stream-btn--lg { padding: .5rem 1.25rem; font-size: .85rem; }

/* Discographie — grille 4 colonnes */
.discography {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.release {
  background: linear-gradient(180deg, var(--c-surface) 0%, rgba(13,13,13,.95) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: fadeUp .5s ease both;
  animation-delay: var(--delay, 0ms);
  display: flex;
  flex-direction: column;
}
.release:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(46,204,113,.15);
  border-color: rgba(46,204,113,.35);
}
.release__main { display: block; }
.release__cover-wrap {
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-surface-2);
  aspect-ratio: 1;
  margin-bottom: .85rem;
}
.release__cover-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.release:hover .release__cover-wrap img { transform: scale(1.05); }
.release__info {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.release__badge {
  background: var(--c-green); color: #000;
  font-family: var(--ff-head); font-size: .6rem;
  letter-spacing: .14em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 4px; font-weight: 700;
  align-self: flex-start;
}
.release__title {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.2;
  letter-spacing: .02em;
}
.release__date { font-size: .75rem; color: var(--c-text-muted); }
.release__desc {
  font-size: .8rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin: .15rem 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.release__links {
  display: flex; gap: .35rem; flex-wrap: wrap;
  margin-top: .6rem;
}
.release__links .stream-btn {
  font-size: .65rem;
  padding: .35rem .7rem;
  gap: .25rem;
}
.release__links .stream-btn svg { width: 12px; height: 12px; }

/* Responsive */
@media (max-width: 1100px) {
  .discography { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .discography { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 480px) {
  .discography { grid-template-columns: 1fr; }
}
/* Bouton Extrait */
.stream-btn--extrait {
  background: rgba(46,204,113,.15);
  color: var(--c-green);
  border: 1px solid var(--c-green);
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition), color var(--transition);
}
.stream-btn--extrait:hover { background: var(--c-green); color: #000; }
.stream-btn--extrait.is-active { background: var(--c-green); color: #000; }
.stream-btn--extrait.is-active svg { transform: rotate(90deg); }
.stream-btn--extrait svg { transition: transform .3s ease; }

/* Accordéon player */
.release__player {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s ease, margin-top .45s ease;
  margin-top: 0;
}
.release__player.is-open {
  grid-template-rows: 1fr;
  margin-top: 1.25rem;
}
.release__player-inner {
  overflow: hidden;
  min-height: 0;
}
.release__player-inner iframe {
  display: block !important;
  width: 100% !important;
  border: 0 !important;
  border-radius: 12px !important;
}
@media (max-width: 600px) {
  .release__main { grid-template-columns: 1fr; }
  .release__cover-wrap { max-width: 220px; margin: 0 auto; }
}

/* ============================================================
   ÉVÉNEMENTS
   ============================================================ */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition);
}
.event-row:hover, .event-row--upcoming:hover {
  border-color: rgba(46,204,113,.4);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.event-row--past { opacity: .5; }
.event-row--past:hover { opacity: .8; }
.event-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1;
}
.event-row__day {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-green);
  line-height: 1;
}
.event-row__month {
  font-family: var(--ff-head);
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--c-text-muted);
  text-transform: uppercase;
}
.event-row__year {
  font-size: .75rem;
  color: var(--c-text-muted);
}
.event-row__info h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.event-row__location {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .85rem;
  color: var(--c-text-muted);
  margin-bottom: 0 !important;
}
.event-row__desc { font-size: .85rem; color: var(--c-text-muted); margin-top: .3rem; }
.event-row__free { font-family: var(--ff-head); font-size: .8rem; color: var(--c-green); }

/* ============================================================
   GALERIE — Polaroid scatter + Lightbox
   ============================================================ */
.gallery-scatter {
  column-count: 4;
  column-gap: 2rem;
  padding: 2rem 0;
}
@media (max-width: 1100px) { .gallery-scatter { column-count: 3; } }
@media (max-width: 768px)  { .gallery-scatter { column-count: 2; column-gap: 1.25rem; } }
@media (max-width: 480px)  { .gallery-scatter { column-count: 1; } }

.gallery-polaroid {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 2rem;
  break-inside: avoid;
  cursor: pointer;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), z-index 0s linear .4s;
  animation: fadeUp .6s ease both;
  animation-delay: var(--delay, 0ms);
}
.gallery-polaroid__frame {
  background: #fafafa;
  padding: 12px 12px 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,.55), 0 2px 4px rgba(0,0,0,.4);
  position: relative;
  transition: box-shadow .3s ease;
}
.gallery-polaroid__frame img {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}
.gallery-polaroid__frame figcaption {
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  text-align: center;
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-size: 1.1rem;
  color: #333;
  padding: 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* Petite bande de scotch en haut */
.gallery-polaroid__tape {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 70px; height: 22px;
  background: rgba(255,255,180,.55);
  border: 1px solid rgba(255,255,180,.3);
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
  z-index: 2;
}

/* Rotations alternées (effet "éparpillé") */
.gallery-polaroid:nth-child(7n+1) { transform: rotate(-3deg); }
.gallery-polaroid:nth-child(7n+2) { transform: rotate(2deg); }
.gallery-polaroid:nth-child(7n+3) { transform: rotate(-1deg); }
.gallery-polaroid:nth-child(7n+4) { transform: rotate(4deg); }
.gallery-polaroid:nth-child(7n+5) { transform: rotate(-2deg); }
.gallery-polaroid:nth-child(7n+6) { transform: rotate(1deg); }
.gallery-polaroid:nth-child(7n+7) { transform: rotate(-4deg); }

/* Couleurs de scotch variées */
.gallery-polaroid:nth-child(4n+1) .gallery-polaroid__tape { background: rgba(255,255,180,.55); }
.gallery-polaroid:nth-child(4n+2) .gallery-polaroid__tape { background: rgba(46,204,113,.4); }
.gallery-polaroid:nth-child(4n+3) .gallery-polaroid__tape { background: rgba(255,200,150,.5); }
.gallery-polaroid:nth-child(4n+4) .gallery-polaroid__tape { background: rgba(220,220,220,.5); }

/* Hover : se redresse, grandit, passe devant */
.gallery-polaroid:hover {
  transform: rotate(0deg) scale(1.08) translateY(-4px);
  z-index: 10;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), z-index 0s;
}
.gallery-polaroid:hover .gallery-polaroid__frame {
  box-shadow: 0 25px 60px rgba(46,204,113,.35), 0 8px 20px rgba(0,0,0,.6);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox__inner img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__caption { text-align: center; color: var(--c-text-muted); margin-top: .75rem; font-size: .9rem; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  padding: 1rem;
  transition: color var(--transition);
  z-index: 9001;
}
.lightbox__close { top: 1rem; right: 1rem; font-size: 2.5rem; }
.lightbox__prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { color: var(--c-green); }

/* ============================================================
   NEWS / BLOG
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.news-grid--full {}
.news-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: fadeUp .5s ease both;
  animation-delay: var(--delay, 0ms);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
  border-color: var(--c-border);
}
.news-card__img-link img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: transform .4s ease;
}
.news-card:hover .news-card__img-link img { transform: scale(1.04); }
.news-card__body { padding: 1.25rem; }
.news-card__date { font-size: .78rem; color: var(--c-green); font-family: var(--ff-head); letter-spacing: .08em; }
.news-card__body h2, .news-card__body h3 { font-size: 1.1rem; margin: .4rem 0 .6rem; }
.news-card__body h2 a, .news-card__body h3 a { color: var(--c-white); }
.news-card__body h2 a:hover, .news-card__body h3 a:hover { color: var(--c-green); }
.news-card__body p { font-size: .9rem; color: var(--c-text-muted); }
.read-more { font-size: .85rem; color: var(--c-green); font-family: var(--ff-head); letter-spacing: .06em; }
.read-more:hover { color: var(--c-gold); }

/* Article détail */
.article-page__header {
  position: relative;
  padding: 10rem 0 4rem;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.article-page__header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.4);
}
.article-page__header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0D0D0D 10%, transparent 70%);
}
.article-page__header-content { position: relative; z-index: 1; }
.article-page__date { font-size: .85rem; color: var(--c-green); font-family: var(--ff-head); letter-spacing: .1em; display: block; margin-bottom: .5rem; }
.back-link { display: inline-block; font-size: .85rem; color: var(--c-text-muted); margin-bottom: 1rem; }
.back-link:hover { color: var(--c-green); }
.article-page__body { padding: 3rem 0; max-width: 760px; margin-inline: auto; }
.article-content { line-height: 1.8; color: var(--c-text); }
.article-content p, .article-content li { margin-bottom: 1em; }
.article-content h2, .article-content h3 { margin: 1.5em 0 .5em; }
.article-share { display: flex; align-items: center; gap: .75rem; margin-top: 2.5rem; font-size: .85rem; color: var(--c-text-muted); border-top: 1px solid var(--c-border); padding-top: 1.5rem; }
.share-btn { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); padding: .35rem .85rem; font-size: .8rem; color: var(--c-text); }
.share-btn:hover { border-color: var(--c-green); color: var(--c-green); }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 3rem; }
.pagination__btn { padding: .6rem 1.25rem; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius); color: var(--c-text); font-size: .9rem; }
.pagination__btn:hover { border-color: var(--c-green); color: var(--c-green); }
.pagination__info { color: var(--c-text-muted); font-size: .9rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.contact-info p { color: var(--c-text-muted); }
.contact-info__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-info__list li { display: flex; align-items: center; gap: .75rem; color: var(--c-text); }
.contact-info__list svg { color: var(--c-green); flex-shrink: 0; }

/* Formulaires */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-family: var(--ff-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-white);
  font-family: var(--ff-body);
  font-size: .95rem;
  padding: .75rem 1rem;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--c-green);
  box-shadow: 0 0 0 3px rgba(46,204,113,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group input[type="file"] {
  padding: .5rem;
  cursor: pointer;
}
.form-group--checkbox label {
  display: flex;
  align-items: center;
  gap: .5rem;
  cursor: pointer;
  text-transform: none;
  font-size: .9rem;
  color: var(--c-text);
}
.form-group--checkbox input[type="checkbox"] {
  width: auto;
  accent-color: var(--c-green);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Flash messages */
.flash {
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 1rem;
  border-left: 4px solid;
}
.flash--success { background: rgba(46,204,113,.12); border-color: var(--c-green); color: var(--c-green); }
.flash--error   { background: rgba(231,76,60,.12);  border-color: #e74c3c; color: #e74c3c; }
.flash--info    { background: rgba(52,152,219,.12); border-color: #3498db; color: #3498db; }
.flash-container { position: fixed; top: 80px; right: 1rem; z-index: 2000; max-width: 380px; }

/* ============================================================
   BIOGRAPHIE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.about-photo { position: relative; }
.about-photo__frame {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-photo__placeholder { display: flex; flex-direction: column; align-items: center; gap: 1rem; color: var(--c-text-muted); }
.about-photo__accent {
  position: absolute;
  top: 1rem; left: -1rem;
  width: 100%; height: 100%;
  border: 2px solid var(--c-green);
  border-radius: var(--radius);
  z-index: -1;
}
.about-text h2 { font-size: 2rem; margin-bottom: 1rem; }
.about-text__lead { font-size: 1.1rem; color: var(--c-text); font-weight: 400; }
.about-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.tag {
  display: inline-block;
  background: rgba(46,204,113,.1);
  color: var(--c-green);
  border: 1px solid rgba(46,204,113,.3);
  padding: .3rem .85rem;
  border-radius: 20px;
  font-size: .8rem;
  font-family: var(--ff-head);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.value-card:hover { border-color: var(--c-green); transform: translateY(-3px); }
.value-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: .5rem; }
.value-card p { font-size: .9rem; color: var(--c-text-muted); margin: 0; }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 4px;
  font-size: .72rem;
  font-family: var(--ff-head);
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--c-surface-2);
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}
.badge--green { background: rgba(46,204,113,.15); color: var(--c-green); border-color: rgba(46,204,113,.3); }
.badge--grey  { background: var(--c-surface-2); color: var(--c-text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--c-surface); border-top: 1px solid var(--c-border); }
.footer-newsletter {
  background: linear-gradient(135deg, #0D1F13, #0D0D0D);
  border-bottom: 1px solid var(--c-border);
  padding: 3rem 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.newsletter-text h3 { font-size: 1.3rem; margin-bottom: .4rem; }
.newsletter-text p  { color: var(--c-text-muted); font-size: .9rem; margin: 0; }
.newsletter-field { display: flex; gap: .5rem; }
.newsletter-field input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-white);
  padding: .7rem 1rem;
  font-size: .9rem;
}
.newsletter-field input:focus { outline: none; border-color: var(--c-green); }
.newsletter-field button {
  background: var(--c-green);
  color: #000;
  border: none;
  border-radius: var(--radius);
  padding: .7rem 1.5rem;
  font-family: var(--ff-head);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-field button:hover { background: var(--c-green-dk); }

.footer-main { padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.footer-brand .logo-text { font-size: 1.3rem; display: block; margin-bottom: .75rem; }
.footer-brand p { font-size: .9rem; color: var(--c-text-muted); }
.social-links { display: flex; gap: .75rem; margin-top: 1rem; }
.social-links a { color: var(--c-text-muted); transition: color var(--transition); }
.social-links a:hover { color: var(--c-green); }
.footer-nav h4 { font-family: var(--ff-head); font-size: .8rem; letter-spacing: .15em; color: var(--c-text-muted); margin-bottom: 1rem; text-transform: uppercase; }
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav ul a { font-size: .9rem; color: var(--c-text-muted); }
.footer-nav ul a:hover { color: var(--c-green); }
.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--c-border);
  padding-top: 1.25rem;
  margin-top: 2rem;
  font-size: .8rem;
  color: var(--c-text-muted);
}

/* ============================================================
   ERREUR 404
   ============================================================ */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.error-page__code {
  font-size: 10rem;
  font-weight: 700;
  color: var(--c-green);
  opacity: .2;
  line-height: 1;
  margin-bottom: -.5rem;
}
.error-page__msg { font-size: 1.4rem; color: var(--c-text-muted); margin-bottom: 2rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1.visible { transition-delay: .1s; }
.reveal--delay-2.visible { transition-delay: .2s; }
.reveal--delay-3.visible { transition-delay: .3s; }

/* ============================================================
   ADMIN — Layout
   ============================================================ */
.admin-body {
  background: #0F0F0F;
  font-family: var(--ff-body);
}
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: #111;
  border-right: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-sidebar__header { padding: 1.5rem; border-bottom: 1px solid var(--c-border); }
.admin-logo { text-decoration: none; display: flex; flex-direction: column; }
.admin-logo span { font-family: var(--ff-head); font-size: 1.2rem; letter-spacing: .12em; color: var(--c-white); text-transform: uppercase; }
.admin-logo small { font-size: .7rem; color: var(--c-green); letter-spacing: .1em; text-transform: uppercase; }

.admin-nav { padding: 1rem 0; flex: 1; }
.admin-nav__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.5rem;
  color: var(--c-text-muted);
  font-size: .88rem;
  text-decoration: none;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav__item:hover { color: var(--c-white); background: rgba(255,255,255,.04); }
.admin-nav__item.active { color: var(--c-green); border-left-color: var(--c-green); background: rgba(46,204,113,.08); }
.admin-nav__item--logout { color: #e74c3c; }
.admin-nav__item--logout:hover { color: #c0392b; background: rgba(231,76,60,.08); }
.admin-sidebar__footer { border-top: 1px solid var(--c-border); }

.admin-content { display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--c-border);
  background: #111;
  position: sticky;
  top: 0;
  z-index: 100;
}
.admin-topbar__title { font-family: var(--ff-head); font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-white); flex: 1; }
.admin-topbar__user { font-size: .82rem; color: var(--c-text-muted); }
.admin-sidebar-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: .3rem; }
.admin-sidebar-toggle span { display: block; width: 20px; height: 2px; background: var(--c-white); border-radius: 2px; }

.admin-flash-area { padding: 1rem 2rem 0; }
.admin-page-content { padding: 2rem; flex: 1; }

/* Admin stats */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.stat-card {
  background: #161616;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.stat-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-card__icon--green { background: rgba(46,204,113,.15); color: var(--c-green); }
.stat-card__icon--yellow{ background: rgba(243,156,18,.15); color: var(--c-gold); }
.stat-card__icon--red   { background: rgba(231,76,60,.15);  color: #e74c3c; }
.stat-card__icon--blue  { background: rgba(52,152,219,.15); color: #3498db; }
.stat-card__value { display: block; font-family: var(--ff-head); font-size: 2rem; font-weight: 700; color: var(--c-white); line-height: 1; }
.stat-card__label { display: block; font-size: .78rem; color: var(--c-text-muted); margin-top: .2rem; }

/* Quick links */
.admin-quick-links h2 { font-size: 1rem; margin-bottom: 1rem; }
.quick-links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: .75rem; }
.quick-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1rem;
  background: #161616;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-text);
  font-size: .85rem;
  transition: all var(--transition);
}
.quick-link:hover { color: var(--c-green); border-color: var(--c-green); background: rgba(46,204,113,.06); }

/* Admin toolbar */
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Admin table */
.admin-table-wrap { overflow-x: auto; }
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.admin-table th {
  text-align: left;
  padding: .6rem .85rem;
  font-family: var(--ff-head);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
}
.admin-table td {
  padding: .75rem .85rem;
  border-bottom: 1px solid rgba(255,255,255,.04);
  vertical-align: top;
}
.admin-table tr:hover td { background: rgba(255,255,255,.02); }
.admin-table--messages td { padding: .5rem .85rem; }
.msg-preview { max-width: 200px; font-size: .82rem; color: var(--c-text-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.msg-full td { background: rgba(255,255,255,.02); }
.msg-full__text { font-size: .85rem; color: var(--c-text-muted); line-height: 1.6; }
.row--unread td { border-left: 3px solid var(--c-green); }

.admin-actions { display: flex; align-items: center; gap: .4rem; }
.btn-icon { background: none; border: none; cursor: pointer; font-size: 1rem; padding: .25rem; border-radius: 4px; text-decoration: none; transition: background var(--transition); }
.btn-icon:hover { background: rgba(255,255,255,.08); }
.table-link { font-size: .78rem; color: var(--c-green); font-family: var(--ff-head); letter-spacing: .06em; }

/* Admin gallery */
.admin-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .75rem; }
.admin-gallery-item { border-radius: var(--radius); overflow: hidden; background: var(--c-surface); border: 1px solid var(--c-border); }
.admin-gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.admin-gallery-item__info { display: flex; align-items: center; justify-content: space-between; padding: .5rem .75rem; font-size: .78rem; color: var(--c-text-muted); }

/* Admin form */
.admin-form { max-width: 700px; padding: 1.5rem; background: #161616; border: 1px solid var(--c-border); border-radius: var(--radius); }
.form-actions { display: flex; gap: .75rem; margin-top: 1.5rem; }
.admin-img-preview { width: 120px; height: 120px; object-fit: cover; border-radius: 4px; margin-top: .5rem; border: 1px solid var(--c-border); }
.admin-empty { color: var(--c-text-muted); padding: 2rem; text-align: center; }

/* Admin login */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(ellipse at center, #0D1F13 0%, #0D0D0D 70%);
}
.admin-login__box {
  background: #161616;
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 2.5rem;
  width: min(420px, 100%);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.admin-login__header { text-align: center; margin-bottom: 2rem; }
.admin-login__header h1 { font-size: 2rem; letter-spacing: .2em; color: var(--c-green); }
.admin-login__header p { color: var(--c-text-muted); font-size: .9rem; margin: 0; }
.admin-login__back { text-align: center; margin-top: 1.5rem; font-size: .85rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: fixed;
    left: -280px;
    top: 0;
    width: 260px;
    height: 100vh;
    z-index: 500;
    transition: left var(--transition);
  }
  .admin-sidebar.open { left: 0; box-shadow: var(--shadow); }
  .admin-sidebar-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .release { padding: 1.25rem; }
  .release__title { font-size: 1.35rem; }
}
@media (max-width: 768px) {
  .burger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 100vw);
    height: 100vh;
    background: #111;
    z-index: 1000;
    padding: 5rem 2rem 2rem;
    transition: right var(--transition);
    border-left: 1px solid var(--c-border);
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 1.5rem; }
  .nav-link { font-size: 1.1rem; }
  .nav-cta { padding: .6rem 1.25rem; }

  .section { padding: 4rem 0; }
  .hero-content { margin-left: 0; padding: 2rem 1rem; }
  .event-row { grid-template-columns: 60px 1fr; }
  .event-row__action { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .release { padding: 1rem; }
  .release__head { gap: .75rem; }
  .release__title { font-size: 1.15rem; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-actions { flex-direction: column; }
  .newsletter-field { flex-direction: column; }
  .release__head { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

/* === Bandeau cookies RGPD === */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 9998;
  padding: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  animation: cookieIn .4s ease both;
}
.cookie-banner[hidden] { display: none !important; }
@keyframes cookieIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.25rem;
  align-items: center;
}
.cookie-banner__text strong { color: var(--c-green); display: block; margin-bottom: .25rem; font-family: var(--ff-head); font-size: .95rem; }
.cookie-banner__text p { margin: 0; font-size: .85rem; color: var(--c-text-muted); line-height: 1.5; }
.cookie-banner__actions { display: flex; gap: .5rem; }
.cookie-banner__actions .btn { padding: .55rem 1.1rem; font-size: .8rem; }
@media (max-width: 700px) {
  .cookie-banner__inner { grid-template-columns: 1fr; }
  .cookie-banner__actions { justify-content: flex-end; }
}
.cookie-reopen {
  position: fixed;
  left: 1rem; bottom: 1rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  cursor: pointer;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 9997;
  opacity: .7;
  transition: opacity var(--transition);
}
.cookie-reopen[hidden] { display: none !important; }
.cookie-reopen:hover { opacity: 1; }

/* === Stats dashboard === */
.stats-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.stats-block__title {
  font-family: var(--ff-head);
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin: 0 0 1.25rem;
}
.stats-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.stat-mini {
  background: var(--c-surface-2);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  display: flex; flex-direction: column;
}
.stat-mini__label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-text-muted);
  margin-bottom: .35rem;
}
.stat-mini__value {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.stat-mini__sub {
  font-size: .75rem;
  color: var(--c-text-muted);
  margin-top: .35rem;
}
.stat-mini--accent .stat-mini__value { color: var(--c-green); }

/* Graphique barres */
.stats-chart {
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  height: 160px;
  padding: 0 .25rem;
}
.stats-chart__col {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: .35rem;
  cursor: pointer;
}
.stats-chart__bar {
  width: 100%;
  background: linear-gradient(to top, var(--c-green), rgba(46,204,113,.4));
  border-radius: 4px 4px 0 0;
  position: relative;
  min-height: 4px;
  transition: opacity .2s ease;
}
.stats-chart__col:hover .stats-chart__bar { opacity: .8; }
.stats-chart__value {
  position: absolute;
  top: -1.25rem; left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  color: var(--c-text);
  font-family: var(--ff-head);
}
.stats-chart__label {
  font-size: .65rem;
  color: var(--c-text-muted);
}

/* Listes top */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .stats-row { grid-template-columns: 1fr; }
}
.stats-list { list-style: none; padding: 0; margin: 0; }
.stats-list li {
  margin-bottom: .85rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.stats-list li:last-child { border-bottom: none; }
.stats-list__row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .35rem;
  font-size: .85rem;
}
.stats-list__name {
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  margin-right: 1rem;
}
.stats-list__count {
  color: var(--c-green);
  font-family: var(--ff-head);
  font-weight: 700;
}
.stats-list__bar {
  height: 4px;
  background: linear-gradient(90deg, var(--c-green), rgba(46,204,113,.3));
  border-radius: 2px;
}

/* Toggle (case à cocher style "switch") pour l'admin */
.form-toggle {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  user-select: none;
}
.form-toggle input[type="checkbox"] {
  appearance: none;
  width: 44px; height: 24px;
  background: #444;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background .2s ease;
  margin: 0;
}
.form-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s ease;
}
.form-toggle input[type="checkbox"]:checked { background: var(--c-green); }
.form-toggle input[type="checkbox"]:checked::before { transform: translateX(20px); }
.about-text__content p { margin: 0 0 1rem; }
.about-text__content ul, .about-text__content ol { padding-left: 1.25rem; margin: 0 0 1rem; }
.about-photo__frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   PAGE 404 — Effet plein écran reggae
   ============================================================ */
.e404 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: #050505;
  margin: 0;
}
.e404__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 40%, rgba(46,204,113,.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(243,156,18,.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(192,57,43,.22) 0%, transparent 60%),
    linear-gradient(135deg, #0a1f12 0%, #050505 50%, #1a1000 100%);
  animation: heroAura 18s ease-in-out infinite alternate;
}

/* Vinyle géant en fond, à droite, qui dépasse */
.e404__vinyl {
  position: absolute;
  top: 50%; right: -200px;
  width: 700px; height: 700px;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, #1a7a47 0%, #1a7a47 8%, #000 9%, #000 10%,
      #181818 11%, #0a0a0a 14%, #181818 17%, #0a0a0a 20%,
      #181818 23%, #0a0a0a 26%, #181818 29%, #0a0a0a 32%,
      #181818 35%, #0a0a0a 38%, #181818 41%, #0a0a0a 44%,
      #181818 47%, #0a0a0a 50%);
  box-shadow: 0 0 120px rgba(46,204,113,.5), inset 0 0 80px rgba(0,0,0,.8);
  animation: vinylSpin 8s linear infinite;
  opacity: .35;
  z-index: 1;
}
.e404__vinyl::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 22px; height: 22px;
  background: #000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px var(--c-green);
}
@keyframes vinylSpin { to { transform: translateY(-50%) rotate(360deg); } }

/* Fumée qui monte */
.e404__smoke {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
}
.e404__smoke span {
  position: absolute;
  bottom: -100px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,204,113,.18) 0%, transparent 70%);
  filter: blur(20px);
  animation: smokeUp 12s linear infinite;
}
.e404__smoke span:nth-child(1)  { left: 5%;  animation-delay:  0s; }
.e404__smoke span:nth-child(2)  { left: 15%; animation-delay:  2s; background: radial-gradient(circle, rgba(243,156,18,.18) 0%, transparent 70%); }
.e404__smoke span:nth-child(3)  { left: 25%; animation-delay:  4s; }
.e404__smoke span:nth-child(4)  { left: 38%; animation-delay:  1s; }
.e404__smoke span:nth-child(5)  { left: 50%; animation-delay:  6s; background: radial-gradient(circle, rgba(192,57,43,.18) 0%, transparent 70%); }
.e404__smoke span:nth-child(6)  { left: 60%; animation-delay:  3s; }
.e404__smoke span:nth-child(7)  { left: 72%; animation-delay:  5s; }
.e404__smoke span:nth-child(8)  { left: 85%; animation-delay:  7s; background: radial-gradient(circle, rgba(243,156,18,.18) 0%, transparent 70%); }
.e404__smoke span:nth-child(9)  { left: 92%; animation-delay:  8s; }
.e404__smoke span:nth-child(10) { left: 45%; animation-delay: 10s; }
@keyframes smokeUp {
  0%   { transform: translateY(0) scale(.6); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(-120vh) scale(1.8); opacity: 0; }
}

.e404__inner {
  position: relative;
  z-index: 5;
  max-width: 900px;
  padding: 2rem 1rem;
}

.e404__label {
  font-family: var(--ff-head);
  font-size: .9rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--c-green);
  margin: 0 0 1rem;
}

/* Titre TYPO ÉNORME */
.e404__title {
  font-family: var(--ff-head);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: .02em;
  margin: 0 0 2rem;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .05em;
}
.e404__title > span {
  display: inline-block;
  background: linear-gradient(180deg, #fff 0%, var(--c-green) 50%, #F39C12 75%, #C0392B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(46,204,113,.4);
  animation: e404Bounce 2.5s ease-in-out infinite;
}
.e404__space { width: .5em; background: none !important; }
.e404__title > span:nth-child(1) { animation-delay:  0.0s; }
.e404__title > span:nth-child(2) { animation-delay:  0.1s; }
.e404__title > span:nth-child(3) { animation-delay:  0.2s; }
.e404__title > span:nth-child(5) { animation-delay:  0.4s; }
.e404__title > span:nth-child(6) { animation-delay:  0.5s; }
.e404__title > span:nth-child(7) { animation-delay:  0.6s; }
.e404__title > span:nth-child(8) { animation-delay:  0.7s; }
@keyframes e404Bounce {
  0%, 100% { transform: translateY(0)    rotate(-2deg); }
  50%      { transform: translateY(-16px) rotate(2deg); }
}

.e404__msg {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  color: #fff;
  margin: 0 0 .5rem;
  letter-spacing: .03em;
}
.e404__sub {
  color: var(--c-text-muted);
  font-size: 1rem;
  margin: 0 0 2.5rem;
  max-width: 460px;
  margin-left: auto; margin-right: auto;
}

.e404__btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 2.5rem;
  background: var(--c-green);
  color: #000;
  font-family: var(--ff-head);
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 100px;
  transition: all .3s ease;
  box-shadow: 0 10px 40px rgba(46,204,113,.4);
}
.e404__btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 15px 50px rgba(46,204,113,.6);
  color: #000;
}

/* Égaliseur en bas */
.e404__bars {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
  padding: 0 1rem 1.5rem;
  z-index: 2;
  pointer-events: none;
}
.e404__bars span {
  width: 5px;
  background: linear-gradient(to top, var(--c-green) 0%, #F39C12 60%, #C0392B 100%);
  border-radius: 3px;
  animation: waveBar 1.1s ease-in-out infinite;
  transform-origin: bottom;
  opacity: .8;
}
.e404__bars span:nth-child(odd) { animation-delay: .12s; }
.e404__bars span:nth-child(1)  { height: 30%; }
.e404__bars span:nth-child(2)  { height: 60%; animation-delay: .1s; }
.e404__bars span:nth-child(3)  { height: 90%; animation-delay: .2s; }
.e404__bars span:nth-child(4)  { height: 50%; animation-delay: .3s; }
.e404__bars span:nth-child(5)  { height: 80%; animation-delay: .4s; }
.e404__bars span:nth-child(6)  { height: 40%; animation-delay: .5s; }
.e404__bars span:nth-child(7)  { height: 100%; animation-delay: .6s; }
.e404__bars span:nth-child(8)  { height: 65%; animation-delay: .5s; }
.e404__bars span:nth-child(9)  { height: 45%; animation-delay: .4s; }
.e404__bars span:nth-child(10) { height: 85%; animation-delay: .3s; }
.e404__bars span:nth-child(11) { height: 55%; animation-delay: .2s; }
.e404__bars span:nth-child(12) { height: 75%; animation-delay: .1s; }
.e404__bars span:nth-child(13) { height: 35%; animation-delay: .2s; }
.e404__bars span:nth-child(14) { height: 95%; animation-delay: .3s; }
.e404__bars span:nth-child(15) { height: 50%; animation-delay: .4s; }
.e404__bars span:nth-child(16) { height: 70%; animation-delay: .5s; }
.e404__bars span:nth-child(17) { height: 40%; animation-delay: .6s; }
.e404__bars span:nth-child(18) { height: 60%; animation-delay: .5s; }
.e404__bars span:nth-child(19) { height: 30%; animation-delay: .4s; }
.e404__bars span:nth-child(20) { height: 80%; animation-delay: .3s; }
.e404__bars span:nth-child(21) { height: 55%; animation-delay: .2s; }
.e404__bars span:nth-child(22) { height: 75%; animation-delay: .1s; }
.e404__bars span:nth-child(23) { height: 45%; animation-delay: .2s; }
.e404__bars span:nth-child(24) { height: 65%; animation-delay: .3s; }

@media (max-width: 700px) {
  .e404__vinyl { width: 450px; height: 450px; right: -250px; opacity: .25; }
  .e404__title { font-size: clamp(3rem, 16vw, 7rem); }
}

/* Utilitaires */
.empty-state { text-align: center; padding: 4rem 0; color: var(--c-text-muted); }
