/* ===== Variables ===== */
:root {
  --black: #0a0a0a;
  --dark: #141414;
  --dark-2: #1a1a1a;
  --gold: #f5c518;
  --gold-light: #ffd84d;
  --red: #d90429;
  --red-dark: #a8031f;
  --white: #fafafa;
  --gray: #888;
  --gray-light: #bbb;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --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;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--gray-light);
  max-width: 540px;
  font-size: 1.05rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ===== Grain overlay ===== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 197, 24, 0.1);
  padding: 0.85rem 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  max-width: 220px;
  line-height: 1.1;
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== Hero — cinematic full-bleed ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 25%;
  transform: scale(1.08);
  animation: kenBurns 18s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.25) 40%, rgba(10, 10, 10, 0.92) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.2) 55%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 7rem 1.5rem 5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--gold);
  margin-bottom: 0.85rem;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 16ch;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-desc {
  color: var(--gray-light);
  font-size: 1.08rem;
  margin-bottom: 1.75rem;
  max-width: 38ch;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 197, 24, 0.3);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
  color: inherit;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

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

@keyframes kenBurns {
  from { transform: scale(1.05) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-1.5%, -1%, 0); }
}

/* Featured watch */
.watch {
  background: var(--black);
  padding-top: 4.5rem;
}

.watch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.watch-card {
  background: var(--dark-2);
  border: 1px solid rgba(245, 197, 24, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.watch-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}

.watch-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.watch-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background:
    linear-gradient(160deg, rgba(217, 4, 41, 0.35), rgba(10, 10, 10, 0.9)),
    url('images/hero.png') center/cover;
  color: var(--white);
  text-align: center;
  padding: 1rem;
}

.watch-fallback span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.watch-fallback p {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.watch-card h3 {
  font-size: 1.05rem;
  padding: 0.95rem 1rem 0.35rem;
}

.watch-card .watch-label {
  display: block;
  padding: 0 1rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Streaming badges */
.streaming {
  padding: 2.5rem 0;
  background: var(--dark);
  border-top: 1px solid rgba(245, 197, 24, 0.08);
  border-bottom: 1px solid rgba(245, 197, 24, 0.08);
}

.streaming-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2rem;
}

.streaming-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

.streaming-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stream-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.03);
}

.stream-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.stream-badge svg {
  width: 18px;
  height: 18px;
}

/* Social proof */
.proof {
  padding: 4.5rem 0;
  background: var(--black);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.proof-item {
  padding: 1.5rem 1rem;
  text-align: center;
  border-top: 2px solid var(--gold);
}

.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.proof-item span {
  font-size: 0.9rem;
  color: var(--gray-light);
}

.proof-note {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}

/* News */
.news {
  background: var(--dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.news-card {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.news-card time {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.news-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
  line-height: 1.25;
}

.news-card p {
  color: var(--gray-light);
  font-size: 0.98rem;
}

/* Support */
.support {
  background: var(--black);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.support-option {
  display: block;
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(245, 197, 24, 0.18);
  border-radius: var(--radius);
  background: var(--dark-2);
  transition: var(--transition);
}

.support-option:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.support-option strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--gold);
}

.support-option span {
  color: var(--gray-light);
  font-size: 0.95rem;
}

.support-contact {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.9rem;
}

.support-contact a { color: var(--gold); }

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, rgba(217, 4, 41, 0.22), rgba(10, 10, 10, 0.95) 55%), var(--dark);
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: end;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  position: relative;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  outline: none;
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--gold);
}

.newsletter-form .honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.newsletter-form .form-status {
  width: 100%;
  font-size: 0.9rem;
  color: var(--gold);
}

/* Official verification */
.official {
  padding: 3rem 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(245, 197, 24, 0.15);
}

.official-inner {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.official-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.official-kicker {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.official h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}

.official p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

.official a { color: var(--gold); }

/* Journey / background story */
.journey {
  background: var(--dark);
}

.journey-timeline {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.journey-chapter {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.journey-chapter.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.journey-chapter.reverse .journey-media {
  order: 2;
}

.journey-chapter.reverse .journey-copy {
  order: 1;
}

.journey-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  background: var(--dark-2);
}

.journey-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.journey-chapter:hover .journey-media img {
  transform: scale(1.04);
}

.journey-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}

.journey-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 0.85rem;
}

.journey-copy p {
  color: var(--gray-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== About ===== */
.about {
  background: var(--black);
}

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

.about-visual {
  position: relative;
}

.about-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 380px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.about-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.about-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  width: fit-content;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--white);
}

.about-float {
  position: absolute;
  font-size: 2.5rem;
  animation: float 4s ease-in-out infinite;
}

.about-float-1 {
  top: 10%;
  right: -10%;
  animation-delay: -1s;
}

.about-float-2 {
  bottom: 20%;
  left: -8%;
  animation-delay: -2s;
}

