:root {
  --bg: #08080a;
  --bg-alt: #0f0f13;
  --fg: #f4f4f0;
  --fg-dim: #a3a3ad;
  --accent: #ccff33;
  --accent-2: #ff2ec4;
  --line: rgba(244, 244, 240, 0.14);
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 780px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

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

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

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

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

/* Header / nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: linear-gradient(to bottom, rgba(8,8,10,0.96), rgba(8,8,10,0.7) 70%, transparent);
}

.brand {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand-accent { color: var(--accent); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--fg);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 100px 24px 40px;
  overflow-y: auto;
  background: var(--bg);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.site-nav.open { transform: translateY(0); }

.site-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
}

.site-nav a:hover { color: var(--accent); }

@media (min-width: 860px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    transform: none;
    flex-direction: row;
    background: none;
    gap: 32px;
    padding: 0;
    overflow-y: visible;
  }
  .site-nav a { font-size: 0.85rem; letter-spacing: 0.04em; }
}

/* Sections */
main { position: relative; }

section { position: relative; padding: 110px 24px; }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  text-transform: uppercase;
  margin: 0 0 24px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--accent);
  transform: translateX(-50%);
}

.body-text {
  color: var(--fg-dim);
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
.hero {
  min-height: 62svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 120px 24px 56px;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(255, 46, 196, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 90%, rgba(204, 255, 51, 0.14), transparent 60%),
    var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 30% 30%, black, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: 640px;
}

@media (min-width: 860px) {
  .hero-inner { text-align: left; }
  .hero-inner .tags,
  .hero-inner .cta-row { justify-content: flex-start; }
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin: 0 0 18px;
}

.wordmark {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.6rem, 11vw, 6.4rem);
  line-height: 0.86;
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 0 clamp(12px, 8%, 56px);
  letter-spacing: -0.01em;
  color: var(--accent);
}

.wordmark span { display: block; }

.tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.6vw, 1.4rem);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 18px 0 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 4px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #08080a;
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--fg);
}

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

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  color: var(--fg-dim);
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* About */
.about { background: var(--bg-alt); }

/* Gigs */
.gig-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  text-align: left;
  display: grid;
  grid-template-columns: 96px 1fr;
}

.gig-item {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / 3;
  gap: 4px 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.gig-date {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  align-self: center;
}

.gig-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.gig-venue {
  grid-column: 2;
  color: var(--fg-dim);
  font-size: 0.9rem;
}

@media (min-width: 640px) {
  .gig-list { grid-template-columns: 140px 1fr; }
  .gig-item { align-items: baseline; }
}

.section-inner-wide { max-width: 1040px; }

.posters-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fg-dim);
  margin: 56px 0 24px;
  text-align: left;
}

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

@media (min-width: 640px) {
  .poster-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (min-width: 960px) {
  .poster-grid { grid-template-columns: repeat(4, 1fr); }
}

.poster-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c10;
  cursor: pointer;
  font-family: inherit;
}

.poster-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1041 / 1827;
  object-fit: cover;
}

.poster-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 24px 10px 10px;
  background: linear-gradient(to top, rgba(8,8,10,0.92), transparent);
  text-align: left;
}

.poster-name {
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.25;
  color: var(--fg);
}

.poster-date {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--accent);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 5, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  margin: 0;
  max-width: min(90vw, 560px);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.lightbox-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-dim);
}

.lightbox-caption strong { color: var(--fg); }

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  font-size: 1.1rem;
  cursor: pointer;
}

.lightbox-close:hover { color: var(--accent); border-color: var(--accent); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav:hover { color: var(--accent); border-color: var(--accent); }

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

@media (min-width: 640px) {
  .lightbox-prev { left: 24px; }
  .lightbox-next { right: 24px; }
}

/* Sound */
.sound { background: var(--bg-alt); }

.embed-wrap {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
  background: #0c0c10;
}

.embed-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.sc-profile-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 600;
  color: var(--fg-dim);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.sc-profile-link:hover { color: var(--accent); border-color: var(--accent); }

.inline-link {
  font-weight: 600;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
}

.inline-link:hover { color: var(--accent); border-color: var(--accent); }

/* Videos */
.videos { background: var(--bg); }

.video-placeholder {
  margin-top: 24px;
  padding: 60px 24px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--fg-dim);
  font-size: 0.9rem;
}

.video-placeholder-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

/* Crew */
.crew {
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(255, 46, 196, 0.14), transparent 60%),
    var(--bg);
}

.crew-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 8px;
}

.crew-member {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.crew-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.crew-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  text-transform: uppercase;
  margin: 6px 0 14px;
}

.crew-link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
}

.crew-link:hover { color: var(--accent); border-color: var(--accent); }

@media (min-width: 640px) {
  .crew-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* Merch */
.merch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 24px 0 28px;
}

@media (min-width: 560px) {
  .merch-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

.merch-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0c0c10;
  padding: 28px 24px;
}

.merch-info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.merch-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.merch-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 9px;
  border-radius: 999px;
}

.stack-logo {
  position: absolute;
  left: 32%;
  top: 27%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Anton', sans-serif;
  color: var(--accent);
  font-size: clamp(1.4rem, 7vw, 2.4rem);
  line-height: 0.84;
  letter-spacing: -0.01em;
}

.stack-logo span { display: block; }

.stack-logo-sm { top: 17%; font-size: clamp(0.85rem, 3.6vw, 1.2rem); }

.tee-mock {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  aspect-ratio: 380 / 440;
}

.tee-sleeve {
  position: absolute;
  top: 10%;
  width: 25%;
  height: 34%;
  background: #17171c;
}

.tee-sleeve-left {
  left: 0;
  border-radius: 8px 0 10px 12px;
  transform: skewY(16deg);
  transform-origin: top left;
}

.tee-sleeve-right {
  right: 0;
  border-radius: 0 8px 12px 10px;
  transform: skewY(-16deg);
  transform-origin: top right;
}

.tee-body {
  position: absolute;
  left: 20.5%;
  top: 3.2%;
  width: 59%;
  height: 96.8%;
  background: #1c1c22;
  border-radius: 14px 14px 6px 6px;
}

.tee-collar {
  position: absolute;
  left: 39.5%;
  top: 0;
  width: 21%;
  height: 7.7%;
  background: #0c0c10;
  border-radius: 0 0 40px 40px;
  border-bottom: 3px solid var(--bg);
}

.cap-mock {
  position: relative;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  aspect-ratio: 360 / 230;
}

.cap-crown {
  position: absolute;
  left: 8.3%;
  top: 0;
  width: 83.3%;
  height: 78.3%;
  background: #1c1c22;
  border-radius: 150px 150px 26px 26px;
}

.cap-brim {
  position: absolute;
  left: 0;
  top: 65.2%;
  width: 100%;
  height: 22.6%;
  background: #17171c;
  border-radius: 0 0 200px 200px;
}

.cap-seam {
  position: absolute;
  left: 49.4%;
  top: 0;
  width: 2px;
  height: 65.2%;
  background: #0c0c10;
  opacity: 0.6;
}

.cap-button {
  position: absolute;
  left: 50%;
  top: -2px;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: #1c1c22;
  border: 2px solid #0c0c10;
}

/* Contact */
.contact { background: var(--bg-alt); }

/* Footer */
.site-footer {
  padding: 32px 24px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--fg-dim);
  font-size: 0.85rem;
}

.footer-links { display: flex; gap: 18px; }
.footer-links a:hover { color: var(--accent); }

.footer-credit {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--fg-dim);
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-credit:hover { color: var(--accent); }

.credit-mark { width: 14px; height: 14px; display: block; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
