/* ============================================================
   BENNEDICTE — style.css
   Auteure & Interprète — Riviera vaudoise
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

@font-face {
  font-family: 'Cybrpnuk2';
  src: url('../fonts/Cybrpnuk2.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: '7021-fontps';
  src: url('../fonts/7021-fontps.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

/* ---------- VARIABLES ---------- */
:root {
  --bg:          #0e0b12;
  --bg2:         #130f18;
  --bg3:         #1a1520;
  --rose:        #8b3a6b;
  --rose-light:  #b5508f;
  --rose-dark:   #3d1030;
  --gold:        #d4a855;
  --gold-dim:    #a8832e;
  --text:        #f0ede8;
  --text2:       #a09aa8;
  --border:      #2a2030;
  --border2:     #3a3045;
  --font-title:  'Cybrpnuk2', cursive;
  --font-body:   'Raleway', sans-serif;
  --font-ui:     'Oswald', sans-serif;
  --font-deco:   '7021-fontps', serif;
  --radius:      4px;
  --radius-lg:   8px;
  --t:           0.3s ease;
  --shadow:      0 8px 40px rgba(0,0,0,0.6);
  --shadow-r:    0 8px 24px rgba(139,58,107,0.35);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* Grain overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 { font-family: var(--font-title); line-height: 1.15; letter-spacing: 0.04em; }
h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; }
h4 { font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-light); }
p  { color: var(--text2); line-height: 1.85; }
.section-title { color: var(--gold); }
.gold  { color: var(--gold); }
.rose  { color: var(--rose-light); }
.eyebrow {
  font-family: var(--font-ui); font-size: 1rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rose-light); display: block; margin-bottom: 0.6rem;
}

/* ---------- LAYOUT ---------- */
.container { max-width: 1220px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.section { padding: clamp(2.5rem, 6vw, 5rem) 0; position: relative; }
.section-dark { background: var(--bg2); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.divider { width: 60px; height: 2px; background: var(--rose); margin: 0.9rem 0 1.6rem; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2.1rem; font-family: var(--font-ui);
  font-size: 0.82rem; letter-spacing: 0.13em; text-transform: uppercase;
  border-radius: var(--radius); transition: all var(--t);
  position: relative; overflow: hidden; white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--rose); color: #fff; border: 1px solid var(--rose); }
.btn-primary:hover { background: var(--rose-light); border-color: var(--rose-light); transform: translateY(-2px); box-shadow: var(--shadow-r); }
.btn-gold { background: var(--gold); color: var(--bg); border: 1px solid var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-dim); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,168,85,.3); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.btn-outline:hover { border-color: var(--rose-light); color: var(--rose-light); transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.72rem; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.9rem; }

/* ---------- CARDS ---------- */
.card { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--t); display: flex; flex-direction: column; }
.card:hover { border-color: var(--rose); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 0 1px var(--rose); }
.card-img-wrap { overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; aspect-ratio: 3/4; }
.card:hover .card-img-wrap img { transform: scale(1.06); }
.card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; align-items: center; text-align: center; }
.card-body h3 { font-size: 1.9rem; color: var(--text); margin-bottom: 0.5rem; }
.card-body p  { font-size: 1rem; margin-bottom: 1.2rem; }
.card-body .btn { margin-top: auto; }

/* ---------- BADGES ---------- */
.badge { display: inline-block; padding: 0.3rem 0.8rem; font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 3px; margin-bottom: 0.5rem; align-self: center; }
.badge-rose { background: rgba(139,58,107,.18); color: var(--rose-light); border: 1px solid rgba(139,58,107,.4); }
.badge-gold  { background: rgba(212,168,85,.10); color: var(--gold); border: 1px solid rgba(212,168,85,.3); }

/* ---------- NOTICE ---------- */
.notice { padding: 1rem 1.4rem; border-left: 3px solid var(--rose); background: rgba(139,58,107,.07); border-radius: 0 var(--radius) var(--radius) 0; font-size: 0.9rem; color: var(--text2); margin: 1.5rem 0; }
.notice-gold { border-left-color: var(--gold); background: rgba(212,168,85,.06); }
.notice strong { color: var(--text); }

