/* ===============================================
   YAKA RAS — Site officiel
   Style : Hybride moderne sombre + accents reggae
   =============================================== */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #131313;
  --bg-tertiary: #1c1c1c;
  --bg-elevated: #222;
  --text-primary: #f5f5f0;
  --text-secondary: #b5b5ad;
  --text-muted: #7a7a72;
  --accent-yellow: #f5c518;
  --accent-green: #00a651;
  --accent-red: #ce1126;
  --accent-gold: #d4a017;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --max-w: 1280px;
  --header-h: 78px;
  --font-display: 'Bebas Neue', 'Oswald', 'Impact', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --font-accent: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s ease, opacity .25s ease; }
a:hover { color: var(--accent-yellow); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.15rem, 2vw, 1.5rem); }

p { margin-bottom: 1em; color: var(--text-secondary); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .35s ease, height .25s ease;
}
.site-header.scrolled { background: rgba(10,10,10,0.92); }

.header-inner {
  max-width: var(--max-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.18em;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .brand-mark {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-yellow) 50%, var(--accent-green) 100%);
  border-radius: 50%;
  position: relative;
}
.brand .brand-mark::after{
  content:"";
  position:absolute;
  inset:6px;
  background: var(--bg-primary);
  border-radius:50%;
}

.nav-primary { display: flex; align-items: center; gap: 28px; }
.nav-primary a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-secondary);
  position: relative;
  padding: 8px 0;
}
.nav-primary a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent-yellow);
  transition: width .3s ease;
}
.nav-primary a:hover, .nav-primary a.active { color: var(--text-primary); }
.nav-primary a:hover::after, .nav-primary a.active::after { width: 100%; }

.lang-switch {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.lang-switch button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 4px 8px;
  font-family: var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.lang-switch button.active { color: var(--accent-yellow); }
.lang-switch span { opacity: 0.4; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: transform .3s ease, opacity .25s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: 0 24px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-media video,
.hero-media .hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}
.hero-slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.35) 40%, rgba(10,10,10,0.95) 100%),
    linear-gradient(90deg, rgba(206,17,38,0.10) 0%, rgba(0,0,0,0) 35%, rgba(0,166,81,0.10) 100%);
  z-index: -1;
}
.hero-content {
  text-align: center;
  max-width: 980px;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.75rem;
  color: var(--accent-yellow);
  margin-bottom: 28px;
  display: inline-block;
  border: 1px solid rgba(245,197,24,0.4);
  padding: 8px 18px 8px 26px;
  border-radius: 999px;
}
.hero h1 {
  font-size: clamp(3.5rem, 12vw, 9rem);
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  color: var(--text-primary);
  margin-bottom: 40px;
  opacity: 0.9;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: bounce 2.4s infinite;
}
@keyframes bounce {
  0%,100% { transform: translate(-50%,0); }
  50% { transform: translate(-50%,8px); }
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 80px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px;
  z-index: 2;
}
.hero-dots button {
  width: 32px; height: 3px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: background .3s ease;
}
.hero-dots button.active { background: var(--accent-yellow); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  border-radius: 2px;
}
.btn-primary {
  background: var(--accent-yellow);
  color: var(--bg-primary);
}
.btn-primary:hover {
  background: var(--accent-gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,197,24,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--accent-yellow);
  color: var(--accent-yellow);
}
.btn-rasta {
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-yellow) 50%, var(--accent-red) 100%);
  color: var(--bg-primary);
}
.btn-rasta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.4); }

/* ============ SECTIONS ============ */
.section {
  padding: 120px 28px;
  position: relative;
}
.section-narrow {
  max-width: 1080px;
  margin: 0 auto;
}
.section-wide {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--accent-yellow);
  margin-bottom: 16px;
  position: relative;
  padding: 0 16px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px; height: 1px;
  background: var(--accent-yellow);
}
.section-eyebrow::before { right: 100%; }
.section-eyebrow::after { left: 100%; }
.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--text-secondary);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
}

