/* 
   HEPHAOS — Site officiel
   Style CSS principal
   Par Raphael HEROLD
   https://rherold.win
*/

/* ============================================================
   HEPHAOS — Feuille de style principale
   ============================================================ */

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --black:        #050505;
  --black-2:      #0a0a0a;
  --black-3:      #111;
  --black-4:      #1a1a1a;
  --white:        #f5f5f5;
  --white-dim:    #a0a0a0;
  --white-ghost:  rgba(245, 245, 245, 0.06);
  --gold:         #d4af37;
  --gold-light:   #f9f295;
  --gold-dark:    #ab8e28;
  --gold-glow:    rgba(212, 175, 55, 0.15);
  --gold-grad:    linear-gradient(135deg, #d4af37 0%, #f9f295 50%, #ab8e28 100%);
  --border:       rgba(212, 175, 55, 0.18);
  --border-dim:   rgba(255, 255, 255, 0.07);
  --nav-h:        72px;
  --sp:           120px;
  --ff-d:         'Space Grotesk', sans-serif;
  --ff-b:         'Inter', sans-serif;
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
  --tr:           0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-b);
  font-weight: 300;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }

::selection {
  background: rgba(212, 175, 55, 0.2);
  color: var(--white);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ============================================================
   UTILITAIRES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-d);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.label-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 520px;
}

/* Animations d'apparition au scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   CURSEUR PERSONNALISÉ
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition-property: transform, opacity, width, height, background;
  transition-timing-function: var(--ease);
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transition-duration: 0.1s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  transition-duration: 0.4s;
}

body.cursor-hover .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--gold);
}

@media (hover: none) {
  .cursor-dot,
  .cursor-ring { display: none; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--tr), border-bottom var(--tr), backdrop-filter var(--tr);
}

#nav.scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--border-dim);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

#nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--ff-d);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: opacity 0.3s;
}

.nav-logo:hover { opacity: 0.75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-family: var(--ff-d);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px !important;
  border: 1px solid var(--border) !important;
  border-radius: 2px;
  color: var(--gold) !important;
  transition: background var(--tr), color var(--tr), border-color var(--tr) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
  border-color: var(--gold) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer mobile */
.nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  z-index: 999;
}

.nav-drawer.open {
  opacity: 1;
  pointer-events: all;
}

.nav-drawer a {
  font-family: var(--ff-d);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.3s;
}

.nav-drawer a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 40%, transparent 100%);
}

#hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

canvas#particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--ff-d);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}

.hero-title {
  font-family: var(--ff-d);
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.5s forwards;
  user-select: none;
}

.hero-tagline {
  font-family: var(--ff-d);
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}

.hero-tagline em {
  font-style: normal;
  color: var(--gold);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 2s forwards;
}

.hero-scroll span {
  font-family: var(--ff-d);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--ff-d);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--tr);
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.04);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--gold-grad);
  color: var(--black);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-dim);
}

.btn-outline:hover {
  border-color: var(--border);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  font-size: 0.8rem;
  transition: transform 0.3s var(--ease);
}

.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   STATS
   ============================================================ */
#stats {
  padding: 28px 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  background: var(--black-2);
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 12px 16px;
}

.stat-value {
  font-family: var(--ff-d);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-family: var(--ff-d);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-dim);
}

/* ============================================================
   MANIFESTE
   ============================================================ */
#manifeste {
  padding: var(--sp) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#manifeste::before {
  content: 'HEPHAOS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-d);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.04);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.manifeste-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.manifeste-text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.85;
  margin-bottom: 16px;
}

.manifeste-text strong { color: var(--white); font-weight: 400; }
.manifeste-text .gold  { color: var(--gold); font-weight: 400; }

.manifeste-values {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-dim);
  position: relative;
}

.value-item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.6s var(--ease);
}

.value-item:hover::before { width: 100%; }

.value-number {
  font-family: var(--ff-d);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  min-width: 28px;
}

.value-name {
  font-family: var(--ff-d);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  flex: 1;
}

.value-desc {
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ============================================================
   ARTISTES
   ============================================================ */
#artistes {
  padding: var(--sp) 0;
  background: var(--black-2);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
  flex-wrap: wrap;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}

.artist-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--black-3);
  cursor: pointer;
}

.artist-card-bg {
  position: absolute;
  inset: 0;
  background: var(--black-4);
  transition: transform 0.8s var(--ease);
}

/* Photo de l'artiste */
.artist-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: opacity 0.5s;
}

/* Fallback : affiche la lettre uniquement si la photo est absente ou cassée */
.artist-photo ~ .artist-pattern,
.artist-card-bg:has(.artist-photo) ~ .artist-initial {
  display: none;
}

/* Si la photo ne charge pas, on la réaffiche discrètement */
.artist-photo[src=''],
.artist-photo:not([src]) {
  display: none;
}

.artist-card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.artist-card-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 2;
  pointer-events: none;
}

.artist-card:hover .artist-card-bg { transform: scale(1.05); }

.artist-initial {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-family: var(--ff-d);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  transition: opacity 0.5s, transform 0.5s var(--ease);
  pointer-events: none;
  user-select: none;
}

.artist-card:hover .artist-initial {
  opacity: 0.25;
  transform: translate(-50%, -65%);
}

