/* =============================================
   JUNK DIAMOND — Stylesheet v1.2
   ============================================= */

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

:root {
  --black:   #080808;
  --dark:    #111111;
  --panel:   #161616;
  --border:  #2a2a2a;
  --muted:   #666666;
  --silver:  #aaaaaa;
  --white:   #f2f2f2;
  --red:     #e8002d;
  --red-dim: #8c0019;

  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body:    'Space Grotesk', system-ui, sans-serif;
  --radius: 6px;
}

html { scroll-behavior: smooth; cursor: none; }

/* ---- CUSTOM CURSOR ---- */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.15s ease, height 0.15s ease, background 0.15s ease;
}
.cursor.hovering {
  width: 18px;
  height: 18px;
  background: var(--white);
}

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

a { color: inherit; text-decoration: none; cursor: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.btn-red:hover {
  background: #c8002a;
  border-color: #c8002a;
}

.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--silver);
}
.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn-sm {
  font-size: 0.78rem;
  padding: 0.5rem 1.1rem;
  letter-spacing: 0.08em;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5%;
  transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.9rem 5%;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: color 0.2s;
}
.nav-logo:hover { color: var(--red); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: var(--radius) !important;
}
.nav-cta:hover { background: #c8002a !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

/* Grain texture */
.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='1'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

/* Scan lines */
.hero-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.015) 3px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
  z-index: 1;
}

/* Red glow bottom-left */
.hero::before {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,0,45,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 5% 5rem;
  max-width: 1140px;
  width: 100%;
  margin-inline: auto;
}

.hero-origin {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 0.9;
  margin-bottom: 2rem;
  user-select: none;
}

.ht-junk {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  color: var(--white);
  letter-spacing: -0.01em;
}

.ht-diamond {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  letter-spacing: -0.01em;
  color: var(--black);
  -webkit-text-stroke: 2px var(--red);
  paint-order: stroke fill;
}


.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 5%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-track {
  width: 1px;
  height: 60px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 1px;
  height: 20px;
  background: var(--red);
  position: absolute;
  top: -20px;
  animation: scrollDrop 1.6s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { top: -20px; opacity: 1; }
  80%  { top: 60px;  opacity: 1; }
  100% { top: 60px;  opacity: 0; }
}

/* ---- SECTION BASE ---- */
.section { padding: clamp(5rem, 10vw, 8rem) 0; }
.section-alt { background: var(--panel); }

.sec-head {
  margin-bottom: 3.5rem;
}
.sec-head--left { text-align: left; }
.sec-head--center { text-align: center; }

.sec-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.sec-sub {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: var(--silver);
}

/* ---- RELEASES ---- */
.releases-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.release {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.release:hover {
  border-color: var(--muted);
  transform: translateY(-4px);
}

.release.featured { border-color: var(--red-dim); }
.release.featured:hover { border-color: var(--red); }

.release-art {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-1 {
  background: linear-gradient(135deg, #1a0005 0%, #3d0010 40%, #0a0a0a 100%);
}
.art-2 {
  background: linear-gradient(135deg, #0a0a12 0%, #151535 50%, #0a0a0a 100%);
}
.art-3 {
  background: linear-gradient(135deg, #0a100a 0%, #0d2010 50%, #0a0a0a 100%);
}

.art-label {
  font-family: var(--font-display);
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.08);
  user-select: none;
}

.release.featured .art-label {
  font-size: 5rem;
}

.release-badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}

.release-meta {
  padding: 1.1rem 1.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.release-type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.release-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.03em;
}
.release.featured .release-title { font-size: 1.9rem; }

.release-year {
  font-size: 0.8rem;
  color: var(--muted);
}

.release-actions {
  padding: 0.75rem 1.25rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* ---- SHOWS ---- */
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.show-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.show-row:first-child { border-top: 1px solid var(--border); }
.show-row:hover { background: rgba(255,255,255,0.02); }

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  flex-shrink: 0;
}

.sd-day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}

.sd-month {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.show-info { flex: 1; }

.show-venue {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 0.2rem;
}

.show-city {
  font-size: 0.85rem;
  color: var(--silver);
}

.show-ticket { margin-left: auto; flex-shrink: 0; }

/* ---- ABOUT ---- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--silver);
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.8;
}

.about-quote {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  letter-spacing: 0.05em;
  margin-top: 2rem;
  border-left: 3px solid var(--red);
  padding-left: 1.25rem;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-photo {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.photo-border {
  position: absolute;
  inset: -8px;
  border: 1px solid var(--red-dim);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: -1;
  transition: border-color 0.3s;
}
.about-photo:hover .photo-border { border-color: var(--red); }

/* ---- CONTACT ---- */
.contact-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.contact-email {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--white);
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.1em;
  transition: color 0.2s;
}
.contact-email:hover { color: var(--red); }

.social-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--silver);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232, 0, 45, 0.06);
}

/* ---- FOOTER ---- */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- MOBILE NAV ---- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 99;
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-links a { font-size: 1rem; padding: 0.75rem 2rem; }

  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .releases-grid { grid-template-columns: 1fr 1fr; }
  .releases-grid .release.featured { grid-column: 1 / -1; }
  .releases-grid .release.featured .release-art { aspect-ratio: 2/1; }
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-photo { max-width: 100%; aspect-ratio: 16/9; }
}

@media (max-width: 600px) {
  .releases-grid { grid-template-columns: 1fr; }
  .releases-grid .release.featured { grid-column: auto; }
  .releases-grid .release.featured .release-art { aspect-ratio: 1; }
  .show-row { gap: 1rem; }
  .show-ticket { display: none; }
  .ht-junk, .ht-diamond { font-size: clamp(4rem, 20vw, 8rem); }
  .footer-inner { flex-direction: column; text-align: center; }
}
