/* ============================================================
   Variables — palette tirée de l'affiche
============================================================ */
:root {
  --bg-deep:        #0b1f2c;
  --bg-mid:         #0f2d3e;
  --bg-warm:        #c8892a;
  --bg-hay:         #d4a83a;
  --gold:           #c8952a;
  --gold-light:     #e8b83a;
  --cream:          #f0e4c4;
  --cream-dim:      #d8c8a0;
  --terracotta:     #b43018;
  --terracotta-dk:  #8c2210;
  --teal:           #1a6655;
  --teal-dk:        #10483b;
  --teal-light:     #4db89a;
  --dark-band:      #1a1a2e;
  --amber:          #f5c030;
  --light-warm:     #fff3cc;
  --font-title:     'Oswald', 'Arial Narrow', sans-serif;
  --font-serif:     'Playfair Display', Georgia, serif;
  --font-body:      'Lato', Arial, sans-serif;
}

/* ============================================================
   Reset & base
============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--cream);
  overflow-x: hidden;
}

/* ============================================================
   Layout helpers
============================================================ */
.section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 4rem;
  height: 3px;
  background: var(--gold);
  margin: 0.6rem auto 0;
}

.section-title--dark {
  color: var(--bg-deep);
}

.section-title--dark::after {
  background: var(--bg-deep);
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 10;
}

.nav__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav__link {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: var(--gold);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg,
    #070e14 0%,
    #0b1f2c 30%,
    #0e2d3e 60%,
    #1a4a3a 85%,
    #2a6030 100%
  );
}

/* Grain overlay for vintage texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.15;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ---- Stars ---- */
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--duration, 3s) ease-in-out var(--delay, 0s) infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%       { opacity: 0.15; transform: scale(0.6); }
}

/* ---- String lights ---- */
.lights-bar {
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  pointer-events: none;
}

.lights-wire {
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  padding: 0 3rem;
  position: relative;
}

.lights-wire::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #444 10%, #444 90%, transparent);
}

.bulb {
  display: block;
  width: 12px;
  height: 16px;
  background: var(--amber);
  border-radius: 2px 2px 50% 50%;
  position: relative;
  box-shadow:
    0 0 8px 4px rgba(245, 192, 48, 0.5),
    0 0 20px 8px rgba(245, 192, 48, 0.2);
  animation: flicker 4s ease-in-out infinite;
}

.bulb:nth-child(even) {
  animation-delay: 0.7s;
  animation-duration: 5s;
}
.bulb:nth-child(3n) {
  animation-delay: 1.4s;
  animation-duration: 3.5s;
}

.bulb::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #555;
  border-radius: 1px;
}

@keyframes flicker {
  0%, 90%, 100% { opacity: 1; }
  93%            { opacity: 0.5; }
  96%            { opacity: 0.9; }
}

/* ---- Pennants ---- */
.pennants {
  position: absolute;
  top: 7.5rem;
  left: 0;
  right: 0;
  pointer-events: none;
}

.pennants__wire {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  padding: 0 2rem;
  position: relative;
}

.pennants__wire::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #555 10%, #555 90%, transparent);
}

.pennant {
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 20px solid var(--terracotta);
}

