/* 
  SUBSONIC SECT - MASTER STYLESHEET 
  Shared across all site pages.
*/

/* ── Root & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --white: #f0ede8;
  --accent: #c8c0b0;
  --dim: #888;
  --pad-mobile: 20px;
  --pad-tablet: 36px;
  --pad-desktop: 64px;
}

html, body {
  width: 100%; min-height: 100%;
  background: var(--black);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  overflow-x: hidden;
}

/* ── Global Elements ── */
#waveCanvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.back-to-top {
  position: fixed;
  bottom: 28px; right: 24px;
  z-index: 200;
  width: 44px; height: 44px;
  border: 1px solid #555;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s;
}
.back-to-top:hover { border-color: var(--white); background: rgba(0,0,0,0.95); }
.back-to-top svg { width: 16px; height: 16px; stroke: var(--white); fill: none; stroke-width: 2; }

/* ── Navigation ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--pad-mobile);
  background: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.logo {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  font-family: 'DM Mono', monospace;
  text-decoration: none;
  z-index: 101;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.nav-drawer a {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-drawer a:hover, .nav-drawer a.active { color: var(--white); }

.nav-links {
  display: none;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }

/* ── Ticker & Ghost Text ── */
.ticker {
  position: relative;
  z-index: 1;
  border-top: 1px solid #111;
  border-bottom: 1px solid #111;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker 24s linear infinite;
}
.ticker-item {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ghost-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  height: clamp(60px, 15vw, 130px);
  pointer-events: none;
  user-select: none;
}
.ghost-text {
  position: absolute;
  bottom: -0.15em;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 9vw, 7rem);
  white-space: nowrap;
  line-height: 1;
  color: var(--white);
  opacity: 0.04;
  letter-spacing: -0.02em;
}

