/* ============================================================
   AKKARE — design tokens
   ============================================================ */
:root {
  --bg: #0c0c0e;
  --surface: #17161a;
  --surface-raised: #1f1d22;
  --border: #2a282e;
  --text: #f2f0ec;
  --muted: #9a968e;
  --ember: #ff5a36;
  --ember-dim: #a83b23;
  --gold: #e8b94d;
  --violet: #8a6bff;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --header-h: 76px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 24px;
  --shadow-soft: 0 20px 50px -20px rgba(0,0,0,0.7);
}

/* ============================================================
   Reset & base
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; }

:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
}

[hidden] { display: none !important; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #51920b;
  margin-bottom: 0.6rem;
}

/* ============================================================
   Loader (shown briefly on page load)
   ============================================================ */
.eq-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.eq-loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.eq-bars { display: flex; gap: 6px; align-items: flex-end; height: 60px; }
.eq-bars span {
  width: 6px; background: linear-gradient(180deg, var(--ember), var(--gold));
  border-radius: 3px; animation: eqPulse 0.9s ease-in-out infinite;
}
.eq-bars span:nth-child(1){ animation-delay: 0s; }
.eq-bars span:nth-child(2){ animation-delay: 0.12s; }
.eq-bars span:nth-child(3){ animation-delay: 0.24s; }
.eq-bars span:nth-child(4){ animation-delay: 0.36s; }
.eq-bars span:nth-child(5){ animation-delay: 0.48s; }
@keyframes eqPulse {
  0%, 100% { height: 12px; }
  50% { height: 56px; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--header-h);
  background: rgba(12,12,14,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  background: rgba(12,12,14,0.92);
}
.header-inner {
  margin: 0 auto; 
  padding: 0 clamp(1.25rem, 4vw, 3rem) 0 clamp(.75rem, 0vw, 0rem);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}
.brand-logo {
  display: block;
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.2));
}
.brand.small { font-size: 1.3rem; }
.main-nav { display: flex; gap: clamp(1rem, 2vw, 2.2rem); }
.main-nav a {
  font-size: 0.9rem; font-weight: 500; color: var(--muted);
  position: relative; padding: 6px 0; transition: color 0.2s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--ember); transition: right 0.25s ease;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { right: 0; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero: carousel (75%) + songs panel (25%)
   ============================================================ */
.hero {
  padding-top: var(--header-h);
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 75% 25%;
  min-height: calc(100vh - var(--header-h));
}

/* --- Carousel --- */
.carousel {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  min-height: 480px;
}
.carousel-track {
  position: absolute; inset: 0;
}
.carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.carousel-slide.active { opacity: 1; }
.carousel-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,12,14,0.15) 0%, rgba(12,12,14,0.15) 55%, rgba(12,12,14,0.92) 100%);
  pointer-events: none;
}
.hero-mark {
  position: absolute; left: clamp(1.25rem, 4vw, 3.5rem); bottom: clamp(1.5rem, 5vw, 3.5rem);
  z-index: 3;
}
.hero-mark h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.9;
  color: var(--text);
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.hero-mark .eyebrow { color: var(--gold); }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 4; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(242,240,236,0.25);
  background: rgba(12,12,14,0.35); color: var(--text);
  font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.carousel-arrow:hover { background: rgba(255,90,54,0.85); border-color: var(--ember); }
.carousel-arrow.prev { left: 1.25rem; }
.carousel-arrow.next { right: 1.25rem; }

.carousel-dots {
  position: absolute; right: clamp(1.25rem, 4vw, 3.5rem); bottom: clamp(1.5rem, 5vw, 3.5rem);
  z-index: 4; display: flex; gap: 8px;
}
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(242,240,236,0.35); padding: 0; transition: background 0.2s ease, width 0.25s ease;
}
.carousel-dots button.active { background: var(--ember); width: 22px; border-radius: 5px; }

.carousel-empty {
  position: absolute; inset: 0; margin: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 2rem; color: var(--muted); font-size: 0.95rem;
}
.carousel-empty code { color: var(--gold); font-family: var(--font-mono); }