.pennant--red    { border-top-color: #c0392b; }
.pennant--yellow { border-top-color: #e8b83a; }
.pennant--teal   { border-top-color: #1a6655; }
.pennant--orange { border-top-color: #c8692a; }

/* ---- Hero content ---- */
.hero__inner {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 1rem 2rem;
  margin-top: 4rem;
}

.hero__association {
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 14vw, 8.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  line-height: 0.9;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.6),
    0 0 40px rgba(200, 149, 42, 0.15);
  margin-bottom: 0.3rem;
}

.hero__subtitle {
  font-family: var(--font-title);
  font-size: clamp(1rem, 4vw, 2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero__info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  margin-top: 1.5rem;
}

.hero__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.hero__date-number {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream);
  text-transform: uppercase;
}

.hero__date-year {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.hero__divider {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.4;
}

.hero__location {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
}

.hero__location-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted rgba(240, 228, 196, 0.45);
  transition: border-color 0.2s;
}

.hero__location-link:hover {
  border-bottom-color: var(--cream);
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 2px solid var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
}

.badge__hours {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cream);
}

.badge__sep {
  color: var(--gold);
  opacity: 0.5;
}

.badge__entry {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- Scroll hint ---- */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.5;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   INTRO
============================================================ */
.intro {
  background: linear-gradient(180deg, #2a6030 0%, var(--bg-mid) 100%);
  padding: 4rem 0;
  text-align: center;
}

.intro__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--cream-dim);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================================
   LINEUP
============================================================ */
.lineup {
  background: var(--bg-mid);
  padding: 5rem 0;
  position: relative;
}


.artists {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: stretch;
}

.artist {
  display: flex;
  flex-direction: column;
}

/* Ligne nom + genre (anciennement .artist) */
.artist__row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.artist__band {
  flex: 1;
  padding: 0.6rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: filter 0.2s ease, border-left-width 0.2s ease;
  cursor: default;
}

.artist__band:hover {
  filter: brightness(1.2);
  border-left-width: 12px !important;
}

.artist__band:hover .artist__name {
  transform: translateX(4px);
  letter-spacing: 0.1em;
}

/* Lien artiste — même rendu que sans lien */
.artist__band a {
  color: inherit;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

/* Artiste cliquable */
.artist--expandable .artist__band {
  cursor: pointer;
  user-select: none;
}

/* Chevron */
.artist__chevron {
  font-size: 1.2rem;
  color: var(--cream-dim);
  transition: transform 0.3s ease, color 0.2s;
  flex-shrink: 0;
  margin-left: 0.5rem;
  line-height: 1;
}

.artist--open .artist__chevron {
  transform: rotate(-180deg);
  color: var(--cream);
}

/* Panel bio — animation via grid-template-rows */
.artist__bio {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}

.artist--open .artist__bio {
  grid-template-rows: 1fr;
}

.artist__bio-inner {
  min-height: 0;
  padding: 0 1.5rem;
  overflow: hidden;
  transition: padding 0.35s ease;
  border-left: 4px solid transparent;
}

/* Fond du bio par couleur d'artiste */
.artist--teal .artist__bio-inner        { border-left-color: var(--teal);       background: rgba(26, 102, 85, 0.12); }
.artist--terracotta .artist__bio-inner  { border-left-color: var(--terracotta); background: rgba(180, 48, 24, 0.12); }
.artist--dark .artist__bio-inner        { border-left-color: var(--dark-band);  background: rgba(26, 26, 46, 0.5); }

.artist--open .artist__bio-inner {
  padding: 1.25rem 1.5rem 1.5rem;
}

.artist__bio-inner p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 0.85rem;
}

.artist__bio-inner p:last-of-type {
  margin-bottom: 1.2rem;
}

.artist__bio-inner em {
  font-style: italic;
  color: var(--cream);
}

.artist__bio-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 149, 42, 0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.artist__bio-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

.artist__band--terracotta {
  background: var(--terracotta);
  border-left: 6px solid var(--terracotta-dk);
}

.artist__band--teal {
  background: var(--teal);
  border-left: 6px solid var(--teal-dk);
}

.artist__band--dark {
  background: var(--dark-band);
  border-left: 6px solid #0a0a18;
}

.artist__name {
  font-family: var(--font-title);
  font-size: clamp(1.3rem, 4vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  line-height: 1.1;
  transition: transform 0.2s ease, letter-spacing 0.2s ease;
}

.artist--featured .artist__name {
  font-size: clamp(1.1rem, 3.5vw, 1.9rem);
}

.artist__genre {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream);
  background: var(--bg-deep);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3rem 0.7rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   AFFICHE
============================================================ */
.poster-section {
  background: #070e14;
  padding: 5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.poster-section::before,
.poster-section::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
}

.poster-section::before {
  top: 0;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--terracotta));
}

.poster-section::after {
  bottom: 0;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--teal));
}

.poster-figure {
  margin: 0;
  max-width: 540px;
  width: 100%;
  box-shadow:
    0 0 0 1px rgba(200, 149, 42, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.6),
    0 24px 64px rgba(0, 0, 0, 0.4);
}

