/* ── Putri Ariani — Dark Gold Theme ─────────────────────────────── */
:root {
  --midnight: #0a0a0f;
  --night: #0f0f18;
  --dark: #141420;
  --slate: #1e1e30;
  --gold: #d4a017;
  --gold-light: #f0d060;
  --gold-dim: rgba(212,160,23,0.4);
  --purple: #6b21a8;
  --purple-glow: #a855f7;
  --text: #f0ece4;
  --muted: #8a8494;
  --border: rgba(212,160,23,0.12);
  --gradient-hero: linear-gradient(160deg, #0a0a0f 0%, #0f0f18 30%, #1a1020 60%, #0f0f18 100%);
  --gradient-gold: linear-gradient(135deg, #d4a017, #f0d060);
  --gradient-purple: linear-gradient(135deg, #6b21a8, #a855f7);
  --shadow: 0 4px 30px rgba(212,160,23,0.1);
  --shadow-lg: 0 8px 40px rgba(212,160,23,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--midnight);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* ── Navbar ─────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 64px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 1.25rem;
  color: var(--gold); letter-spacing: 2px;
}
.nav-links {
  display: flex; align-items: center; gap: 8px; list-style: none;
}
.nav-links a {
  color: var(--text); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--gold); background: rgba(212,160,23,0.08); }
.nav-cta {
  background: var(--gradient-gold) !important; color: var(--midnight) !important;
  font-weight: 600 !important; border-radius: 20px !important;
  padding: 8px 20px !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px 0; transition: all var(--transition); border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,160,23,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 70%, rgba(107,33,168,0.06) 0%, transparent 50%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url('/img/putri-piano-hero.jpg') center/cover no-repeat;
  opacity: 0.15; filter: blur(1px);
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; padding: 120px 24px 80px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: var(--gradient-gold); color: var(--midnight);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 20px; border-radius: 30px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem); font-weight: 900;
  color: var(--text); letter-spacing: 4px;
  line-height: 1.1; margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero-subtitle {
  font-size: 1.3rem; color: var(--gold); font-weight: 400;
  letter-spacing: 3px; margin-bottom: 12px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-tagline {
  font-size: 1.05rem; color: var(--muted); font-style: italic;
  max-width: 500px; margin: 0 auto 36px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 140px 24px 60px; text-align: center;
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--border);
}
.page-hero-compact { padding: 120px 24px 40px; }
.page-hero-full { min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900;
  color: var(--text); margin-bottom: 12px;
}
.page-hero-content p { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.error-code { font-size: 8rem !important; color: var(--gold) !important; line-height: 1; }
.error-message { font-size: 1.3rem !important; margin-bottom: 32px !important; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 30px;
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition);
  border: none; cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--gradient-gold); color: var(--midnight); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--midnight); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold-dim);
}
.btn-outline:hover { background: rgba(212,160,23,0.1); color: var(--gold-light); transform: translateY(-2px); }
.btn-gold { background: var(--gradient-gold); color: var(--midnight); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--midnight); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon {
  background: rgba(212,160,23,0.1); border: none; color: var(--gold);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.btn-icon:hover { background: rgba(212,160,23,0.2); transform: scale(1.1); }

/* ── Stats Bar ──────────────────────────────────────────────────── */
.stats-bar {
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--dark); border-bottom: 1px solid var(--border);
  max-width: 900px; margin: 0 auto;
  border-radius: var(--radius); transform: translateY(-30px);
  box-shadow: var(--shadow-lg); position: relative; z-index: 2;
}
.stat-item { text-align: center; padding: 24px 12px; }
.stat-number {
  display: block; font-size: 2rem; font-weight: 800;
  background: var(--gradient-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── Sections ───────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-alt { background: var(--night); }
.section-container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700; color: var(--text);
  text-align: center; margin-bottom: 8px;
}
.section-subtitle { text-align: center; color: var(--muted); margin-bottom: 48px; font-size: 1.05rem; }
.section-cta { text-align: center; margin-top: 40px; }
.section-cta-block { text-align: center; background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-cta-block h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 12px; }
.section-cta-block p { color: var(--muted); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

/* ── Video Grid ─────────────────────────────────────────────────── */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.video-card {
  background: var(--dark); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  transition: all var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-dim); }
.video-card-large { grid-column: span 1; }
.video-thumb {
  position: relative; cursor: pointer;
  aspect-ratio: 16/9; overflow: hidden;
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.video-thumb:hover img { transform: scale(1.05); }
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background var(--transition);
}
.video-thumb:hover .play-overlay { background: rgba(0,0,0,0.15); }
.video-info { padding: 16px 20px; }
.video-info h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.video-info a { color: var(--text); }
.video-info a:hover { color: var(--gold); }
.video-meta { font-size: 0.85rem; color: var(--muted); }
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── Song Grid / List ───────────────────────────────────────────── */
.song-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.song-card {
  background: var(--dark); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition);
  display: block; color: var(--text);
}
.song-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--gold-dim); color: var(--text); }
.song-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.song-info { padding: 14px 16px; }
.song-info h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.song-info p { font-size: 0.8rem; color: var(--muted); }
.song-desc { font-size: 0.85rem; color: var(--muted); margin-top: 8px; line-height: 1.5; }

