/* ============================================
   NIKHIL VASUDEVAN — Official Website
   Custom styles layered over Tailwind CDN
   ============================================ */

:root {
  --navy:        #1C2B4A;
  --navy-light:  #2D3F65;
  --navy-dark:   #0F1A2E;
  --gold:        #5E8BFF;
  --gold-light:  #93B4FF;
  --gold-dark:   #7EA0FF;
  --cream:       #FAFAF8;
  --cream-dark:  #F0EDE8;
  --text:        #2C2C2C;
  --text-muted:  #6B7280;
  --white:       #FFFFFF;

  /* Dark premium theme tokens */
  --bg:          #0A1120;
  --bg-alt:      #0C1322;
  --bg-deep:     #070C16;
  --panel:       rgba(255,255,255,0.035);
  --panel-hover: rgba(255,255,255,0.06);
  --hairline:    rgba(255,255,255,0.09);
  --border-gold: rgba(94,139,255,0.32);
  --text-light:  rgba(255,255,255,0.82);
  --text-dim:    rgba(255,255,255,0.56);
  --gold-soft:   rgba(94,139,255,0.12);

  /* Elevated iridescent accent (blue → periwinkle → cyan) */
  --grad: linear-gradient(115deg, #5E8BFF 0%, #8B93FF 45%, #4FD1FF 100%);
  --ice:  #EAF0FF;
}

/* ── Global ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-light);
  background: var(--bg);
  overflow-x: hidden;
  position: relative;
}

/* Subtle film-grain texture over the whole page for depth */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}
/* Keep real content above the grain */
nav, main, footer { position: relative; z-index: 2; }

/* ── Typography ── */
.font-display {
  font-family: 'Playfair Display', Georgia, serif;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  padding: 1.5rem 0;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  padding: 1rem 0;
}

#navbar.scrolled .nav-logo {
  color: var(--navy);
}

#navbar.scrolled .nav-link {
  color: var(--navy);
}

#navbar.scrolled .nav-link:hover {
  color: var(--gold-dark);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.nav-logo span {
  color: var(--gold);
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.25rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--white); }

.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 100%; }
#navbar.scrolled .nav-link.active { color: var(--gold-dark); }

.btn-book-nav {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #08122b;
  background: var(--grad);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-book-nav:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(94,139,255,0.4);
}

/* ── Mobile Menu ── */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

#navbar.scrolled .mobile-menu-btn span { background: var(--navy); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: flex; }
  .desktop-nav { display: none; }
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background: #07101f;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-bleed drum-cam photo — fades left (readable) to right (photo) */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  background-image: url('../nikhil-tour.webp');
  background-size: auto 70%;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 1;
  pointer-events: none;
}

/* Gradient overlay: opaque dark on left for text, opens up to photo on right */
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 16, 31, 0.97) 0%,
    rgba(12, 22, 42, 0.94) 30%,
    rgba(15, 26, 50, 0.82) 50%,
    rgba(10, 18, 38, 0.45) 75%,
    rgba(7, 14, 30, 0.2) 100%
  );
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(94,139,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,139,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Warm gold glow behind the text */
.hero-warm-glow {
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 55%;
  height: 60%;
  background: radial-gradient(ellipse at bottom left, rgba(94,139,255,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 700;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.hero-name-accent {
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #5E8BFF; /* fallback */
}

.hero-title {
  font-size: clamp(0.75rem, 1.5vw, 0.9375rem);
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.0625rem, 2.5vw, 1.4375rem);
  font-style: italic;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.hero-stages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2.75rem;
}

.hero-stage-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(94,139,255,0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 1px;
  transition: border-color 0.2s, color 0.2s;
}

.hero-stage-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--grad);
  color: #08122b;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}

.btn-primary:hover {
  filter: brightness(1.08) saturate(1.1);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(94,139,255,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.1); }
}

/* ── Stats Bar ── */
.stats-bar {
  position: relative;
  padding: 3.25rem 0;
  background:
    radial-gradient(ellipse 55% 130% at 50% 0%, rgba(94,139,255,0.15), transparent 60%),
    var(--bg-deep);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 2.75rem;
  border-right: 1px solid var(--hairline);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { transform: translateY(-5px); }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.4vw, 3.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--grad);
  background-size: 180% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #5E8BFF; /* fallback */
  filter: drop-shadow(0 3px 20px rgba(94,139,255,0.42));
  font-variant-numeric: tabular-nums;
}