.poster-figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 480px) {
  .poster-section {
    padding: 3rem 0;
  }

  .poster-figure {
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.6),
      0 12px 40px rgba(0, 0, 0, 0.4);
  }
}

/* ============================================================
   ANIMATIONS
============================================================ */
.animations {
  background: var(--bg-mid);
  padding: 5rem 0;
}

.anim__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.anim__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(200, 149, 42, 0.15);
  border-radius: 6px;
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}

.anim__item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(200, 149, 42, 0.35);
}

.anim__icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.anim__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.anim__name {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

.anim__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin: 0;
}

.anim__desc strong {
  color: var(--cream);
}

.anim__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.anim__links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--teal-light, #4db89a);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.anim__links a:hover {
  opacity: 1;
}

/* ============================================================
   INFOS PRATIQUES
============================================================ */
.infos {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-hay) 100%);
  padding: 5rem 0 3rem;
  position: relative;
}

.infos::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--terracotta));
}

.infos .section-title {
  color: var(--bg-deep);
}

.infos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.info-card {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-top: 3px solid var(--bg-deep);
  padding: 1.5rem 1.2rem;
  text-align: center;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  position: relative;
}

.info-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 1.2rem;
  right: 1.2rem;
  height: 3px;
  background: var(--terracotta);
}

.info-card__label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--bg-deep);
  opacity: 0.6;
  margin-bottom: 0.6rem;
}

.info-card__value {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-deep);
  line-height: 1.4;
}

.info-card__value small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
}

