:root {
  --bg: #080808;
  --bg-2: #0f0f0f;
  --fg: #f0ede8;
  --fg-dim: #888480;
  --fg-muted: #3a3835;
  --gold: #e8c547;
  --gold-glow: rgba(232, 197, 71, 0.12);
  --gold-border: rgba(232, 197, 71, 0.25);
  --red: #e02020;
  --surface: #131313;
  --surface-border: rgba(255, 255, 255, 0.06);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--surface-border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 3px;
  text-transform: uppercase;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--fg);
  text-transform: uppercase;
}

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  background: var(--red);
  padding: 0.6rem 1.25rem;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.88; }

/* ─── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 2.5rem 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/company_134230/images/c677b284-1338-4388-8716-cc531dde56ce.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: brightness(0.38);
  transform: scale(1.02);
  transition: transform 8s ease;
}

.hero-bg-fallback {
  /* fires when image fails */
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1008 60%, #0a0a0a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.95) 0%,
    rgba(8, 8, 8, 0.4) 40%,
    rgba(8, 8, 8, 0.1) 100%
  );
}

.hero-grain {
  position: absolute;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: 6rem;
}

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

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-title-accent {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-album-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-album-tag span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  background: var(--red);
  padding: 1rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--fg);
  background: transparent;
  border: 1px solid rgba(240, 237, 232, 0.25);
  padding: 1rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s, transform 0.2s;
}

.btn-secondary:hover { border-color: var(--fg); transform: translateY(-1px); }

/* ─── ALBUM SHOWCASE ─────────────────────────── */
.album {
  padding: 8rem 2.5rem;
  border-top: 1px solid var(--surface-border);
  position: relative;
  overflow: hidden;
}

.album::before {
  content: 'FOREIGN';
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.015);
  letter-spacing: -0.04em;
  pointer-events: none;
  white-space: nowrap;
  text-transform: uppercase;
}

.album-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.album-meta {
  position: sticky;
  top: 6rem;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--gold);
}

.album-cover {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
  background: var(--surface);
}

.album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.album-cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a0d 0%, #2a2010 50%, #1a1a0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.album-cover-text {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-style: italic;
  opacity: 0.7;
}

.album-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--gold);
  font-style: italic;
}

.album-artist {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.album-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat {
  font-size: 0.75rem;
  color: var(--fg-dim);
  letter-spacing: 0.1em;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 0.1rem;
}

/* ─── TRACKLIST ─────────────────────────────── */
.tracklist {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 2.5rem;
}

.tracklist-header {
  margin-bottom: 2rem;
}

.track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--surface-border);
  transition: background 0.2s;
  border-radius: 4px;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  cursor: default;
}

.track:first-of-type { border-top: 1px solid var(--surface-border); }

.track:hover {
  background: rgba(224, 32, 32, 0.04);
}

.track.lead-single {
  background: rgba(224, 32, 32, 0.07);
  border-color: rgba(224, 32, 32, 0.3);
}

.track.lead-single:first-of-type { border-top-color: rgba(224, 32, 32, 0.3); }

.track-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--fg-muted);
  width: 1.5rem;
  text-align: right;
  flex-shrink: 0;
}

.track.lead-single .track-num { color: var(--gold); }

.track-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg-dim);
  flex: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.track.lead-single .track-name { color: var(--fg); }

.track-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  background: var(--red);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.track-video-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ─── RADIO CREDIBILITY ─────────────────────── */
.radio {
  padding: 8rem 2.5rem;
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  position: relative;
  overflow: hidden;
}

.radio-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.radio-header {
  max-width: 600px;
  margin-bottom: 5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--fg-dim);
  line-height: 1.7;
}

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

.radio-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
  border: 1px solid var(--surface-border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}

.radio-card:hover { border-color: var(--gold-border); }

.radio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}

.radio-flag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.radio-station {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.radio-desc {
  font-size: 0.9rem;
  color: var(--fg-dim);
  line-height: 1.6;
}

.radio-stat {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--surface-border);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
}