/* ---------- HEADER ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s ease, padding 0.4s ease, border-bottom 0.4s ease;
  background: rgba(14,11,18,0); border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(14,11,18,.97);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(139,58,107,0.25);
  padding: 0.5rem 0;
}

/* Navigation — 3 colonnes : brand | liens | spacer */
.nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.nav-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 2;
}
.nav-spacer {
  flex: 0.5;
}
.nav-brand {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  letter-spacing: 0.12em;
  text-decoration: none;
  line-height: 1;
  transition: color var(--t);
}
.nav-brand:hover { color: var(--gold-dim); }
.nav-tagline {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-light);
  opacity: 0.8;
}
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  flex: 3;
  gap: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: block; padding: 0.35rem 0.8rem;
  font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text2); transition: color var(--t); position: relative; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0.8rem; right: 0.8rem;
  height: 1px; background: var(--rose-light); transform: scaleX(0); transition: transform var(--t);
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-trigger { display: flex; align-items: center; gap: 0.25rem; }
.dropdown-arrow { font-size: 0.5rem; transition: transform var(--t); display: inline-block; }
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 0.4rem); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(19,15,24,.98); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 0.4rem 0; min-width: 200px;
  opacity: 0; visibility: hidden; transition: all 0.22s ease; z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-link {
  display: block; padding: 0.6rem 1.3rem;
  font-family: var(--font-ui); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text2); transition: all 0.2s ease; white-space: nowrap; border-left: 2px solid transparent;
}
.dropdown-link:hover { color: var(--rose-light); border-left-color: var(--rose-light); padding-left: 1.6rem; background: rgba(139,58,107,.06); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; z-index: 1001; background: none; border: none; cursor: pointer; position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s ease; transform-origin: center; display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(10,8,15,.98); backdrop-filter: blur(20px);
  z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0;
  opacity: 0; visibility: hidden; transition: all 0.35s ease;
  overflow-y: auto; padding: 2rem 1rem;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-nav-link {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--t);
  padding: 0.55rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 44px;
  background: none; border: none; cursor: pointer; width: 100%; text-align: center;
  text-decoration: none;
}
.mobile-nav-link:hover { color: var(--gold); }

/* Bouton parent accordéon */
.mobile-nav-parent { color: var(--text); }
.mobile-nav-parent:hover { color: var(--gold); }
.mob-arrow {
  font-size: 0.6rem;
  transition: transform 0.3s ease;
  display: inline-block;
}
.mobile-nav-parent.open .mob-arrow { transform: rotate(180deg); }

/* Sous-groupe — caché par défaut */
.mobile-sub-group {
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease;
  opacity: 0;
}
.mobile-sub-group.open {
  max-height: 300px;
  opacity: 1;
}

/* Sous-liens */
.mobile-nav-sub {
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  color: var(--text2) !important;
  letter-spacing: 0.1em !important;
  padding: 0.35rem 1.5rem !important;
  min-height: 38px !important;
}
.mobile-nav-sub:hover { color: var(--rose-light) !important; }

/* ---------- PAGE HERO (pages internes) ---------- */
.page-hero {
  min-height: 36vh; display: flex; align-items: flex-end; padding-bottom: 3.5rem;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #080608 0%, var(--rose-dark) 50%, #080610 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(139,58,107,.28) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 1; padding-top: 140px; }
.page-hero h1 { color: var(--gold); margin-bottom: 0.5rem; }
.page-hero .lead { font-size: 1.05rem; color: var(--text2); max-width: 600px; }

/* ---------- SECTION SEPARATEUR MUSICAL ---------- */
.music-sep {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 0.5rem 0; color: var(--rose); opacity: 0.5; font-size: 0.8rem; letter-spacing: 0.3em;
}
.music-sep::before, .music-sep::after {
  content: ''; flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--rose));
}
.music-sep::after { background: linear-gradient(to left, transparent, var(--rose)); }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 1.2rem; }
.form-label { display: block; font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text2); margin-bottom: 0.4rem; }
.required { color: var(--rose-light); }
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--border2);
  border-radius: var(--radius); padding: 0.78rem 1rem; color: var(--text); font-size: 0.95rem;
  transition: border-color var(--t), background var(--t); -webkit-appearance: none; appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--rose); background: rgba(139,58,107,.07); }
