/* ============================================================
   UpFull Music — Charte officielle
   Couleur principale : #FF004F (Pantone 192 C, R255 V000 B079)
   Typo officielle    : Montserrat Bold
   ============================================================ */

:root {
  --ink:        #0a0a0a;
  --ink-deep:   #050505;
  --ink-soft:   #1a1a1a;
  --paper:      #fafaf8;
  --bone:       #f2f1ed;
  --line:       #2a2a2a;
  --line-soft:  #1c1c1c;
  --mute:       rgba(255, 255, 255, 0.55);
  --mute-strong:rgba(255, 255, 255, 0.75);
  --red:        #FF004F;          /* Pantone 192 C — couleur officielle */
  --red-deep:   #cc003f;
  --red-glow:   rgba(255, 0, 79, 0.18);
  --grid-line:  rgba(255, 255, 255, 0.04);

  --maxw: 1240px;
  --gut:  clamp(20px, 4vw, 56px);

  --font-display: 'Montserrat', system-ui, -apple-system, sans-serif;
  --font-body:    'Montserrat', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--ink);
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gut);
  padding-right: var(--gut);
}
.section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
.section--paper { background: var(--paper); color: var(--ink); }
.section--bone  { background: var(--bone);  color: var(--ink); }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid--4, .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow--mute { color: var(--mute); }

.display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-size: clamp(2.6rem, 8.5vw, 7rem);
  text-wrap: balance;
}
.h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-size: clamp(2rem, 5.2vw, 3.6rem);
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
}
.lead {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--mute-strong);
  line-height: 1.65;
  max-width: 62ch;
}
.muted { color: var(--mute); }
em.accent { color: var(--red); font-style: normal; }

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 26px;
  border: 1.5px solid #fff;
  color: #fff;
  background: transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  cursor: pointer;
}
.btn:hover { background: #fff; color: var(--ink); }
.btn--accent { background: var(--red); border-color: var(--red); color: #fff; }
.btn--accent:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; }
.btn--ghost-dark { border-color: var(--ink); color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: #fff; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
}
.arrow-link svg { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
.arrow-link:hover svg { transform: translateX(8px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gut);
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 36px; width: auto; }
.nav__brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.nav__brand-text em { color: var(--red); font-style: normal; }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: color .2s ease;
  position: relative;
}
.nav__links a:hover, .nav__links a.is-active { color: #fff; }
.nav__links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--red);
}
.nav__cta { display: flex; gap: 12px; align-items: center; }

.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  position: relative;
}
.nav__burger span { display: block; width: 18px; height: 1.5px; background: #fff; position: relative; }
.nav__burger span::before, .nav__burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1.5px; background: #fff;
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top: 6px; }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .nav.is-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--ink-deep);
    padding: 28px var(--gut);
    gap: 22px;
    border-bottom: 1px solid var(--line-soft);
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: clamp(60px, 8vw, 120px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 70% 50% at 15% 25%, var(--red-glow), transparent 60%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(255, 0, 79, 0.10), transparent 60%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
.hero__inner { display: grid; grid-template-columns: 1fr; gap: 40px; }
.hero__eyebrow { margin-bottom: 32px; }
.hero__title { margin-bottom: 36px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 56px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__meta-item { min-width: 0; }
.hero__meta-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
}
.hero__meta-num em { color: var(--red); font-style: normal; }
.hero__meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 10px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Section title block ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: clamp(40px, 5vw, 64px);
  align-items: end;
}
@media (min-width: 900px) {
  .section-head--split { grid-template-columns: 1.4fr 1fr; }
}
.section-head__title { display: flex; flex-direction: column; gap: 14px; }
.section-head__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--red);
  text-transform: uppercase;
}