.radio-stat-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--fg-dim);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ─── ARTIST PHOTOS STRIP ───────────────────── */
.photos {
  padding: 0;
  height: 60vh;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2px;
  overflow: hidden;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7) contrast(1.1);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.photo-panel:hover img {
  transform: scale(1.04);
  filter: brightness(0.85) contrast(1.05);
}

.photo-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.6) 0%, transparent 60%);
}

/* ─── BIO ─────────────────────────────────────── */
.bio {
  padding: 8rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.bio::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.bio-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.bio-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--surface);
}

.bio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: brightness(0.85) grayscale(0.15);
}

.bio-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  pointer-events: none;
}

.bio-content {}

.bio-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.bio-quote em {
  color: var(--gold);
  font-style: italic;
}

.bio-text {
  font-size: 1.05rem;
  color: var(--fg-dim);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ─── STREAM CTA ─────────────────────────────── */
.stream-cta {
  padding: 10rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--surface-border);
}

.stream-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(224, 32, 32, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.stream-cta-inner {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.stream-cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.stream-cta-title em {
  color: var(--gold);
  font-style: italic;
}

.stream-cta-sub {
  font-size: 1.05rem;
  color: var(--fg-dim);
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.stream-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.5rem;
  border-radius: 3px;
  border: 1px solid var(--surface-border);
  color: var(--fg);
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s;
}

.platform-btn:hover {
  border-color: var(--gold-border);
  background: rgba(232, 197, 71, 0.06);
}

.platform-btn.primary-platform {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  font-size: 1rem;
  padding: 1.1rem 3rem;
  letter-spacing: 0.15em;
}

.platform-btn.primary-platform:hover {
  opacity: 0.88;
  background: var(--red);
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.social-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--fg-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ─── YOUTUBE VIDEO ─────────────────────────── */
.video-section {
  padding: 8rem 2.5rem;
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.video-section-inner {
  max-width: 900px;
  margin: 0 auto;
}

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

.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(224, 32, 32, 0.25);
  box-shadow: 0 0 80px rgba(224, 32, 32, 0.12);
}

.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ─── SOUNDCLOUD TRACKLIST EMBEDS ───────────── */
/* Two playlist iframes side-by-side.
   Cropped so only the track-name list is visible —
   the waveform bar and bottom timeline are hidden via overflow+offset. */
.sc-tracklist-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: flex-start;
}

.sc-embed-wrap {
  flex: 1;
  position: relative;
  /* Height shows roughly 8 track rows at ~40px each */
  height: 330px;
  overflow: hidden;
  border-radius: 4px;
  background: #111;
}

.sc-embed-wrap iframe {
  /* Offset upward to push the SoundCloud header/controls out of the visible window.
     ~116px hides the compact-player waveform bar at top.
     Adjust this value if the header is taller or shorter on your playlists. */
  position: absolute;
  top: -116px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(330px + 116px + 44px);  /* visible + top-crop + bottom-controls */
  border: 0;
  pointer-events: auto;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  padding: 2.5rem 2.5rem;
  border-top: 1px solid var(--surface-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fg-muted);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .sc-tracklist-row {
    flex-direction: column;
  }

  .album-inner,
  .bio-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .album-meta { position: static; }

  .radio-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .photos {
    grid-template-columns: 1fr 1fr;
    height: 50vw;
  }

  .photos .photo-panel:last-child {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav { padding: 1rem 1.25rem; }
  .nav-links { display: none; }

  .hero { padding: 0 1.25rem 4rem; }

  .album, .radio, .bio, .stream-cta {
    padding: 5rem 1.25rem;
  }

  .hero-title {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .footer-inner {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .photos {
    grid-template-columns: 1fr;
    height: 70vw;
  }

  .photos .photo-panel:not(:first-child) {
    display: none;
  }

  .stream-platforms {
    flex-direction: column;
    align-items: stretch;
  }

  .platform-btn {
    justify-content: center;
  }
}