.stat-item:hover .stat-number { animation: nameShimmer 2.5s ease-in-out infinite; }

.stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ── Section shared ── */
.section-header {
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.gold-underline {
  display: inline-block;
  position: relative;
}

.gold-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 60%;
  height: 3px;
  background: var(--grad);
  border-radius: 2px;
}

/* ── About ── */
#about {
  background: var(--cream);
  padding: 7rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.about-text p strong {
  color: var(--text);
  font-weight: 600;
}

.about-quote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.about-quote cite {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-dark);
  text-transform: uppercase;
  font-style: normal;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-fact-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s, transform 0.2s;
}

.about-fact-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.fact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--navy);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}

.fact-content h3 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.fact-content p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── Bands ── */
#bands {
  background: var(--navy-dark);
  padding: 7rem 0;
}

#bands .section-title { color: var(--white); }
#bands .section-label { color: var(--gold); }

.bands-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.band-tab {
  padding: 0.6rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.62);
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.band-tab:hover {
  color: var(--white);
  border-color: rgba(94,139,255,0.5);
}

.band-tab.active {
  color: #08122b;
  background: var(--grad);
  border-color: transparent;
}

.band-panel { display: none; }
.band-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.band-panel[hidden] { display: none; }

.band-caption {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  margin-top: 0.75rem;
  text-align: center;
  letter-spacing: 0.05em;
}

.band-press-link { text-decoration: none; transition: background 0.2s, color 0.2s; }
.band-press-link:hover { background: rgba(94,139,255,0.12); }

.inline-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(94,139,255,0.4);
  transition: border-color 0.2s;
}
.inline-link:hover { border-bottom-color: var(--gold); }

.band-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.band-genre {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.band-info p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
}

.band-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.highlight-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.band-press-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(94,139,255,0.3);
  padding: 0.4rem 0.875rem;
  border-radius: 2px;
}

.band-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.band-video-wrapper iframe,
.band-video-wrapper img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  object-fit: cover;
}

.band-no-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.band-no-video .big-icon { font-size: 3rem; }

@media (max-width: 768px) {
  .band-panel.active { grid-template-columns: 1fr; }
}

/* ── Music ── */
#music {
  background: var(--cream-dark);
  padding: 7rem 0;
}

.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.music-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.music-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.music-card-video {
  position: relative;
  padding-bottom: 56.25%;
}

.music-card-video iframe,
.music-card-video img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  object-fit: cover;
}

.music-card-body {
  padding: 1.25rem;
}

.music-card-body h3 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.music-card-body .band-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── Stages ── */
#stages {
  background: var(--navy);
  padding: 7rem 0;
}

#stages .section-title { color: var(--white); }
#stages .section-label { color: var(--gold); }

.shows-timeline {
  position: relative;
  padding-left: 2rem;
}

.shows-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.show-item {
  position: relative;
  padding-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.show-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 0.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-left: -3.5px;
}

.show-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.25rem;
}

.show-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.show-content p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.show-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.5rem;
}

.show-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .show-item { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* ── Press ── */
#press {
  background: var(--cream);
  padding: 7rem 0;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.press-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 4px;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.press-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.press-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -0.5rem;
  left: 1.25rem;
  line-height: 1;
  pointer-events: none;
}

.press-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}