.form-input.error, .form-textarea.error { border-color: #c04040; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(160,154,168,.4); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23a09aa8' d='M8 11L2 5h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.8rem center; background-size: 11px;
  background-color: rgba(255,255,255,.03); padding-right: 2.2rem; cursor: pointer;
}
.form-select option { background: var(--bg3); }
.form-error { font-size: 0.75rem; color: #e06060; margin-top: 0.3rem; display: none; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.75rem; color: var(--text2); margin-top: 0.35rem; opacity: 0.7; }

/* ---------- TABS ---------- */
.tabs-nav { display: flex; border-bottom: 1px solid var(--border); margin-bottom: 2rem; flex-wrap: wrap; }
.tab-btn { padding: 0.7rem 1.5rem; font-family: var(--font-ui); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text2); background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; transition: all var(--t); }
.tab-btn:hover { color: var(--text); }
.tab-btn.active { color: var(--rose-light); border-bottom-color: var(--rose-light); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--rose), rgba(139,58,107,.1)); }
.timeline-item { position: relative; padding-bottom: 2.8rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -2.75rem; top: 0.35rem; width: 12px; height: 12px; background: var(--rose); border-radius: 50%; border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--rose); }
.timeline-year { font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.16em; color: var(--rose-light); margin-bottom: 0.3rem; }
.timeline-title { font-family: var(--font-title); font-size: 1.8rem; color: var(--text); margin-bottom: 0.4rem; }
.timeline-desc { font-size: 1rem; color: var(--text2); }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
.js-loaded .reveal { opacity: 0; transform: translateY(26px); }
.js-loaded .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; }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 1rem; margin-top: 1.5rem; }
.gallery-img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); transition: transform 0.4s ease, box-shadow 0.4s ease; cursor: pointer; width: 100%; }
.gallery-img:hover { transform: scale(1.03); box-shadow: 0 8px 30px rgba(139,58,107,.3); }

/* Lightbox */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.lightbox-overlay.open { opacity: 1; visibility: visible; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; color: var(--text2); cursor: pointer; transition: color var(--t); background: none; border: none; line-height: 1; }
.lightbox-close:hover { color: var(--text); }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.5rem; color: var(--text2); cursor: pointer; transition: color var(--t); background: none; border: none; padding: 1rem; user-select: none; }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

/* ---------- AUDIO PLAYER ---------- */
.audio-player {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem; margin-bottom: 1rem; transition: border-color var(--t);
}
.audio-player.playing { border-color: var(--rose); }
.audio-player-top { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.8rem; }
.audio-play-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--rose); border: none; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; cursor: pointer; flex-shrink: 0; transition: all var(--t);
}
.audio-play-btn:hover { background: var(--rose-light); transform: scale(1.08); }
.audio-title { font-family: var(--font-ui); font-size: 0.9rem; letter-spacing: 0.06em; color: var(--text); }
.audio-track-num { font-family: var(--font-ui); font-size: 0.65rem; letter-spacing: 0.12em; color: var(--rose-light); }
.audio-controls { display: flex; align-items: center; gap: 0.8rem; }
.audio-progress { flex: 1; height: 3px; background: var(--border2); border-radius: 2px; cursor: pointer; position: relative; }
.audio-progress-bar { height: 100%; background: var(--rose); border-radius: 2px; width: 0%; transition: width 0.1s linear; }
.audio-time { font-family: var(--font-ui); font-size: 0.65rem; color: var(--text2); white-space: nowrap; min-width: 80px; text-align: right; }
.audio-volume { display: flex; align-items: center; gap: 0.4rem; }
.audio-vol-icon { font-size: 0.8rem; color: var(--text2); }
.audio-vol-slider { width: 60px; height: 3px; -webkit-appearance: none; appearance: none; background: var(--border2); border-radius: 2px; cursor: pointer; }
.audio-vol-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; background: var(--gold); border-radius: 50%; cursor: pointer; }
.audio-skip { background: none; border: none; color: var(--text2); font-family: var(--font-ui); font-size: 0.62rem; cursor: pointer; transition: color var(--t); letter-spacing: 0.05em; }
.audio-skip:hover { color: var(--rose-light); }