/* ============ NEWS / SHOWS ============ */
.shows-banner {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}
.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.show-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 32px 24px;
  position: relative;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  overflow: hidden;
}
.show-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--accent-yellow);
  transition: height .35s ease;
}
.show-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}
.show-card:hover::before { height: 100%; }
.show-date {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--accent-yellow);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.show-year { color: var(--text-muted); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 18px; }
.show-venue { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 6px; color: var(--text-primary); }
.show-city { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 20px; }
.show-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--text-primary);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.show-link:hover { color: var(--accent-yellow); }

/* ============ ALBUM SECTION ============ */
.album-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}
.album-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.album-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.album-cover {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg-tertiary);
  overflow: hidden;
}
.album-cover img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s ease;
}
.album-cover:hover img { transform: scale(1.05); }
.album-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-yellow);
  transform: translate(20px, 20px);
  z-index: -1;
}
.album-info h2 { margin-bottom: 8px; }
.album-info .album-tag {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--accent-yellow);
  font-size: 1.2rem;
  margin-bottom: 24px;
  display: block;
}
.album-info p { margin-bottom: 32px; }

/* Music player */
.tracklist {
  margin: 32px 0;
  border-top: 1px solid var(--border);
}
.track {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.track-num {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 1.1rem;
  width: 28px;
}
.track-play {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
  flex-shrink: 0;
}
.track-play:hover {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
}
.track-play svg { width: 14px; height: 14px; }
.track-play:hover svg path { fill: var(--bg-primary); }
.track-play.playing { background: var(--accent-yellow); border-color: var(--accent-yellow); }
.track-play.playing svg path { fill: var(--bg-primary); }
.track-meta { flex: 1; min-width: 0; }
.track-title { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; margin-bottom: 2px; }
.track-artist { color: var(--text-muted); font-size: 0.8rem; }
.track-duration { color: var(--text-muted); font-size: 0.85rem; font-variant-numeric: tabular-nums; }
.track.active .track-title { color: var(--accent-yellow); }

/* ============ STREAMING LINKS ============ */
.streaming {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.streaming a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border-strong);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: 999px;
  transition: all .25s ease;
}
.streaming a:hover { border-color: var(--accent-yellow); color: var(--accent-yellow); }

/* ============ BAND MEMBERS ============ */
.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.member-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: all .35s ease;
}
.member-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-4px);
}
.member-img {
  aspect-ratio: 1;
  background: var(--bg-elevated);
  overflow: hidden;
  position: relative;
}
.member-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.member-card:hover .member-img img { transform: scale(1.08); }
.member-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
}
.member-body { padding: 24px; }
.member-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  color: var(--accent-yellow);
}
.member-realname {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.member-instr {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  padding: 6px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.member-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-height: 100px;
  overflow: hidden;
  position: relative;
  transition: max-height .5s ease;
}
.member-card.expanded .member-bio { max-height: 1000px; }
.member-card .member-bio::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(transparent, var(--bg-tertiary));
  pointer-events: none;
}
.member-card.expanded .member-bio::after { display: none; }
.member-toggle {
  margin-top: 12px;
  background: none;
  border: none;
  color: var(--accent-yellow);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  cursor: pointer;
  padding: 0;
}
.member-links {
  display: flex; gap: 10px; margin-top: 16px;
}
.member-links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 5px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
}
.member-links a:hover { border-color: var(--accent-yellow); color: var(--accent-yellow); }

/* ============ PROJECTS ============ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.project-card {
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-6px);
}
.project-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-primary));
  position: relative;
  overflow: hidden;
}
.project-img::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(245,197,24,0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(206,17,38,0.15), transparent 50%);
}
.project-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.1);
  letter-spacing: 0.02em;
}
.project-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent-yellow);
  margin-bottom: 12px;
}
.project-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.project-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-yellow);
}
.project-link::after { content: '→'; transition: transform .25s ease; }
.project-link:hover::after { transform: translateX(4px); }

/* ============ GALLERY ============ */
.gallery-grid {
  columns: 3 280px;
  column-gap: 16px;
}
.gallery-item {
  display: block;
  margin-bottom: 16px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-tertiary);
}
.gallery-item img {
  transition: transform .8s ease, filter .5s ease;
  width: 100%;
  display: block;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1.1); }