.press-source {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.press-source-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.press-source-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Contact / Work With ── */
#contact {
  background: var(--navy-dark);
  padding: 7rem 0;
}

#contact .section-title { color: var(--white); }
#contact .section-label { color: var(--gold); }
#contact .section-subtitle { color: rgba(255,255,255,0.62); }

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.book-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.book-info p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.book-types {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.book-type-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  transition: border-color 0.2s;
}

.book-type-item:hover { border-color: rgba(94,139,255,0.3); }

.book-type-icon {
  font-size: 1.25rem;
}

.book-type-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.contact-direct {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.contact-direct a {
  color: var(--gold);
  text-decoration: none;
}

/* Booking Form */
.booking-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: white;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.09);
}

.form-group select option {
  background: var(--navy);
  color: white;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.75rem;
}

.form-success p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9375rem;
}

@media (max-width: 900px) {
  .book-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: white;
}

.footer-logo span { color: var(--gold); }

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

.footer-love {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
}

.footer-love span { color: #e05a5a; }

@media (max-width: 640px) {
  .footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── Dashboard Promo Banner ── */
.dashboard-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 4rem 0;
  border-top: 3px solid var(--gold);
}

.dashboard-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 0.75rem;
}

.dashboard-banner p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* ── Utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── About photo ── */
.about-photo-wrap {
  margin-top: 2rem;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.about-photo-img {
  width: 100%;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  object-position: center 35%;
  max-height: 320px;
}

.about-photo-credit {
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  letter-spacing: 0.04em;
}

/* ── Press links ── */
.press-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

.press-link:hover {
  color: var(--navy);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 2000;
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Clear, consistent keyboard focus ring everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 3px;
}
.band-tab:focus-visible { outline-offset: 3px; }

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   FEATURED VIDEO
   ============================================ */
.featured-video {
  margin-bottom: 2rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.featured-video-bar {
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.featured-video-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--border, rgba(0,0,0,0.15));
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.featured-video-btn:hover { background: var(--cream-dark); border-color: var(--gold); }

/* ============================================
   COMPOSITIONS (Collage)
   ============================================ */
.compositions {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.compositions-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.compositions-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0.35rem 0 0.5rem;
}
.compositions-sub {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 540px;
}
.compositions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.composition-embed iframe { display: block; width: 100%; }

@media (max-width: 720px) {
  .compositions-grid { grid-template-columns: 1fr; }
}

/* ============================================
   STREAMING BLOCK
   ============================================ */
.streaming-block {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
}
.streaming-head { margin-bottom: 1.25rem; }
.streaming-eyebrow {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.streaming-sub { font-size: 0.9375rem; color: var(--text-muted); }
.streaming-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.15rem;
  border: 1.5px solid var(--c, var(--gold));
  border-radius: 3px;
  color: var(--c, var(--gold));
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  filter: saturate(0.9) brightness(0.9);
}
.stream-btn:hover { background: var(--c, var(--gold)); color: var(--white); }

.bollywood-credit {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.bollywood-credit-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.bollywood-credit-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.35rem;
}
.bollywood-credit-text {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.6;
}
.bollywood-credit-text .inline-link { color: var(--gold-dark); border-bottom-color: rgba(160,120,64,0.4); }

/* ============================================
   SESSIONS
   ============================================ */
#sessions {
  background: var(--navy);
  padding: 7rem 0;
}
#sessions .section-title { color: var(--white); }
#sessions .section-label { color: var(--gold); }

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.session-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.session-card:hover {
  border-color: var(--gold);
  background: rgba(94,139,255,0.08);
  transform: translateY(-3px);
}
.session-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
}
.session-meta {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}
.sessions-cta {
  margin-top: 3rem;
  text-align: center;
}
.sessions-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
}

/* ============================================
   STAGES (highlights, festival chips, milestones)
   ============================================ */
