*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a0e14;
  --deep: #0d1520;
  --teal: #4a9fa5;
  --teal-dim: #2a6a70;
  --teal-pale: #a8d8db;
  --gold: #c9a96e;
  --gold-pale: #e8d5b0;
  --slate: #2a3545;
  --mist: rgba(255,255,255,0.06);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: #c8d4d8;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.5s;
}
nav.scrolled { background: rgba(10,14,20,0.92); backdrop-filter: blur(12px); }

.nav-logo img {
  height: 2rem;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}
.nav-logo:hover img { opacity: 0.8; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,212,216,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--teal-pale); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
  border-left: 1px solid rgba(74, 159, 165, 0.2);
  padding-left: 1.5rem;
}
.lang-link {
  font-size: 0.65rem !important;
  letter-spacing: 0.1em !important;
  transition: all 0.3s ease;
  cursor: pointer;
}
.lang-link.active {
  color: var(--teal-pale) !important;
  font-weight: 400;
}
.lang-separator {
  font-size: 0.6rem;
  color: rgba(200, 212, 216, 0.2);
  pointer-events: none;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 60%, rgba(30,80,95,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 30% 20%, rgba(74,159,165,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #070b10 0%, #0a0e14 40%, #0d1520 100%);
}

.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(74,159,165,0.03) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(74,159,165,0.02) 80px);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,159,165,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
}


.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-pale);
  line-height: 1;
  animation: fadeUp 1.4s 0.2s ease forwards;
  opacity: 0;
}

.hero-subtitle {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 200;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(200,212,216,0.4);
  animation: fadeUp 1.4s 0.5s ease forwards;
  opacity: 0;
}

.hero-tagline {
  margin-top: 3rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(201,169,110,0.7);
  animation: fadeUp 1.4s 0.8s ease forwards;
  opacity: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 2s 1.5s ease forwards;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--teal-dim));
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  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; }
}

.scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(74,159,165,0.4);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── SECTIONS ── */
section {
  padding: 8rem 0;
  position: relative;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal-dim);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--teal-dim), transparent);
  max-width: 80px;
}

/* ── CONCEPT ── */
#concept {
  background: linear-gradient(180deg, var(--navy) 0%, var(--deep) 50%, var(--navy) 100%);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.concept-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--teal-pale);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.concept-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.concept-text p {
  color: rgba(200,212,216,0.65);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.concept-visual {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
}

.orb-outer {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(74,159,165,0.15);
  animation: spin 25s linear infinite;
}

.orb-mid {
  width: 220px;
  height: 220px;
  border: 1px solid rgba(74,159,165,0.25);
  animation: spin 18s linear infinite reverse;
}

.orb-inner {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(74,159,165,0.2) 0%, transparent 70%);
  border: 1px solid rgba(74,159,165,0.4);
  animation: pulse 6s ease-in-out infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orb-text {
  position: absolute;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-style: italic;
  color: var(--teal-pale);
  text-align: center;
  line-height: 1.3;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(74,159,165,0.2), transparent);
  margin: 0 3rem;
}

/* ── ALBUMS ── */
#albums {
  background: var(--navy);
}

.albums-header {
  text-align: center;
  margin-bottom: 5rem;
}

.albums-header h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--teal-pale);
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.album-card {
  text-align: center;
}

.album-cover {
  margin-bottom: 2.5rem;
  overflow: hidden;
  border: 1px solid rgba(74, 159, 165, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: border-color 0.4s;
}

.album-cover img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: brightness(0.9);
}

.album-cover:hover {
  border-color: rgba(74, 159, 165, 0.3);
}

.album-cover:hover img {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.album-title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-pale);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.album-type {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--teal-dim);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.streaming-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.streaming-links li a {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200, 212, 216, 0.6);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  display: flex; /* Aligne l'icône et le texte */
  align-items: center;
  justify-content: center; /* Centre le contenu dans la carte */
  gap: 0.75rem; /* Espace entre l'icône et le texte */
  padding-bottom: 2px;
}

.platform-icon {
  width: 16px; /* Taille de l'icône */
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.streaming-links li a:hover .platform-icon {
  opacity: 1;
}
.streaming-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--teal-pale);
  transition: width 0.3s ease;
}

.streaming-links li a:hover {
  color: var(--teal-pale);
}

.streaming-links li a:hover::after {
  width: 100%;
}

/* ── INTERVIEW ── */
#interview {
  background: linear-gradient(180deg, var(--navy) 0%, #080c11 100%);
  position: relative;
  overflow: hidden;
}

.interview-header {
  margin-bottom: 4rem;
}

.interview-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--teal-pale);
  margin-bottom: 1rem;
}

.interview-content {
  max-width: 800px;
}

.qa-block {
  margin-bottom: 3rem;
  background: rgba(74,159,165,0.03);
  border-left: 2px solid rgba(74,159,165,0.2);
  padding: 2rem;
  transition: background 0.3s;
}

.qa-block:hover {
  background: rgba(74,159,165,0.06);
  border-left-color: var(--teal-pale);
}

.question {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-pale);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.answer {
  font-size: 0.95rem;
  color: rgba(200,212,216,0.65);
  line-height: 1.8;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(74,159,165,0.08);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(168,216,219,0.3);
  letter-spacing: 0.2em;
}

.footer-note {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(200,212,216,0.2);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }

/* ── RESPONSIVE ── */
/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 1.25rem 1.5rem; }
  
  /* On cache uniquement les liens du menu, mais on garde le bouton langue */
  .nav-links li:not(.lang-switch) { display: none; }
  
  .lang-switch {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
    margin-top: 0; /* Reste bien aligné avec le logo */
  }
  
  .container { padding: 0 1.5rem; }
  section { padding: 5rem 0; }
  .concept-grid { grid-template-columns: 1fr; gap: 3rem; }
  .concept-visual { height: 260px; }
  .orb-outer { width: 220px; height: 220px; }
  .orb-mid { width: 150px; height: 150px; }
  .orb-inner { width: 80px; height: 80px; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
}