.about-text p {
  color: var(--gray-light);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.about-highlights {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-highlights li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight-icon {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 197, 24, 0.1);
  border-radius: var(--radius);
}

.art-mark,
.play-mark {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  color: var(--black);
}

.featured-art-inner .art-mark {
  font-size: 2.4rem;
  color: var(--black);
}

.contact-tag {
  display: inline-block;
  min-width: 4.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.player-btn {
  width: auto;
  min-width: 44px;
  padding: 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.player-btn-play {
  width: auto;
  min-width: 72px;
  padding: 0 1.1rem;
}

.song-card-play {
  width: auto;
  min-width: 52px;
  padding: 0 0.55rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 1;
}

.official-badge {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.perf-placeholder {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  color: var(--gold);
}

.about-highlights strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.about-highlights span {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===== Music ===== */
.music {
  background: var(--dark);
}

.music-featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(245, 197, 24, 0.1);
}

.featured-art {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

.featured-art-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
}

.featured-pulse {
  position: absolute;
  inset: -8px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  opacity: 0;
  animation: pulse 2s ease infinite;
}

.featured-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.featured-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin: 0.25rem 0;
}

.featured-artist {
  color: var(--gray);
  margin-bottom: 1.25rem;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.player-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-btn:hover {
  background: rgba(245, 197, 24, 0.2);
  color: var(--gold);
}

.player-btn-play {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--black);
  font-size: 1.2rem;
}

.player-btn-play:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.progress-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.time-label {
  font-size: 0.75rem;
  color: var(--gray);
  min-width: 2.2rem;
  font-variant-numeric: tabular-nums;
}

.progress-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 4px;
  pointer-events: none;
}

.featured-pulse.active {
  animation: pulse 2s ease infinite;
  opacity: 1;
}

.player-note {
  font-size: 0.8rem;
  color: var(--gray);
}

.player-note code {
  background: rgba(245, 197, 24, 0.1);
  color: var(--gold);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.75rem;
}

.about-cta {
  margin-top: 1.75rem;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.song-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--dark-2);
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.song-card:hover,
.song-card.active {
  border-color: rgba(245, 197, 24, 0.3);
  background: rgba(245, 197, 24, 0.05);
}

.song-card-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gray);
  width: 32px;
  text-align: center;
}

.song-card.active .song-card-num {
  color: var(--gold);
}

.song-card-info {
  flex: 1;
  min-width: 0;
}

.song-card-title {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.song-card-meta {
  font-size: 0.8rem;
  color: var(--gray);
}

.song-card-play {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(245, 197, 24, 0.15);
  color: var(--gold);
  cursor: pointer;
  font-size: 0.75rem;
  opacity: 0;
  transition: var(--transition);
  flex-shrink: 0;
}

.song-card:hover .song-card-play,
.song-card.active .song-card-play {
  opacity: 1;
}

/* ===== Gallery ===== */
.gallery {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  display: block;
  width: 100%;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.gallery-item-large {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* ===== Contact ===== */
.contact {
  background: var(--dark);
}

.contact-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid rgba(245, 197, 24, 0.1);
}

.contact-text p {
  color: var(--gray-light);
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--gray-light);
  transition: color var(--transition);
}

a.contact-link:hover {
  color: var(--gold);
}

.contact-form {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}

.contact-form .honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.25rem;
}

.contact-form .btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.form-status {
  font-size: 0.9rem;
  color: var(--gray);
  min-height: 1.2em;
}

.form-status.success {
  color: var(--gold);
}

.social-links h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid transparent;
}

.social-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-btn:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.3);
  color: var(--gold);
}

/* ===== Footer ===== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(90vw, 720px);
  max-height: 75vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: rgba(245, 197, 24, 0.25);
  color: var(--gold);
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

.hero-scroll {
  color: inherit;
}

.empty-state {
  color: var(--gray);
  text-align: center;
  padding: 2rem;
  grid-column: 1 / -1;
}

.empty-state a { color: var(--gold); }

.clips {
  background: var(--dark);
}

.clips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.clip-card {
  background: var(--dark-2);
  border: 1px solid rgba(245, 197, 24, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.clip-card h3 {
  font-size: 1rem;
  padding: 0.9rem 1rem 1rem;
}

.clip-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.clip-frame iframe,
.clip-card video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}

.clip-link {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem;
  color: inherit;
}

.clip-link span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.clip-link p { color: var(--gray); font-size: 0.85rem; }

.performances {
  background: var(--black);
}

.perf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

.perf-card {
  background: var(--dark-2);
  border: 1px solid rgba(245, 197, 24, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.perf-card img,
.perf-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: linear-gradient(135deg, #2a2a2a, #111);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
}

.perf-body { padding: 1.1rem 1.2rem 1.3rem; }
.perf-body h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.perf-meta { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.5rem; }
.perf-body p:last-child { color: var(--gray-light); font-size: 0.95rem; }

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes pulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.15); }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-content {
    padding: 6.5rem 1.25rem 4rem;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .watch-grid,
  .proof-grid,
  .news-grid,
  .support-grid,
  .newsletter-inner,
  .journey-chapter,
  .journey-chapter.reverse {
    grid-template-columns: 1fr;
  }

  .journey-chapter.reverse .journey-media,
  .journey-chapter.reverse .journey-copy {
    order: initial;
  }

  .journey-media {
    aspect-ratio: 16 / 11;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-card {
    max-width: 100%;
  }

  .music-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-art {
    margin: 0 auto;
  }

  .player-controls {
    justify-content: center;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item-large {
    grid-row: span 1;
    grid-column: span 2;
    aspect-ratio: 16/9;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(245, 197, 24, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .proof-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 1;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 2rem 1.5rem;
  }

  .streaming-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