.song-tier {
  display: inline-block; padding: 2px 10px; border-radius: 12px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.tier-legendary { background: rgba(212,160,23,0.2); color: var(--gold); }
.tier-hit { background: rgba(168,85,247,0.2); color: var(--purple-glow); }
.tier-popular { background: rgba(59,130,246,0.2); color: #60a5fa; }
.tier-regular { background: rgba(100,100,100,0.2); color: #888; }

/* Song list view */
.song-list { display: flex; flex-direction: column; gap: 2px; }
.song-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.song-item:hover { background: rgba(212,160,23,0.05); }
.song-num { font-size: 0.85rem; color: var(--muted); width: 28px; text-align: center; flex-shrink: 0; }
.song-thumb { width: 48px; height: 36px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.song-thumb-placeholder { width: 48px; height: 36px; border-radius: 6px; background: var(--slate); flex-shrink: 0; }
.song-details { flex: 1; min-width: 0; }
.song-details h3 { font-size: 0.95rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.song-details h3 a { color: var(--text); }
.song-details h3 a:hover { color: var(--gold); }
.song-details p { font-size: 0.8rem; color: var(--muted); }
.song-actions { flex-shrink: 0; }

/* ── Song Detail ────────────────────────────────────────────────── */
.song-detail-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.song-detail-desc { margin-bottom: 32px; }
.song-detail-desc h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 12px; }
.song-detail-meta dl { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; }
.song-detail-meta dt { font-weight: 600; color: var(--gold); font-size: 0.85rem; }
.song-detail-meta dd { color: var(--text); font-size: 0.9rem; }

/* ── Performances ───────────────────────────────────────────────── */
.performances-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.perf-card {
  background: var(--dark); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: all var(--transition);
}
.perf-card:hover { border-color: var(--gold-dim); box-shadow: var(--shadow); }
.perf-info { padding: 20px; }
.perf-info h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 6px; }
.perf-date-badge { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.perf-date { font-size: 0.8rem; color: var(--muted); }
.perf-desc { font-size: 0.9rem; color: var(--muted); margin-top: 8px; line-height: 1.5; }
.perf-placeholder {
  aspect-ratio: 16/9; background: var(--slate);
  display: flex; align-items: center; justify-content: center;
}

.event-category {
  display: inline-block; padding: 2px 10px; border-radius: 12px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
}
.cat-tv { background: rgba(212,160,23,0.2); color: var(--gold); }
.cat-international { background: rgba(168,85,247,0.2); color: var(--purple-glow); }
.cat-concert { background: rgba(59,130,246,0.2); color: #60a5fa; }

/* Event cards (upcoming) */
.events-list { display: flex; flex-direction: column; gap: 16px; }
.event-card {
  display: flex; align-items: center; gap: 24px;
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: all var(--transition);
}
.event-card:hover { border-color: var(--gold-dim); }
.event-upcoming { border-left: 4px solid var(--gold); }
.event-date { text-align: center; flex-shrink: 0; min-width: 70px; }
.event-month { display: block; font-size: 0.8rem; color: var(--gold); text-transform: uppercase; font-weight: 700; }
.event-day { display: block; font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1.2; }
.event-year { display: block; font-size: 0.75rem; color: var(--muted); }
.event-info { flex: 1; }
.event-info h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.event-venue { font-size: 0.85rem; color: var(--muted); }

/* ── Quote ──────────────────────────────────────────────────────── */
.section-quote {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.featured-quote {
  text-align: center; max-width: 700px; margin: 0 auto;
  padding: 40px 0;
}
.featured-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-style: italic;
  color: var(--text); line-height: 1.5;
  margin-bottom: 16px;
}
.featured-quote cite {
  font-style: normal; color: var(--gold); font-size: 0.95rem;
}
.quote-context { color: var(--muted); font-style: italic; }

/* Quotes grid */
.quotes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.quote-card {
  background: var(--dark); border-left: 3px solid var(--gold);
  padding: 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.quote-card p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; margin-bottom: 12px; line-height: 1.6; }
.quote-card cite { font-style: normal; font-size: 0.85rem; color: var(--gold); }

/* ── Timeline ───────────────────────────────────────────────────── */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 60px; top: 0; bottom: 0;
  width: 2px; background: var(--gradient-gold); opacity: 0.3;
}
.timeline-item {
  display: flex; gap: 24px; margin-bottom: 28px;
  position: relative;
}
.timeline-year {
  flex-shrink: 0; width: 50px; text-align: right;
  font-weight: 800; color: var(--gold); font-size: 1rem;
  padding-top: 4px;
}
.timeline-item::after {
  content: ''; position: absolute; left: 55px; top: 10px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--midnight);
}
.timeline-content {
  flex: 1; padding-left: 20px;
  background: var(--dark); border-radius: var(--radius-sm);
  padding: 16px 20px; border: 1px solid var(--border);
}
.timeline-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.timeline-content p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.timeline-badge {
  display: inline-block; padding: 2px 8px; border-radius: 8px;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
  margin-bottom: 6px;
}
.badge-award { background: rgba(212,160,23,0.2); color: var(--gold); }
.badge-career { background: rgba(59,130,246,0.2); color: #60a5fa; }
.badge-milestone { background: rgba(168,85,247,0.2); color: var(--purple-glow); }
.badge-birth { background: rgba(52,211,153,0.2); color: #34d399; }

/* ── Bio Layout ─────────────────────────────────────────────────── */
.bio-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.bio-text p { margin-bottom: 16px; font-size: 1rem; line-height: 1.8; color: var(--text); }
.fact-card {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  margin-bottom: 20px;
}
.fact-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 16px; }
.fact-list { display: grid; grid-template-columns: auto 1fr; gap: 8px 12px; }
.fact-list dt { font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.fact-list dd { font-size: 0.9rem; }

/* ── Gallery ────────────────────────────────────────────────────── */
.gallery-filters { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.filter-btn {
  background: var(--dark); color: var(--muted); border: 1px solid var(--border);
  padding: 8px 18px; border-radius: 20px; cursor: pointer;
  font-size: 0.85rem; font-weight: 500; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--midnight); border-color: var(--gold); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 16/10; cursor: pointer;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 16px; opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay p { font-size: 0.9rem; font-weight: 500; }
.gallery-credit { font-size: 0.75rem; color: var(--muted); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 85vh; text-align: center; }
.lightbox-content img { max-width: 100%; max-height: 80vh; border-radius: var(--radius-sm); }
.lightbox-content p { color: var(--text); margin-top: 12px; font-size: 0.95rem; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: none; border: none; color: white;
  font-size: 2.5rem; cursor: pointer; z-index: 2001;
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  transition: opacity var(--transition);
}
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 0.7; }

/* ── Press ──────────────────────────────────────────────────────── */
.press-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.press-bio-box {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px; margin-bottom: 32px;
}
.press-bio-box p { line-height: 1.8; }
.press-achievements { list-style: none; }
.press-achievements li {
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.press-achievements .muted { font-size: 0.85rem; color: var(--muted); }
.press-social { list-style: none; }
.press-social li { padding: 6px 0; }
.press-social a { font-weight: 500; }
.assets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.asset-card {
  background: var(--dark); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.asset-card h3 { font-size: 1rem; margin-bottom: 8px; }
.asset-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 12px; }

/* ── Contact / Form ─────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.contact-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text); }
.required { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--dark); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 0.95rem;
  font-family: inherit; transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; cursor: pointer; }
.alert {
  padding: 16px 20px; border-radius: var(--radius-sm);
  font-size: 0.95rem; margin-bottom: 20px;
}
.alert-success { background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.3); color: #34d399; }
.alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #ef4444; }
.check-list { list-style: none; }
.check-list li {
  padding: 6px 0; padding-left: 24px; position: relative; font-size: 0.9rem;
}
.check-list li::before {
  content: '\2713'; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}

/* ── Streaming Links ────────────────────────────────────────────── */
.streaming-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--night);
  border-top: 1px solid var(--border);
  padding: 60px 24px 100px;
}
.footer-container { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: var(--gold);
  letter-spacing: 2px; margin-bottom: 4px;
}
.footer-brand p { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.footer-links a { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; }
.footer-social a { color: var(--muted); transition: color var(--transition); }
.footer-social a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-note { font-size: 0.75rem; opacity: 0.6; margin-top: 4px; }

/* ── Bottom Nav ─────────────────────────────────────────────────── */
.bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(10,10,15,0.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 1000; height: 64px;
  justify-content: space-around; align-items: center;
}
.bottom-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: var(--muted); font-size: 0.65rem; font-weight: 500;
  padding: 8px; transition: color var(--transition); text-decoration: none;
}
.bottom-nav-item:hover, .bottom-nav-item.active { color: var(--gold); }
.bottom-nav-cta { position: relative; }
.bottom-nav-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gradient-gold);
  display: flex; align-items: center; justify-content: center;
  transform: translateY(-12px);
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
}
.bottom-nav-circle svg { fill: var(--midnight); }

/* ── Animations ─────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: rgba(10,10,15,0.98); padding: 16px; gap: 4px; border-bottom: 1px solid var(--border); }
  .nav-links.active { display: flex; }
  .hamburger { display: block; }

  .stats-bar { grid-template-columns: repeat(3, 1fr); transform: translateY(-20px); border-radius: var(--radius-sm); }
  .stat-item:nth-child(4), .stat-item:nth-child(5) { display: none; }
  .stat-number { font-size: 1.5rem; }

  .video-grid { grid-template-columns: 1fr; }
  .song-grid { grid-template-columns: repeat(2, 1fr); }
  .performances-grid { grid-template-columns: 1fr; }
  .quotes-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .assets-grid { grid-template-columns: 1fr; }

  .bio-layout, .press-layout, .contact-layout { grid-template-columns: 1fr; }
  .song-detail-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .event-card { flex-direction: column; align-items: flex-start; }

  .hero-title { letter-spacing: 2px; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.8rem; }

  .bottom-nav { display: flex; }
  .footer { padding-bottom: 80px; }

  .timeline::before { left: 20px; }
  .timeline-year { width: 10px; font-size: 0; }
  .timeline-item::after { left: 15px; }
  .timeline-content { margin-left: 10px; }
  .timeline-content h3::before { content: attr(data-year) ' — '; color: var(--gold); }
}

@media (max-width: 480px) {
  .song-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 260px; justify-content: center; }
}