.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.25) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  z-index: 3;
}

.artist-tag {
  font-family: var(--ff-d);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.artist-name {
  font-family: var(--ff-d);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1;
}

.artist-genre {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--white-dim);
  margin-bottom: 24px;
}

.artist-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-d);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 10px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  transition: gap 0.3s, border-color 0.3s;
  width: fit-content;
}

.artist-link:hover {
  gap: 14px;
  border-color: var(--gold);
}

.artist-link-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.4s;
  pointer-events: none;
}

.artist-card:hover .artist-link-border { border-color: var(--border); }

/* ============================================================
   SORTIES
   ============================================================ */
#sorties {
  padding: var(--sp) 0;
  background: var(--black);
}

.releases-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.release-featured {
  position: relative;
  background: var(--black-3);
  overflow: hidden;
  min-height: 500px;
}

.release-card {
  position: relative;
  background: var(--black-3);
  overflow: hidden;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  transition: background 0.3s;
}

.release-card:hover { background: var(--black-4); }

.release-featured-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  /* Gradient sombre fort pour garantir la lisibilite sur toute image */
  background: linear-gradient(
    to top,
    rgba(5, 5, 5, 0.97) 0%,
    rgba(5, 5, 5, 0.75) 40%,
    rgba(5, 5, 5, 0.2) 70%,
    transparent 100%
  );
  z-index: 4;
}

.release-cover-placeholder {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.release-cover-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
}

/* Photo de couverture de la release */
.release-cover-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.release-cover-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.55) saturate(0.85);
  transition: filter 0.5s, transform 0.6s;
}

.release-featured:hover .release-cover-photo img {
  filter: brightness(0.45) saturate(0.8);
  transform: scale(1.03);
}

.release-cover-glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-d);
  font-size: 10rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.12);
  pointer-events: none;
  user-select: none;
}

.release-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-d);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  width: fit-content;
  margin-bottom: 16px;
}

.release-status.new {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.release-status.new::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 1.5s ease-in-out infinite;
}

.release-status.upcoming {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white-dim);
  border: 1px solid var(--border-dim);
}

.release-artist {
  font-family: var(--ff-d);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.release-title {
  font-family: var(--ff-d);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.15;
}

.release-meta {
  font-size: 0.75rem;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.release-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-d);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s;
  width: fit-content;
}

.release-link:hover { gap: 14px; }

.release-card-border {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  transition: border-color 0.3s;
  pointer-events: none;
}

.release-card:hover .release-card-border,
.release-featured:hover .release-card-border { border-color: var(--border); }

/* ============================================================
   PRESSE & PARTENAIRES
   ============================================================ */
#presse {
  padding: var(--sp) 0;
  background: var(--black-2);
}

.presse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.press-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.press-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-dim);
  transition: padding-left 0.3s var(--ease);
}

.press-item:hover { padding-left: 8px; }

.press-name {
  font-family: var(--ff-d);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.press-type {
  font-size: 0.7rem;
  color: var(--white-dim);
  margin-top: 3px;
}

.press-arrow {
  color: var(--gold);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s var(--ease);
}

.press-item:hover .press-arrow {
  opacity: 1;
  transform: translateX(0);
}

.presse-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 36px;
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  background: var(--white-ghost);
  transition: border-color 0.3s, background 0.3s;
}

.contact-card:hover {
  border-color: var(--border);
  background: rgba(212, 175, 55, 0.03);
}

.contact-card-title {
  font-family: var(--ff-d);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.contact-card-text {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ============================================================
   CONTACT / FORMULAIRE
   ============================================================ */
#contact {
  padding: var(--sp) 0;
  background: var(--black);
  text-align: center;
}

.contact-inner {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--ff-d);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-3);
  border: 1px solid var(--border-dim);
  border-radius: 2px;
  padding: 14px 18px;
  font-family: var(--ff-b);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(160, 160, 160, 0.4); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(212, 175, 55, 0.5);
  background: var(--black-4);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option { background: var(--black-3); }

.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 17px;
  font-size: 0.7rem;
}

.form-notice {
  font-size: 0.7rem;
  color: var(--white-dim);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border-dim);
  background: var(--black-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dim);
  margin-bottom: 36px;
}

.footer-logo {
  font-family: var(--ff-d);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--ff-d);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--white-dim);
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(160, 160, 160, 0.45);
  letter-spacing: 0.05em;
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(160, 160, 160, 0.45);
  transition: color 0.3s;
}

.footer-legal a:hover { color: var(--white-dim); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.2); opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ============================================================
   RESPONSIVE — TABLETTE
   ============================================================ */
@media (max-width: 900px) {
  :root { --sp: 80px; }

  .nav-links     { display: none; }
  .nav-hamburger { display: flex; }

  .manifeste-grid,
  .releases-layout,
  .presse-grid   { grid-template-columns: 1fr; }

  .release-featured { min-height: 380px; grid-row: auto; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .stat-divider     { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 600px) {
  :root { --sp: 60px; }

  .container { padding: 0 20px; }

  .form-row   { grid-template-columns: 1fr; }

  .section-head { flex-direction: column; align-items: flex-start; }

  .artists-grid,
  .footer-grid  { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-actions       { flex-direction: column; width: 100%; }
  .hero-actions .btn  { width: 100%; justify-content: center; }
}