/* ---------- VIDEO / PODCAST PLAYER ---------- */
.media-card {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: border-color var(--t), transform var(--t);
}
.media-card:hover { border-color: var(--rose); transform: translateY(-3px); }
.media-thumb { position: relative; overflow: hidden; }
.media-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform 0.5s ease; }
.media-card:hover .media-thumb img { transform: scale(1.04); }
.media-play-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.35); transition: background var(--t);
}
.media-card:hover .media-play-overlay { background: rgba(0,0,0,.5); }
.media-play-icon {
  width: 56px; height: 56px; background: rgba(139,58,107,.85); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: #fff; transition: transform var(--t), background var(--t);
}
.media-card:hover .media-play-icon { transform: scale(1.1); background: var(--rose); }
.media-info { padding: 1.2rem; }
.media-source { font-family: var(--font-ui); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 0.3rem; }
.media-title { font-family: var(--font-ui); font-size: 0.9rem; color: var(--text); margin-bottom: 0.3rem; }
.media-date { font-size: 0.78rem; color: var(--text2); }
.yt-embed-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: var(--radius-lg); overflow: hidden; }
.yt-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- ALBUM / SOUTIEN ---------- */
.album-cover {
  max-width: 340px; border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px var(--border);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.album-cover:hover { transform: scale(1.02) rotate(-1deg); box-shadow: 0 30px 80px rgba(0,0,0,.7), var(--shadow-r); }
.soutien-block {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.8rem; text-align: center;
}
.soutien-block h4 { margin-bottom: 0.8rem; }
.iban-display {
  font-family: var(--font-ui); font-size: 1rem; letter-spacing: 0.12em;
  color: var(--gold); background: rgba(212,168,85,.08); border: 1px solid rgba(212,168,85,.2);
  padding: 0.6rem 1.2rem; border-radius: var(--radius); display: inline-block; margin: 0.5rem 0;
}
.qr-img { width: 120px; margin: 0.8rem auto; }
.twint-img { height: 38px; margin: 0.5rem auto; }

/* ---------- PRESSE GRID ---------- */
.presse-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.2rem; margin-top: 1.5rem; }
.presse-img { width: 100%; border-radius: var(--radius); cursor: pointer; transition: transform 0.4s ease, box-shadow 0.4s ease; border: 1px solid var(--border); }
.presse-img:hover { transform: scale(1.02); box-shadow: 0 8px 30px rgba(139,58,107,.25); border-color: var(--rose); }

/* ---------- FOOTER ---------- */
.footer { background: #07050a; border-top: 1px solid var(--border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--font-title); font-size: 2.2rem; color: var(--gold); margin-bottom: 0.3rem; letter-spacing: 0.1em; }
.footer-tagline { font-family: var(--font-ui); font-size: 0.5rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 1.1rem; }
.footer-desc { font-size: 0.88rem; color: var(--text2); line-height: 1.75; margin-bottom: 1.5rem; }
.social-row { display: flex; gap: 0.7rem; }
.social-btn { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text2); font-size: 0.85rem; transition: all var(--t); }
.social-btn:hover { border-color: var(--rose-light); color: var(--rose-light); transform: translateY(-2px); }
.footer-col-title { font-family: var(--font-ui); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul a { font-size: 0.87rem; color: var(--text2); transition: color var(--t); }
.footer-col ul a:hover { color: var(--rose-light); }
.footer-address { font-size: 0.84rem; color: var(--text2); line-height: 1.9; }
.footer-address strong { color: var(--text); }
.footer-contact-line a { color: var(--rose-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.78rem; color: var(--text2); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.76rem; color: var(--text2); transition: color var(--t); }
.footer-legal a:hover { color: var(--text); }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%); width: min(620px, calc(100% - 2rem)); background: rgba(19,15,24,.97); backdrop-filter: blur(16px); border: 1px solid var(--border2); border-radius: var(--radius-lg); padding: 1.3rem 1.6rem; z-index: 9500; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; font-size: 0.82rem; color: var(--text2); box-shadow: var(--shadow); }
.cookie-banner p { margin: 0; }
.cookie-banner a { color: var(--rose-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-banner.hidden { display: none; }

/* ---------- SPINNER ---------- */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.15); border-top-color: var(--rose-light); border-radius: 50%; animation: spin 0.7s linear infinite; display: inline-block; vertical-align: middle; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 825px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .tabs-nav .tab-btn { padding: 0.6rem 1rem; font-size: 0.68rem; }
  .nav { position: relative; flex-direction: row; justify-content: space-between; padding: 0 1rem; }
  .nav-brand-wrap { flex: unset; align-items: flex-start; }
  .nav-spacer { display: none; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .cookie-actions { flex-direction: column; width: 100%; }
  .cookie-actions .btn { width: 100%; justify-content: center; }
  .audio-volume { display: none; }
}