/* ---------- Roster grid ---------- */
.roster {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: transparent;
  border: none;
}
.artist-card {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
  transition: background .3s ease;
}
.artist-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.85) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity .35s ease;
}
.artist-card__placeholder {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}
.artist-card:hover .artist-card__placeholder {
  background: radial-gradient(circle at 30% 20%, rgba(255, 0, 79, 0.18), var(--ink) 65%);
}
.artist-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(0.15) contrast(1.05);
  transition: transform .6s cubic-bezier(.2,.7,.2,1), filter .35s ease;
}
.artist-card:hover .artist-card__photo { transform: scale(1.05); filter: grayscale(0) contrast(1.1); }
.artist-card:hover { background: var(--ink-deep); }
.artist-card__placeholder span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
}
.artist-card__num {
  position: absolute;
  top: 18px; left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  z-index: 1;
}
.artist-card__body { position: relative; z-index: 1; }
.artist-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 6px;
}
.artist-card__meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.artist-card__arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1;
  transition: background .25s ease, border-color .25s ease, transform .35s ease;
}
.artist-card:hover .artist-card__arrow {
  background: var(--red); border-color: var(--red); transform: rotate(-45deg);
}

/* ---------- Sorties grid ---------- */
.releases {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.release-card {
  display: flex; flex-direction: column; gap: 16px;
  text-decoration: none;
}
.release-card__cover {
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(135deg, var(--ink-soft), var(--ink-deep)),
    radial-gradient(circle at 30% 30%, rgba(255,0,79,.18), transparent 60%);
  background-blend-mode: normal;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-soft);
}
.release-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.release-card:hover .release-card__cover img { transform: scale(1.04); }
.release-card__cover-empty {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 24px;
}
.release-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 10px;
  background: var(--red);
  color: #fff;
  z-index: 2;
}
.release-card__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse 1.6s infinite;
}
.release-card__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.release-card__meta .type { color: var(--red); }
.release-card__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.release-card__artists {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Évènements / Live ---------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.event-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
}
.event-card__flyer {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line-soft);
}
.event-card__flyer img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}
.event-card:hover .event-card__flyer img { transform: scale(1.04); }
.event-card__flyer-empty {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  text-align: center;
  padding: 24px;
  color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, var(--ink-soft), var(--ink-deep));
}
.event-card__date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: #fff;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-family: var(--font-mono);
  z-index: 2;
}
.event-card__date strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.event-card__date span {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-top: 4px;
}
.event-card__body { display: flex; flex-direction: column; gap: 4px; }

/* Flyer en grand sur fiche évènement */
.event-show__flyer {
  aspect-ratio: 3 / 4;
  background: var(--ink-soft);
  overflow: hidden;
  border: 1px solid var(--line-soft);
}
.event-show__flyer img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Guests (artistes invités hors UpFull) */
.event-guests__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.event-guest-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(255,255,255,.04);
  color: var(--ink);
}

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: transparent;
}
@media (max-width: 900px) {
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services { grid-template-columns: 1fr; }
}
.service {
  background: var(--paper);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  transition: background .25s ease, color .25s ease;
}
.service:hover { background: var(--ink); color: #fff; }
.service__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 10px;
}
.service__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.service__desc { font-size: 0.95rem; line-height: 1.55; color: rgba(0, 0, 0, 0.65); }
.service:hover .service__desc { color: rgba(255, 255, 255, 0.7); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info__item { display: flex; flex-direction: column; gap: 6px; }
.contact-info__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mute);
}
.contact-info__value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
}
.form__input, .form__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 0;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color .2s ease;
}
.form__input:focus, .form__textarea:focus { outline: none; border-bottom-color: var(--red); }
.form__textarea { min-height: 120px; resize: vertical; }
.form__feedback {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  padding: 12px 16px;
  border: 1px solid;
}
.form__feedback--ok { color: #6bd58f; border-color: rgba(107, 213, 143, .35); background: rgba(107, 213, 143, .06); }
.form__feedback--err { color: #ff6680; border-color: rgba(255, 0, 79, .35); background: rgba(255, 0, 79, .06); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-deep);
  padding: clamp(48px, 6vw, 80px) 0 32px;
  border-top: 1px solid var(--line-soft);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 44px; margin-bottom: 18px; }
.footer__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--mute);
  text-transform: uppercase;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: rgba(255, 255, 255, 0.7); transition: color .2s; font-size: 14px; }
.footer__col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Marquee tagline ---------- */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  background: var(--ink-deep);
  padding: 24px 0;
}
.marquee__track {
  display: flex;
  gap: 64px;
  animation: marquee 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: -0.025em;
  color: #fff;
  text-transform: uppercase;
}
.marquee__item em { color: var(--red); font-style: normal; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--line-soft); margin: 0; border: none; }
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
}
.tag-pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .3; transform: scale(1.5); }
}