/* --- Songs panel --- */
.songs-panel {
  background: var(--surface);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  min-height: 480px;
}
.songs-panel-head {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.1rem, 2.5vw, 1.6rem) 1rem;
  border-bottom: 1px solid var(--border);
}
.songs-panel-head h2 { font-size: 1.6rem; }
.songs-list {
  flex: 1; overflow-y: auto;
  padding: 1rem clamp(1rem, 2.5vw, 1.4rem) 1.5rem;
  display: flex; flex-direction: column; gap: 0.9rem;
}
.songs-list::-webkit-scrollbar { width: 6px; }
.songs-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

.song-card {
  display: grid; grid-template-columns: 64px 1fr;
  gap: 0.8rem;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 0.7rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.song-card:hover { border-color: #51920b; transform: translateY(-2px); }
.song-cover {
  width: 64px; height: 64px; border-radius: var(--radius-s); overflow: hidden; background: var(--surface);
}
.song-cover img { width: 100%; height: 100%; object-fit: cover; }
.song-info h3 { font-family: var(--font-body); font-weight: 700; font-size: 0.98rem; margin-bottom: 2px; }
.song-info p {
  margin: 0 0 0.6rem; font-size: 0.8rem; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.song-info .song-release-date {
  margin: -0.3rem 0 0.6rem;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.03em;
  display: block;
}
.listen-btn {
  font-family: var(--font-mono); 
  font-size: 0.7rem; 
  letter-spacing: 0.08em; 
  text-transform: uppercase;
  border: 1px solid #51920b; 
  color: #51920b; 
  background: transparent;
  padding: 6px 12px; 
  border-radius: 999px; 
  transition: background 0.2s ease, color 0.2s ease;
}
.listen-btn:hover { background: #51920b; color: #17100c; }
.listen-btn.disabled {
  border-color: #7f7f7f;
  color: #8d8d8d;
  background: rgba(255,255,255,0.03);
  cursor: not-allowed;
  opacity: 0.75;
}
.listen-btn.disabled:hover {
  background: rgba(255,255,255,0.03);
  color: #8d8d8d;
}

.songs-empty { color: var(--muted); font-size: 0.85rem; padding: 1rem 0; }

/* ============================================================
   Equalizer divider (signature element)
   ============================================================ */
.eq-divider {
  background: var(--bg);
  padding: 1.4rem 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.eq-divider-bars {
  display: flex; align-items: flex-end; justify-content: center; gap: clamp(3px, 1vw, 8px);
  height: 34px; max-width: 1200px; margin: 0 auto; padding: 0 1rem;
}
.eq-divider-bars span {
  flex: 1; max-width: 10px; border-radius: 2px;
  background: linear-gradient(180deg, var(--ember), var(--gold));
  opacity: 0.85;
  animation: eqDivider 1.6s ease-in-out infinite;
}
.eq-divider-bars span:nth-child(odd) { animation-duration: 1.9s; }
.eq-divider-bars span:nth-child(3n) { animation-duration: 1.3s; background: linear-gradient(180deg, var(--gold), var(--ember)); }
.eq-divider-bars span:nth-child(4n) { animation-duration: 2.2s; }
.eq-divider-bars span:nth-child(1){animation-delay:-0.1s}.eq-divider-bars span:nth-child(2){animation-delay:-0.5s}
.eq-divider-bars span:nth-child(3){animation-delay:-0.9s}.eq-divider-bars span:nth-child(4){animation-delay:-1.3s}
.eq-divider-bars span:nth-child(5){animation-delay:-0.3s}.eq-divider-bars span:nth-child(6){animation-delay:-1.6s}
.eq-divider-bars span:nth-child(7){animation-delay:-0.7s}.eq-divider-bars span:nth-child(8){animation-delay:-1.1s}
.eq-divider-bars span:nth-child(9){animation-delay:-0.2s}.eq-divider-bars span:nth-child(10){animation-delay:-1.8s}
.eq-divider-bars span:nth-child(11){animation-delay:-0.6s}.eq-divider-bars span:nth-child(12){animation-delay:-1.0s}
.eq-divider-bars span:nth-child(13){animation-delay:-1.4s}.eq-divider-bars span:nth-child(14){animation-delay:-0.4s}
.eq-divider-bars span:nth-child(15){animation-delay:-1.7s}.eq-divider-bars span:nth-child(16){animation-delay:-0.8s}
.eq-divider-bars span:nth-child(17){animation-delay:-1.2s}.eq-divider-bars span:nth-child(18){animation-delay:-0.15s}
.eq-divider-bars span:nth-child(19){animation-delay:-1.5s}.eq-divider-bars span:nth-child(20){animation-delay:-0.55s}
@keyframes eqDivider {
  0%, 100% { height: 15%; opacity: 0.5; }
  50% { height: 100%; opacity: 1; }
}

/* ============================================================
   Generic section shell
   ============================================================ */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 2.5rem; }

/* ============================================================
   Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.team-card { text-align: center; }
.team-photo {
  width: 150px; height: 150px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 1.2rem; border: 2px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.4rem; margin-bottom: 0.3rem; }
.team-role {
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}

.about-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}
.about-section .section-inner {
  max-width: none;
  width: 100%;
}
.about-wrap {
  display: block;
  width: 100%;
}
.about-copy {
  width: 100%;
  max-width: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.about-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-highlights {
  display: grid;
  gap: 1rem;
}
.about-stat {
  background: linear-gradient(180deg, rgba(31,29,34,0.9), rgba(23,22,26,0.95));
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  padding: 1.3rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 120px;
  justify-content: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.1;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   Gallery
   ============================================================ */
.gallery-wrap { display: flex; flex-direction: column; gap: 1rem; }
.gallery-main {
  width: 100%; aspect-ratio: 16 / 9;  overflow: hidden;
  background: var(--surface); 
  display: flex; align-items: center; justify-content: center;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0d0d0f;
  transition: opacity 0.25s ease;
}
.gallery-thumbs {
  display: flex; gap: 0.7rem; overflow-x: auto; padding-bottom: 0.4rem;
}
.gallery-thumbs::-webkit-scrollbar { height: 6px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.gallery-thumb {
  flex: 0 0 auto; width: 110px; height: 74px; border-radius: var(--radius-s); overflow: hidden;
  border: 2px solid transparent; opacity: 0.6; transition: opacity 0.2s ease, border-color 0.2s ease;
  background: none; padding: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover { opacity: 0.9; }
.gallery-thumb.active { opacity: 1; border-color: var(--ember); }
.gallery-empty { color: var(--muted); font-size: 0.95rem; }
.gallery-empty code { color: var(--gold); font-family: var(--font-mono); }

/* ============================================================
   Events
   ============================================================ */
.events-list { display: flex; flex-direction: column; gap: 1.1rem; }
.event-card {
  display: grid; grid-template-columns: 220px 1fr auto;
  gap: 1.5rem; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-m);
  padding: 1rem; transition: border-color 0.2s ease;
}
.event-card:hover { border-color: var(--ember-dim); }
.event-photo { width: 220px; height: 130px; border-radius: var(--radius-s); overflow: hidden; background: var(--surface-raised); }
.event-photo img { width: 100%; height: 100%; object-fit: cover; }
.event-info {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  gap: 0.75rem; min-width: 0;
}
.event-info h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; margin: 0; }
.event-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; color: var(--muted); font-size: 0.88rem; }
.event-meta span { display: flex; align-items: center; gap: 6px; }
.event-date-badge {
  font-family: var(--font-mono); text-align: center; background: var(--surface-raised);
  border: 1px solid var(--border); border-radius: var(--radius-s); padding: 0.6rem 1rem; min-width: 68px;
}
.event-date-badge .month { display: block; font-size: 0.7rem; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; }
.event-date-badge .day { display: block; font-size: 1.6rem; line-height: 1.1; color: var(--text); }
.events-empty { color: var(--muted); }

/* ============================================================
   Artist pages
   ============================================================ */
.artist-pages-section { background: var(--surface); }
.artist-pages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}
.artist-page-link {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  position: relative;
  padding: 1.2rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.artist-page-link:hover {
  border-color: var(--ember);
  background: var(--surface-raised);
  transform: translateY(-3px);
}
.artist-page-icon {
  width: 72px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-radius: var(--radius-s);
  padding: 0.3rem;
}
.artist-page-icon img { width: 100%; height: 100%; object-fit: contain; }
.artist-page-icon.platform-icon-amazonmusic {
  background: #25c6d3;
  padding: 0;
}
.artist-page-icon.platform-icon-amazonmusic img { border-radius: var(--radius-s); }
.artist-page-icon.platform-icon-jiosaavn,
.artist-page-icon.platform-icon-tidal {
  background: #fff;
  padding: 0.55rem;
}
.artist-page-fallback { font-size: 2.5rem; line-height: 1; }
.artist-page-name { font-weight: 600; font-size: 0.92rem; text-align: center; }
.artist-page-arrow {
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  color: var(--muted);
  font-size: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.artist-page-link:hover .artist-page-arrow { color: var(--ember); transform: translate(2px, -2px); }
.artist-pages-empty { color: var(--muted); }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-copy { color: var(--muted); max-width: 40ch; margin-bottom: 2rem; }
.social-links { display: flex; flex-direction: column; gap: 0.9rem; }
.social-link {
  display: flex; align-items: center; gap: 0.9rem;
  border: 1px solid var(--border); border-radius: var(--radius-m); padding: 0.9rem 1.1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.social-link:hover { border-color: var(--ember); background: var(--surface); }
.social-icon {
  width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--surface-raised); color: var(--gold); flex: 0 0 auto;
}
.social-icon svg { width: 20px; height: 20px; }
.social-link strong { display: block; font-size: 0.95rem; }
.social-link small { color: var(--muted); font-family: var(--font-mono); font-size: 0.8rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form label { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.82rem; color: var(--muted); }
.contact-form input, .contact-form textarea {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-s);
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem; padding: 0.75rem 0.9rem;
  resize: vertical; transition: border-color 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ember); outline: none; }
.btn {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem;
  border-radius: 999px; padding: 0.9rem 1.6rem; border: none; align-self: flex-start;
}
.btn-primary { background: #51920b; color: #1a0f0a; transition: background 0.2s ease, transform 0.2s ease; }
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-disabled {
  background: rgba(255,255,255,0.08);
  color: #d3d1cd;
  border: 1px solid var(--border);
  opacity: 0.9;
  cursor: not-allowed;
}
.btn-disabled:hover {
  background: rgba(255,255,255,0.08);
  color: #d3d1cd;
  transform: none;
}
.contact-status { min-height: 1.2em; font-size: 0.85rem; color: var(--gold); margin: 0; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid var(--border); padding: 2rem 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
}
.footer-inner p { margin: 0; color: var(--muted); font-size: 0.85rem; }

/* ============================================================
   Modal
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 800; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(6,6,7,0.78); backdrop-filter: blur(4px); }
.modal-panel {
  position: relative; z-index: 1; width: 100%; max-width: 420px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-l);
  padding: 2.2rem 1.8rem 1.8rem; text-align: center; box-shadow: var(--shadow-soft);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(10px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 0.7rem; right: 0.9rem; background: none; border: none; color: var(--muted);
  font-size: 1.6rem; line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-song-view { display: none; }
.modal-song-view.active { display: block; }
.modal-cover { width: 250px; height: 250px; border-radius: var(--radius-m); object-fit: cover; margin: 0 auto 1.1rem; display: block; }
.modal-panel h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.2rem; }
.modal-sub { color: var(--muted); font-size: 0.85rem; margin: 0 0 1.4rem; }
.modal-links { display: flex; flex-direction: column; gap: 0.7rem; }
.platform-link {
  display: flex; align-items: center; gap: 0.7rem; padding: 0.82rem 1rem;
  border: 1px solid var(--border); border-radius: var(--radius-s); text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.platform-link:hover { border-color: var(--ember); background: var(--surface-raised); }
.platform-dot { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .artist-pages-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 160px 1fr; }
  .event-date-badge { grid-column: 1 / -1; justify-self: start; flex-direction: row; display: flex; gap: 0.5rem; align-items: baseline; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: rgba(12,12,14,0.98); border-bottom: 1px solid var(--border);
    flex-direction: column; padding: 1rem clamp(1.25rem, 4vw, 3rem) 1.5rem; gap: 0.2rem;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 0.7rem 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .carousel { min-height: 62vh; }
  .songs-panel { border-left: none; border-top: 1px solid var(--border); min-height: 0; }
  .songs-list { max-height: 70vh; }
}

@media (max-width: 620px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; }
  .artist-pages-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-photo { width: 120px; height: 120px; }
  .event-card { grid-template-columns: 1fr; }
  .event-photo { width: 100%; height: 160px; }
  .carousel-arrow { width: 38px; height: 38px; font-size: 1.3rem; }
}