/* ── Common Page Layouts ── */
.page {
  position: relative;
  z-index: 1;
  padding: 120px var(--pad-mobile) 80px;
  max-width: 800px;
  margin: 0 auto;
}
.page-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.page-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--dim);
  flex-shrink: 0;
}
.page-title {
  font-size: clamp(2.2rem, 8vw, 4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 60px;
}

/* ── [INDEX / LANDING] ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  padding: 100px var(--pad-mobile) 60px;
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }
h1 {
  font-size: clamp(2.6rem, 10vw, 6rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
}
h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1px var(--accent); }
.hero-desc { font-family: 'DM Mono', monospace; font-size: 0.78rem; line-height: 1.85; color: #999; }
.hero-visual { display: flex; align-items: center; justify-content: center; }

.manifesto {
  position: relative;
  z-index: 1;
  padding: 80px var(--pad-mobile) 100px;
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.manifesto-title::after { content: ''; flex: 1; height: 1px; background: #1a1a1a; }
.manifesto-block { margin-bottom: 40px; }
.manifesto-heading { font-family: 'Syne', sans-serif; font-size: clamp(1.1rem, 3vw, 1.5rem); font-weight: 800; color: var(--white); margin-bottom: 20px; }
.manifesto-body { font-family: 'DM Mono', monospace; font-size: 0.78rem; line-height: 2; color: #999; }
.manifesto-pillar { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.pillar-label { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.72rem; color: var(--white); white-space: nowrap; }
.pillar-dot { font-family: 'DM Mono', monospace; font-size: 0.78rem; color: var(--dim); }
.pillar-text { font-family: 'DM Mono', monospace; font-size: 0.78rem; line-height: 1.85; color: #999; }

/* ── [ARTISTS] ── */
.artist-list { display: flex; flex-direction: column; gap: 0; }
.artist {
  border-top: 1px solid #1a1a1a;
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  transition: background 0.2s;
}
.artist:last-child { border-bottom: 1px solid #1a1a1a; }
.artist-photo {
  width: 72px; height: 72px;
  flex-shrink: 0;
  background: #0d0d0d;
  border: 1px solid #1c1c1c;
  overflow: hidden;
}
.artist-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artist-info { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.artist-name { font-family: 'Syne', sans-serif; font-size: clamp(1rem, 3vw, 1.2rem); font-weight: 800; color: var(--white); transition: color 0.2s; }
.artist-link-label { font-family: 'DM Mono', monospace; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim); transition: color 0.2s; }
.artist-arrow {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.artist-arrow svg {
  width: 14px; height: 14px;
  stroke: #333; fill: none; stroke-width: 1.5;
  transition: stroke 0.2s, transform 0.2s;
}
.artist:hover .artist-name, .artist:hover .artist-link-label { color: var(--accent); }
.artist:hover .artist-arrow svg { stroke: var(--accent); transform: translateX(4px); }

/* ── [LABELS] ── */
.label-list { display: flex; flex-direction: column; gap: 0; }
.label {
  border-top: 1px solid #1a1a1a;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.label:last-child { border-bottom: 1px solid #1a1a1a; }
.label-image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 16 / 9;
  background: #0d0d0d;
  border: 1px solid #1c1c1c;
  overflow: hidden;
}
.label-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: opacity 0.3s; }
.label:hover .label-image img { opacity: 0.85; }
.label-footer {
  width: 100%;
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.label-info { flex: 1; }
.label-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  transition: color 0.2s;
}
.label-link-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.2s;
}
.label-arrow {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.label-arrow svg {
  width: 14px; height: 14px;
  stroke: #333; fill: none; stroke-width: 1.5;
  transition: stroke 0.2s, transform 0.2s;
}
.label:hover .label-name, .label:hover .label-link-label { color: var(--accent); }
.label:hover .label-arrow svg { stroke: var(--accent); transform: translateX(4px); }

/* ── [MUSIC] ── */
.release-list { display: flex; flex-direction: column; gap: 0; }
.release {
  border-top: 1px solid #1a1a1a;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.release:last-child { border-bottom: 1px solid #1a1a1a; }
.release-header { display: flex; align-items: flex-start; gap: 16px; }
.release-artwork {
  width: 80px; height: 80px;
  flex-shrink: 0;
  background: #0d0d0d;
  border: 1px solid #1c1c1c;
  overflow: hidden;
}
.release-artwork img { width: 100%; height: 100%; object-fit: cover; display: block; }
.release-info { flex: 1; }
.release-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.release-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
}
.release-links { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.stream-link {
  font-family: 'DM Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid #222;
  padding: 6px 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
}
.stream-link:hover { color: var(--white); border-color: #555; }

/* Custom Audio Player */
.custom-player {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.play-btn {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border: 1px solid #333;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  padding: 0;
}
.play-btn:hover { border-color: var(--white); }
.play-btn svg { width: 12px; height: 12px; fill: var(--white); stroke: none; }
.play-btn .icon-pause { display: none; }
.play-btn.playing .icon-play { display: none; }
.play-btn.playing .icon-pause { display: block; }

.player-progress {
  flex: 1;
  height: 1px;
  background: #222;
  position: relative;
  cursor: pointer;
}
.player-progress-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  position: relative;
}
.player-time {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--dim);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 70px;
  text-align: right;
}
.player-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.volume-icon {
  width: 14px; height: 14px;
  stroke: var(--dim); fill: none; stroke-width: 1.5;
  cursor: pointer;
  flex-shrink: 0;
}
.volume-icon:hover { stroke: var(--white); }
.volume-bar {
  width: 48px; height: 1px;
  background: #222;
  position: relative;
  cursor: pointer;
}
.volume-fill {
  height: 100%;
  background: #555;
  width: 80%;
}

/* ── [CONTACT] ── */
.contact-block {
  border-top: 1px solid #1a1a1a;
  padding: 36px 0;
}
.contact-block:last-of-type { border-bottom: 1px solid #1a1a1a; }
.contact-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
}
.contact-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.contact-desc {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  line-height: 1.85;
  color: #777;
  margin-bottom: 20px;
  max-width: 480px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid #333;
  padding-bottom: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.contact-email:hover { border-color: var(--white); color: var(--accent); }
.contact-email svg {
  width: 13px; height: 13px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}
.social-list { display: flex; flex-direction: column; gap: 0; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid #141414;
  text-decoration: none;
  transition: opacity 0.2s;
}
.social-link:first-child { border-top: none; }
.social-link-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.2s;
}
.social-link-handle {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  color: var(--dim);
  transition: color 0.2s;
}
.social-link-arrow svg {
  width: 13px; height: 13px;
  stroke: #333; fill: none; stroke-width: 1.5;
  transition: stroke 0.2s, transform 0.2s;
}
.social-link:hover .social-link-name, .social-link:hover .social-link-handle { color: var(--accent); }
.social-link:hover .social-link-arrow svg { stroke: var(--accent); transform: translateX(4px); }

/* ── Responsive ── */
@media (min-width: 640px) {
  nav { padding: 24px var(--pad-tablet); }
  .page { padding: 140px var(--pad-tablet) 100px; }
}
@media (min-width: 960px) {
  nav { padding: 28px var(--pad-desktop); }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .page { padding: 160px var(--pad-desktop) 120px; }
  .release-artwork { width: 120px; height: 120px; }
}