::selection { background: var(--red); color: #fff; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 100;
  background: var(--ink-deep);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  padding: 22px 28px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
  animation: cookieIn .5s cubic-bezier(.2,.7,.2,1);
}
@media (min-width: 720px) {
  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 520px;
  }
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-banner__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0;
}
.cookie-banner__link {
  color: var(--red);
  text-decoration: underline;
  text-decoration-color: rgba(255, 0, 79, 0.5);
}
.cookie-banner__link:hover { text-decoration-color: var(--red); }
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 20px;
  border: 1.5px solid;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.cookie-banner__btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.85);
}
.cookie-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.4);
}
.cookie-banner__btn--accent {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.cookie-banner__btn--accent:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
}

/* ---------- Playlist Spotify ---------- */
.playlist-section {
  background: linear-gradient(180deg, var(--ink-deep) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
}
.playlist-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(29, 185, 84, 0.10), transparent 60%);
  pointer-events: none;
}
.playlist-embed {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  background: var(--ink-soft);
}
.playlist-embed iframe {
  display: block;
  border: none;
  border-radius: 12px;
}

/* ---------- Filtres catalogue ---------- */
.filters {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 4vw, 48px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.filters__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 720px) {
  .filters__row { grid-template-columns: 1fr; gap: 12px; }
}
.filters__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
  padding-top: 10px;
}
.filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filters__chips--alpha { gap: 4px; }
.filter-chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  color: rgba(0, 0, 0, 0.75);
  background: transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.filter-chip:hover { background: rgba(0, 0, 0, 0.05); border-color: rgba(0, 0, 0, 0.32); }
.filter-chip.is-active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.filter-chip--alpha {
  width: 38px;
  height: 38px;
  justify-content: center;
  padding: 0;
  font-size: 12px;
  letter-spacing: 0;
}
.filter-chip.is-disabled {
  opacity: 0.25;
  pointer-events: none;
  cursor: default;
}
.filters__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
}
/* Variante sombre (page Artistes, fond noir) */
.filter-chip--dark {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.75);
}
.filter-chip--dark:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.35); color: #fff; }
.filter-chip--dark.is-active {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.filters--dark .filters__label { color: rgba(255, 255, 255, 0.55); }

/* ---------- Fiche artiste ---------- */
.artiste-hero__visual {
  aspect-ratio: 1 / 1;
  background: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
  overflow: hidden;
  position: relative;
}
.artiste-hero__visual img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.artiste-hero__initials {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 8rem);
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

/* ---------- Embeds Spotify + YouTube sur fiche artiste ---------- */
.artiste-embeds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 900px) {
  .artiste-embeds { grid-template-columns: 1fr; gap: 40px; }
}
.artiste-embed-block { min-width: 0; }
.artiste-embed {
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line-soft);
}
.artiste-embed iframe {
  display: block;
  border: none;
  width: 100%;
}
.artiste-embed--spotify iframe { height: 380px; }
.artiste-embed--youtube {
  aspect-ratio: 16 / 9;
  position: relative;
}
.artiste-embed--youtube iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.artiste-embed-fallback {
  padding: 60px 24px;
  text-align: center;
  background: var(--ink-soft);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
}
.artiste-tracks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.artiste-track {
  border-radius: 12px;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line-soft);
}
.artiste-track iframe {
  display: block;
  width: 100%;
  border: none;
}

/* ---------- Grille des clips ---------- */
.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 28px;
}
@media (max-width: 540px) {
  .clips-grid { grid-template-columns: 1fr; }
}
.clip-card {
  display: flex;
  flex-direction: column;
}
.clip-card__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-deep);
  border: 1px solid var(--line-soft);
}
.clip-card__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.clip-card__meta {
  padding-top: 4px;
}

/* ---------- Page transition overlay (GSAP) ---------- */
#page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--red, #FF004F);
  transform: translateY(-100%);
  pointer-events: none;
  will-change: transform;
}

/* Words wrapping pour anim hero title GSAP — pas de saut de ligne dans un mot */
.hero__title .word {
  display: inline-block;
  white-space: nowrap;
}

/* Pause anim si user préfère reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