.stages-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.stages-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.festival-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.festival-chip {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(94,139,255,0.35);
  padding: 0.5rem 0.95rem;
  border-radius: 4px;
}
.festival-chip em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}
.festival-chip.subtle {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.14);
}
.milestones {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.milestone {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.milestone-icon {
  font-size: 1.35rem;
  line-height: 1.2;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}
.milestone h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.milestone p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}
.upcoming-shows { margin-bottom: 3.5rem; }

@media (max-width: 860px) {
  .stages-columns { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================
   CLIENTS
   ============================================ */
.clients-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.75rem;
}
.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.client-chip {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 0.3rem 0.7rem;
  border-radius: 2px;
}

/* ============================================
   FORM ERROR
   ============================================ */
.form-error {
  background: rgba(224,90,90,0.12);
  border: 1px solid rgba(224,90,90,0.4);
  color: #ffb4b4;
  font-size: 0.8125rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
  border-color: rgba(224,90,90,0.55);
}

/* ============================================
   FEATURED IN (hyperlinked logos)
   ============================================ */
.featured-in {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.featured-in-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.featured-in-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.featured-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: rgba(0,0,0,0.32);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.2s;
}
.featured-logo:hover { color: var(--gold-dark); }

/* ============================================
   HERO — festivals row & lede
   ============================================ */
.hero-lede {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 2.25rem;
}
.hero-festivals {
  margin-bottom: 2.75rem;
}
.hero-festivals-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.hero-festival-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ============================================
   MOBILE REFINEMENTS
   ============================================ */
@media (max-width: 768px) {
  #about, #bands, #music, #sessions, #stages, #press, #contact { padding: 4.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .about-grid { gap: 2.5rem; }
  .book-grid { gap: 2.5rem; }
  .compositions-head { flex-direction: column; align-items: flex-start; }
  .streaming-block { padding: 1.5rem; }
  .featured-in-logos { gap: 1.25rem 2rem; }
}

/* Stats — responsive: two per row, no vertical rules on small screens */
@media (max-width: 720px) {
  .stats-bar { padding: 2.5rem 0; }
  .stats-row { gap: 2rem 0; }
  .stat-item { flex: 0 0 50%; border-right: none; padding: 0.5rem 0.75rem; }
}

@media (max-width: 480px) {
  .hero-name { font-size: clamp(3rem, 15vw, 4.5rem); }
  .stat-item { gap: 0.4rem; }
}
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   DARK PREMIUM THEME — v3 overhaul
   Re-skins the former light sections into cohesive dark glass,
   adds depth (glows), and styles the new components.
   ============================================================ */

.container { position: relative; z-index: 1; }

/* Section backgrounds — subtle alternation for rhythm */
#about   { background: var(--bg-alt);  position: relative; overflow: hidden; }
#bands   { background: var(--bg-deep); position: relative; overflow: hidden; }
#music   { background: var(--bg);      position: relative; overflow: hidden; }
#sessions{ background: var(--bg-alt);  position: relative; overflow: hidden; }
#stages  { background: var(--bg-deep); position: relative; overflow: hidden; }
#press   { background: var(--bg);      position: relative; overflow: hidden; }
#contact { background: var(--bg-alt);  position: relative; overflow: hidden; }
footer   { background: var(--bg-deep); }

/* Soft radial depth-glows behind sections */
#about::before, #music::before, #press::before, #sessions::before,
#stages::before, #contact::before, #bands::before {
  content: '';
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}
#about::before   { top: -12%;  right: -10%; background: radial-gradient(circle, rgba(94,139,255,0.09), transparent 62%); }
#music::before   { top: 20%;   left: -14%;  background: radial-gradient(circle, rgba(45,63,101,0.28), transparent 60%); }
#press::before   { bottom: -10%; right: -8%; background: radial-gradient(circle, rgba(94,139,255,0.07), transparent 62%); }
#sessions::before{ top: -8%;   left: -10%;  background: radial-gradient(circle, rgba(94,139,255,0.08), transparent 62%); }
#stages::before  { bottom: -12%; left: -8%; background: radial-gradient(circle, rgba(45,63,101,0.3), transparent 60%); }
#contact::before { top: -10%;  right: -12%; background: radial-gradient(circle, rgba(94,139,255,0.1), transparent 60%); }
#bands::before   { top: 30%;   right: -12%; background: radial-gradient(circle, rgba(45,63,101,0.26), transparent 60%); }

/* Section titles bright on dark */
.section-title { color: var(--white); }
.section-label { color: var(--gold); }

/* ── About (dark) ── */
.about-text p { color: var(--text-dim); }
.about-text p strong { color: #fff; }
.about-fact-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(6px);
}
.about-fact-card:hover { border-color: var(--border-gold); background: var(--panel-hover); }
.fact-icon { background: rgba(94,139,255,0.12); border: 1px solid var(--border-gold); }
.fact-content h3 { color: #fff; }
.fact-content p { color: var(--text-dim); }
.about-photo-credit { color: var(--text-dim); }
.about-photo-wrap { border: 1px solid var(--hairline); }

/* ── Music (dark) ── */
.music-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.music-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.45); border-color: var(--border-gold); }
.music-card-body h3 { color: #fff; }
.music-card-body .band-tag { color: var(--gold); }

.featured-video {
  background: var(--panel);
  border: 1px solid var(--hairline);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.featured-video-btn { color: #fff; border-color: var(--hairline); }
.featured-video-btn:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

/* ── Compositions (dark) ── */
.compositions { border-top-color: var(--hairline); }
.compositions-title { color: #fff; }
.compositions-sub { color: var(--text-dim); }

/* ── Streaming block (dark) ── */
.streaming-block { background: var(--panel); border: 1px solid var(--hairline); backdrop-filter: blur(6px); }
.streaming-eyebrow { color: #fff; }
.streaming-sub { color: var(--text-dim); }
.stream-btn { filter: none; color: #fff; border-color: var(--hairline); background: rgba(255,255,255,0.02); }
.stream-btn:hover { background: var(--c, var(--gold)); border-color: var(--c, var(--gold)); color: #fff; }
.bollywood-credit { border-top-color: var(--hairline); }
.bollywood-credit-text { color: var(--text-light); }
.bollywood-credit-text .inline-link { color: var(--gold); border-bottom-color: var(--border-gold); }

/* ── Press (dark) ── */
.press-card {
  background: var(--panel);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(6px);
}
.press-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.4); border-color: var(--border-gold); }
.press-card blockquote { color: #f2ede4; }
.press-source-name { color: var(--text-dim); }
.press-link:hover { color: var(--gold); }
.featured-in { border-top-color: var(--hairline); }
.featured-in-label { color: var(--text-dim); }
.featured-logo { color: rgba(255,255,255,0.32); }
.featured-logo:hover { color: var(--gold); }

/* ── Band Spotify embed panel ── */
.band-embed {
  border-radius: 12px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.band-embed iframe { display: block; width: 100%; min-height: 380px; }

/* ── Projects overview grid (all 13) ── */
.projects-overview {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--hairline);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.project-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  padding: 1.35rem 1.4rem;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  font-family: inherit;
}
.project-card:hover {
  border-color: var(--border-gold);
  background: var(--panel-hover);
  transform: translateY(-4px);
}
.project-card-genre {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.project-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.project-card-desc {
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.55;
  flex-grow: 1;
}
.project-card-cta {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
  margin-top: 0.35rem;
}
.project-card:hover .project-card-cta { color: var(--gold); }

/* ── Footer connect / social icons ── */
.footer-connect {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 1.75rem;
}
.footer-connect-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.social-row { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
}
.social-icon svg { width: 1.05rem; height: 1.05rem; fill: currentColor; }
.social-icon:hover {
  color: #08122b;
  background: var(--grad);
  border-color: transparent;
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .footer-connect { justify-content: center; }
}

/* ── Type polish: crisper rendering across the dark theme ── */
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
.hero-name, .section-title, .band-info h3, .project-card-name,
.compositions-title, .milestone h4 { letter-spacing: -0.015em; }

/* ============================================================
   v3 — MUSIC ANIMATIONS & ELEVATED-BLUE CONTACT
   ============================================================ */

/* Kinetic catalogue ticker */
.cat-marquee {
  overflow: hidden;
  padding: 1.4rem 0;
  margin: 2.5rem 0 1rem;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.cat-marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: catScroll 44s linear infinite;
  will-change: transform;
}
.cat-marquee:hover .cat-marquee-track { animation-play-state: paused; }
.cat-group { display: inline-flex; align-items: center; }
.cat-item {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem);
  font-weight: 700;
  color: var(--ice);
  padding: 0 1.4rem;
  letter-spacing: -0.01em;
}
.cat-item.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(94,139,255,0.75);
}
.cat-dot {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 0.9rem;
}
@keyframes catScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Slow shimmer across the hero name's gradient */
.hero-name-accent { background-size: 220% auto; animation: nameShimmer 9s ease-in-out infinite; }
@keyframes nameShimmer { 0%,100% { background-position: 0% center; } 50% { background-position: 100% center; } }

/* Kinetic zoom on music-card artwork */
.music-card-video { overflow: hidden; }
.music-card-video img,
.music-card-video iframe { transition: transform 0.6s cubic-bezier(.2,.6,.2,1); }
.music-card:hover .music-card-video img { transform: scale(1.07); }

/* Contact — offer line + methods */
.offer-line {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ice);
  line-height: 1.45;
  margin-bottom: 1rem !important;
}
.contact-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.8125rem;
  line-height: 1.4;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.contact-method:hover { border-color: var(--border-gold); background: var(--panel); transform: translateY(-2px); }
.contact-method strong { color: #fff; font-weight: 700; }
.contact-method-icon { font-size: 1.15rem; flex-shrink: 0; }
.contact-direct a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--border-gold); }

@media (max-width: 520px) {
  .contact-methods { grid-template-columns: 1fr; }
}

/* Reduced motion — freeze the marquee & shimmer to a static state */
@media (prefers-reduced-motion: reduce) {
  .cat-marquee-track { animation: none; }
  .hero-name-accent { animation: none; background-position: 0 center; }
}

/* ============================================================
   v4 — About thumbnails, tidy contact, aligned highlights
   ============================================================ */

/* About right column → linked artwork thumbnails */
.about-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  align-self: start;
}
.thumb-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  border-radius: 9px;
  overflow: hidden;
  border: 1px solid var(--hairline);
  text-decoration: none;
  isolation: isolate;
}
.thumb-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(.2,.6,.2,1), filter 0.4s;
  z-index: 0;
}
.thumb-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(7,12,22,0.93) 0%, rgba(7,12,22,0.4) 46%, rgba(7,12,22,0.08) 100%);
}
.thumb-card:hover { border-color: var(--border-gold); }
.thumb-card:hover .thumb-img { transform: scale(1.08); filter: saturate(1.12) brightness(1.06); }
.thumb-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0.8rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.thumb-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}
.thumb-cta {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* Contact — single email method sizes to a neat card, not half a grid */
.contact-methods { grid-template-columns: minmax(240px, 360px); }

/* Career highlights → aligned glass cards */
.milestone {
  align-items: center;
  padding: 0.95rem 1.1rem;
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: 9px;
  transition: border-color 0.2s, transform 0.2s;
}
.milestone:hover { border-color: var(--border-gold); transform: translateX(3px); }
.milestone-icon { background: rgba(94,139,255,0.1); border-color: var(--border-gold); }

@media (max-width: 480px) {
  .thumb-name { font-size: 1rem; }
}