.infos__banner {
  text-align: center;
  font-family: var(--font-title);
  font-size: clamp(0.9rem, 3vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: rgba(255,255,255,0.2);
  padding: 1rem 2rem;
  border-top: 2px solid rgba(11, 31, 44, 0.25);
  border-bottom: 2px solid rgba(11, 31, 44, 0.25);
}

.infos__banner .sep {
  margin: 0 0.75rem;
  opacity: 0.4;
}

/* ============================================================
   RÉSEAUX SOCIAUX
============================================================ */

/* Icônes dans le hero — coin bas gauche, empilées */
.hero__social {
  position: absolute;
  bottom: 3.5rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 3;
}

.hero__social .social-link {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
}

.hero__social .social-link span {
  display: none;
}

/* Boutons dans le footer — côte à côte avec label */
.footer__social {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer__social .social-link {
  width: auto;
  height: auto;
  padding: 0.55rem 1.2rem;
  border-radius: 2px;
  gap: 0.5rem;
}

.footer__social .social-link span {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Base commune */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
  transition: fill 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  color: var(--bg-deep);
}

.social-link--fb:hover {
  background: #4267b2;
  border-color: #4267b2;
  color: #fff;
}

.social-link--ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border-color: transparent;
  color: #fff;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: #070c10;
  padding: 2rem 0;
  text-align: center;
}

.footer__asso {
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.5;
  margin-bottom: 0.3rem;
}

.footer__name {
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

.footer__legal {
  margin-top: 0.75rem;
}

.footer__legal a {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--cream-dim);
  opacity: 0.35;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.footer__legal a:hover {
  opacity: 0.7;
}

.footer__credit {
  margin-top: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--cream-dim);
  opacity: 0.25;
}

.footer__credit a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer__credit a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ============================================================
   Responsive — ≤ 900px (tablet large)
============================================================ */
@media (max-width: 900px) {
  /* Grille infos : 2×2 propre plutôt que auto-fit boiteux */
  .infos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   Responsive — ≤ 680px (tablet / grand téléphone)
============================================================ */
@media (max-width: 680px) {
  /* Sections : réduire l'air vertical */
  .lineup,
  .infos {
    padding: 3.5rem 0;
  }

  /* Hero : le titre peut se rapprocher des déco */
  .hero__inner {
    margin-top: 2.5rem;
    padding: 1rem 1.5rem;
  }

  /* Subtitle : letter-spacing trop large sur cette plage */
  .hero__subtitle {
    letter-spacing: 0.2em;
  }

  /* Info-row : badge passe à la ligne proprement */
  .hero__info-row {
    gap: 0.8rem 1.5rem;
  }

  /* Lineup : les genres passent sous le nom */
  .artist__row {
    flex-wrap: wrap;
    gap: 0.3rem 1rem;
  }

  .artist__band {
    flex-basis: 100%;
    flex-shrink: 0;
  }

  .artist__genre {
    flex-basis: 100%;
    white-space: normal;
    text-align: right;
    background: transparent;
    border-color: transparent;
    color: var(--cream-dim);
    font-size: 0.65rem;
    padding: 0 1.5rem 0.4rem;
  }
}

/* ============================================================
   Responsive — ≤ 480px (mobile)
============================================================ */
@media (max-width: 480px) {
  /* Nav : reste absolue, centrée horizontalement */
  .nav {
    left: 0;
    right: 0;
    top: 1rem;
    text-align: center;
  }

  .nav__list {
    justify-content: center;
    gap: 0.75rem;
  }

  .nav__link {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  /* Hero */
  .hero {
    justify-content: center;
    padding: 5.5rem 0 4.5rem;
  }

  .hero__inner {
    margin-top: 0;
    padding: 0.5rem 1.25rem;
  }

  .hero__subtitle {
    letter-spacing: 0.1em;
    font-size: clamp(0.85rem, 4.5vw, 1.4rem);
  }

  .hero__association {
    letter-spacing: 0.12em;
    font-size: 0.7rem;
  }

  .hero__info-row {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
  }

  .hero__divider {
    display: none;
  }

  .hero__badge {
    padding: 0.45rem 1rem;
    gap: 0.4rem;
  }

  /* Guirlandes : descendre pour passer sous la nav */
  .lights-bar {
    top: 4.5rem;
  }

  .pennants {
    top: 6.5rem;
  }

  .bulb {
    width: 8px;
    height: 11px;
  }

  /* Réseaux dans le hero : centrés en bas, horizontaux */
  .hero__social {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 0.8rem;
    bottom: 3rem;
  }

  .hero__scroll-hint {
    bottom: 1rem;
  }

  /* Sections */
  .lineup,
  .infos {
    padding: 2.5rem 0;
  }

  .section-inner {
    padding: 0 1rem;
  }

  /* Infos grid : 2×2 sur mobile */
  .infos__grid {
    gap: 0.8rem;
  }

  .info-card {
    padding: 1rem 0.8rem;
  }

  /* Banner */
  .infos__banner {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
  }

  .infos__banner .sep {
    display: none;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 0;
  }

  .footer__name {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    line-height: 1.6;
    word-spacing: -0.05em;
  }

  .footer__social {
    gap: 0.75rem;
  }

  .footer__social .social-link {
    padding: 0.5rem 1rem;
  }
}

/* ============================================================
   Responsive — ≤ 360px (petits téléphones)
============================================================ */
@media (max-width: 360px) {
  .hero__title {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .hero__subtitle {
    letter-spacing: 0.06em;
  }

  .hero__date-number,
  .hero__location {
    font-size: 1.3rem;
  }

  .badge__entry {
    font-size: 0.75rem;
  }

  .nav__list {
    gap: 0.5rem;
  }

  .nav__link {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
  }

  .section-inner {
    padding: 0 0.75rem;
  }
}

/* ============================================================
   PAGE MENTIONS LÉGALES
============================================================ */
.legal-header {
  background: #070c10;
  border-bottom: 1px solid rgba(200, 149, 42, 0.2);
  padding: 1rem 0;
}

.legal-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-back {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.legal-back:hover {
  color: var(--gold-light);
}

.legal-site-name {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.5;
}

.legal-main {
  background: var(--bg-deep);
  min-height: calc(100vh - 8rem);
  padding: 4rem 0;
}

.legal-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--cream);
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--gold);
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section h2 {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.legal-section p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}

.legal-section strong {
  color: var(--cream);
  font-weight: 700;
}

.legal-section a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 149, 42, 0.3);
  transition: color 0.2s, border-color 0.2s;
}

.legal-section a:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ============================================================
   Drupal toolbar offset — évite que la toolbar masque le hero
============================================================ */
body.toolbar-fixed .hero {
  padding-top: 3.5rem;
}