.gallery-item::after {
  content: '+';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.5);
  color: var(--accent-yellow);
  font-size: 3rem;
  opacity: 0;
  transition: all .3s ease;
  font-weight: 100;
}
.gallery-item:hover::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: 1px solid var(--border-strong);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-strong);
  color: white;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-nav:hover { background: var(--accent-yellow); color: var(--bg-primary); border-color: var(--accent-yellow); }

/* ============ BIO / TEXT PAGE ============ */
.page-hero {
  padding: calc(var(--header-h) + 80px) 28px 80px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(206,17,38,0.08), transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(0,166,81,0.08), transparent 50%);
}
.page-hero h1 {
  position: relative;
  font-size: clamp(2.5rem, 8vw, 6rem);
  letter-spacing: 0.05em;
}
.page-hero .breadcrumb {
  position: relative;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.page-hero .breadcrumb a { color: var(--accent-yellow); }

.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 1.6em;
  color: var(--text-secondary);
}
.prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.5rem;
  float: left;
  line-height: 0.9;
  margin: 6px 14px 0 0;
  color: var(--accent-yellow);
}
.lang-block { display: none; }
.lang-block.active { display: block; }

/* ============ NEWSLETTER ============ */
.newsletter {
  background:
    linear-gradient(135deg, rgba(206,17,38,0.18), rgba(245,197,24,0.18), rgba(0,166,81,0.18)),
    var(--bg-secondary);
  text-align: center;
  padding: 96px 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter h2 { margin-bottom: 12px; }
.newsletter p { max-width: 540px; margin: 0 auto 32px; }
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-yellow);
}
.newsletter-form button {
  border: none;
  background: var(--accent-yellow);
  color: var(--bg-primary);
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background .25s ease;
}
.newsletter-form button:hover { background: var(--accent-gold); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--bg-primary);
  padding: 80px 28px 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.footer-cities {
  margin-top: 16px;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  color: var(--accent-yellow);
  font-size: 0.95rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.25em;
  margin-bottom: 24px;
  color: var(--accent-yellow);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--accent-yellow); }
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-icons a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  transition: all .25s ease;
}
.social-icons a:hover {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
  color: var(--bg-primary);
}
.social-icons svg { width: 16px; height: 16px; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s 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; }

/* Parallax */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}
@media (hover: none) {
  .parallax-bg { background-attachment: scroll; }
}

/* ============ AUDIO PLAYER FLOAT ============ */
.audio-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-strong);
  padding: 12px 20px;
  display: none;
  align-items: center;
  gap: 16px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform .35s ease;
}
.audio-bar.visible {
  display: flex;
  transform: translateY(0);
}
.audio-bar .ab-info {
  flex: 1; min-width: 0;
}
.audio-bar .ab-title { color: var(--text-primary); font-weight: 600; font-size: 0.9rem; }
.audio-bar .ab-artist { color: var(--text-muted); font-size: 0.75rem; }
.audio-bar .ab-controls {
  display: flex; align-items: center; gap: 12px;
}
.audio-bar button {
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text-primary);
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
}
.audio-bar button.play {
  background: var(--accent-yellow);
  color: var(--bg-primary);
  border-color: var(--accent-yellow);
}
.audio-bar .ab-progress {
  flex: 2;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}
.audio-bar .ab-bar {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: var(--accent-yellow);
  border-radius: 2px;
  width: 0%;
}
.audio-bar .ab-time {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
  min-width: 90px;
  text-align: right;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 880px) {
  :root { --header-h: 64px; }
  .nav-primary { display: none; }
  .nav-primary.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(14px);
    padding: 30px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--border-strong);
  }
  .nav-primary.open a { font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .lang-switch { display: none; }

  .album-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section { padding: 80px 24px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .gallery-grid { columns: 2 200px; }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { columns: 1; }
  h1 { font-size: 3rem; }
  .album-cover::after { display: none; }
}
