:root {
  --black: #07070a;
  --black-2: #0e0e14;
  --pink: #ff3fb0;
  --pink-dim: #a82a72;
  --teal: #3fe6c8;
  --gold: #e8b923;
  --off-white: #ece9e6;
  --border: rgba(236, 233, 230, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'Space Mono', 'Courier New', monospace;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 0;
  line-height: 1.6;
  font-weight: 400;
}

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

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

/* film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  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 ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  background: linear-gradient(to bottom, rgba(7,7,10,0.85), rgba(7,7,10,0));
}

.logo {
  font-size: 0.85rem;
  color: var(--pink);
  text-shadow: 0 0 10px rgba(255,63,176,0.7);
  z-index: 101;
}

.site-nav {
  display: flex;
  gap: 1.8rem;
}

.site-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  padding: 0.4rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 0.5rem;
}

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 480px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,10,0.95) 0%, rgba(7,7,10,0.15) 45%, rgba(7,7,10,0.35) 100%);
}

.scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    rgba(0,0,0,0.15) 1px,
    transparent 1px,
    transparent 3px
  );
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 2rem 4rem;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--teal);
  margin-bottom: 0.8rem;
}

.hero-tagline {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(0.85rem, 2.8vw, 1.6rem);
  line-height: 1.9;
  color: var(--pink);
  text-shadow: 0 0 16px rgba(255,63,176,0.6);
  margin-bottom: 1.6rem;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  padding: 0.8rem 2rem;
  border: 1px solid var(--pink);
  color: var(--off-white);
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  background: var(--pink);
  color: var(--black);
  box-shadow: 0 0 20px rgba(255,63,176,0.6);
}

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

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 14px rgba(63,230,200,0.35);
}

/* ---------- sections ---------- */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-title {
  font-size: 1.4rem;
  color: var(--off-white);
  margin-bottom: 0.6rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--teal);
  margin-top: 0.6rem;
}

.section-sub {
  font-size: 0.85rem;
  color: rgba(236,233,230,0.55);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

/* ---------- music ---------- */
.music-section .section-title { margin-bottom: 2.5rem; }

.music-card {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.music-art {
  width: 220px;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.music-info .tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.9rem;
}

.music-info h3 {
  font-size: 1.05rem;
  color: var(--pink);
  margin-bottom: 1rem;
}

.music-info p {
  font-size: 0.9rem;
  color: rgba(236,233,230,0.75);
  margin-bottom: 1.4rem;
  max-width: 42ch;
}

.platform-row {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.platform {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(236,233,230,0.4);
  border-bottom: 1px dashed rgba(236,233,230,0.25);
  padding-bottom: 2px;
}

/* ---------- shop ---------- */
.shop-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.shop-heading .section-title {
  margin-bottom: 0;
}

/* Storefront Web Components render a red "shopify-error" box (with its own
   injected <style>) when the store isn't configured or a listing query fails.
   Scoped to #shopifyCollection only, so shopify-cart errors (add-to-cart,
   discount codes, etc.) still surface for real once the store is live.
   Higher specificity here overrides it regardless of DOM insertion order. */
#shopifyCollection .shopify-error {
  background-color: transparent !important;
  color: transparent !important;
  font-size: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  border: 1px dashed var(--border);
  position: relative;
}

#shopifyCollection .shopify-error::before {
  content: "COMING SOON :)";
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(236,233,230,0.55);
}

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

.product-card {
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.25s;
}

.product-card:hover {
  border-color: var(--pink-dim);
}

.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  margin-bottom: 1.5rem;
}

.product-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-info h3 {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.product-info .price {
  color: var(--teal);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

/* ---------- about ---------- */
.about-bio {
  max-width: 62ch;
  color: rgba(236,233,230,0.8);
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

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

.member {
  display: flex;
  flex-direction: column;
}

.member-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--border);
  filter: grayscale(65%) contrast(1.05);
  margin-bottom: 1.1rem;
  transition: filter 0.3s;
}

.member:hover .member-photo {
  filter: grayscale(0%);
}

.member h4 {
  font-family: 'Press Start 2P', monospace;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--pink);
  margin-bottom: 0.4rem;
}

.member-role {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

.member-bio {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(236,233,230,0.7);
}

/* ---------- connect ---------- */
.social-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.2rem;
}

.social-list a {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.social-list a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.contact-email {
  margin-top: 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(236,233,230,0.55);
}

.contact-email a {
  color: var(--off-white);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

/* ---------- footer ---------- */
.site-footer {
  text-align: center;
  padding: 2.5rem 2rem 3rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(236,233,230,0.4);
  border-top: 1px solid var(--border);
}

.site-footer a {
  color: rgba(236,233,230,0.6);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-footer a:hover {
  color: var(--teal);
  border-color: var(--teal);
}

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 70vw;
    max-width: 300px;
    background: var(--black-2);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

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

  .nav-toggle { display: flex; }

  .music-card {
    flex-direction: column;
    text-align: center;
  }

  .music-info p { max-width: none; }

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

  .member-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
