/* ============================================================
   CBLS — Global Styles
   Pure black · condensed bold font · cyan accent · watermark headers
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100..900;1,100..900&family=Barlow:wght@300;400;500;600&display=swap');


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

:root {
  --bg:        #000000;
  --bg2:       #0d0d0d;
  --bg3:       #1a1a1a;
  --cyan:      #00e5d4;
  --white:     #ffffff;
  --gray:      #888888;
  --gray-dim:  #333333;
  --border:    #222222;
  --nav-h:     76px;
  --max-w:     1120px;
  --font-cond: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section    { padding: 80px 0; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo img { height: 48px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-cond);
  font-size: 13px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white);
  transition: color 0.2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--cyan); }
.nav__social { display: flex; align-items: center; gap: 14px; }
.nav__social a { color: var(--white); opacity: 0.7; transition: opacity 0.2s; }
.nav__social a:hover { opacity: 1; }
.nav__social svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.nav__toggle { display: none; background: none; border: none; color: var(--white); }
.nav__mobile-social { display: none; }
.nav__drawer-brand { display: none; }
.hero__mobile-cover { display: none; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  padding-top: var(--nav-h);
  display: flex; align-items: flex-end;
  background: transparent !important;
}
.hero__bg {
  position: absolute; left: 50%; top: 0; bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 1920px);
  background-size: contain; background-position: center center; background-repeat: no-repeat;
}
/* Duotone: magenta + cyan, matching the live site */
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(200,55,171,0.55) 0%, rgba(0,229,212,0.35) 100%);
  mix-blend-mode: multiply;
}
.hero__overlay {
  position: absolute; left: 50%; top: 0; bottom: 0;
  transform: translateX(-50%);
  width: min(100%, 1920px);
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.28) 45%, transparent 100%);
}
.hero__content {
  position: relative; padding: 0 32px 72px;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--white); opacity: 0.8; margin-bottom: 8px;
  display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow::after {
  content: ''; flex: 0 0 60px; height: 1px; background: var(--white); opacity: 0.5;
}
.hero__art { max-width: 420px; width: 100%; margin-bottom: 24px; }
.hero__title { font-family: var(--font-cond); font-size: clamp(48px, 8vw, 96px); font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; color: var(--white); line-height: 1; margin-bottom: 16px; }
.hero__sub { font-family: var(--font-cond); font-size: 18px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); opacity: 0.85; margin-bottom: 24px; }
.hero__links {
  display: flex; align-items: center; gap: 0;
}
.hero__link {
  font-family: var(--font-cond); font-size: 15px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
  padding-right: 20px; margin-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.hero__link:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero__link:hover { color: var(--cyan); }

/* ── Section watermark ───────────────────────────────────── */
.watermark-wrap { position: relative; overflow: hidden; }
.watermark {
  position: absolute; top: -0.15em; left: 50%; transform: translateX(-50%);
  font-family: var(--font-cond); font-size: clamp(100px, 18vw, 220px);
  font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--white); opacity: 0.06; white-space: nowrap;
  pointer-events: none; user-select: none; line-height: 1;
}

/* ── Release cards ───────────────────────────────────────── */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.releases-grid--wide {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.release-card {
  background: var(--bg); position: relative;
  transition: transform 0.2s;
}
.release-card:hover { transform: translateY(-3px); }
.release-card__art {
  position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg3);
}
.release-card__art img { width: 100%; height: 100%; object-fit: cover; }
.release-card__badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(0,0,0,0.75); border: 1px solid rgba(255,255,255,0.3);
  padding: 3px 8px;
  font-family: var(--font-cond); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.release-card__featured-label { display: none; }
.release-card__body {
  background: rgba(8,8,12,0.65);
  padding: 14px 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.release-card__title {
  font-family: var(--font-cond); font-size: 18px; font-weight: 800;
  text-transform: uppercase; line-height: 1.1; margin-bottom: 3px;
}
.release-card__artist { font-size: 12px; color: var(--gray); margin-bottom: 10px; }
.release-card__divider { display: none; }
.release-card__links { display: flex; align-items: center; gap: 0; }
.release-card__link {
  font-family: var(--font-cond); font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white);
  padding-right: 14px; margin-right: 14px;
  border-right: 1px solid var(--border);
  transition: color 0.2s;
}
.release-card__link:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.release-card__link:hover { color: var(--cyan); }

/* ── CTA Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 32px;
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--white); background: transparent; color: var(--white);
  transition: all 0.2s;
}
.btn:hover { background: var(--white); color: var(--bg); }
.btn--cyan { border-color: var(--cyan); color: var(--cyan); }
.btn--cyan:hover { background: var(--cyan); color: var(--bg); }
.btn--filled { background: var(--white); color: var(--bg); }
.btn--filled:hover { background: var(--cyan); border-color: var(--cyan); color: var(--bg); }
.btn--sm { padding: 8px 20px; font-size: 12px; }

/* ── Announcement cards ──────────────────────────────────── */
.announcements-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.announcement-card { position: relative; overflow: hidden; }
.announcement-card__img { aspect-ratio: 4/3; overflow: hidden; background: var(--bg3); }
.announcement-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: brightness(0.5); }
.announcement-card:hover .announcement-card__img img { transform: scale(1.04); filter: brightness(0.65); }
.announcement-card__body { padding: 20px 0 0; }
.announcement-card__label {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray);
  margin-bottom: 6px;
}
.announcement-card__title {
  font-family: var(--font-cond); font-size: 26px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 10px; line-height: 1.1;
}
.announcement-card__desc { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.announcement-card__link {
  font-family: var(--font-cond); font-size: 14px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--white);
  transition: color 0.2s;
}
.announcement-card__link:hover { color: var(--cyan); }

/* ── Shows section ───────────────────────────────────────── */
.shows-section {
  position: relative;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.shows-section::before {
  content: ''; position: absolute; inset: 0;
  background: transparent;
}
.shows-section .watermark { color: var(--white); opacity: 0.06; }
.shows-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 400px)); gap: 16px;
  position: relative;
}
.show-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0; overflow: hidden;
  transition: border-color 0.2s;
}
.show-card:hover { border-color: rgba(255,255,255,0.3); }
.show-card__flyer { aspect-ratio: 3/4; overflow: hidden; background: var(--bg3); }
.show-card__flyer img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.show-card__body { padding: 20px 24px 24px; }
.show-card__title {
  font-family: var(--font-cond); font-size: 22px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 8px;
}
.show-card__meta {
  font-family: var(--font-cond); font-size: 14px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--gray); margin-bottom: 20px;
  display: flex; align-items: center; gap: 16px;
}
.show-card__meta-sep { color: var(--gray-dim); }

/* ── Video cards ─────────────────────────────────────────── */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }
.video-card { position: relative; overflow: hidden; }
.video-card__thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg3); position: relative; }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: brightness(0.6); }
.video-card:hover .video-card__thumb img { transform: scale(1.04); filter: brightness(0.8); }
.video-card__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.video-card__play-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; backdrop-filter: blur(4px);
}
.video-card:hover .video-card__play-icon { background: var(--white); border-color: var(--white); }
.video-card__play-icon svg { width: 20px; height: 20px; fill: var(--white); margin-left: 3px; }
.video-card:hover .video-card__play-icon svg { fill: var(--bg); }
.video-card__body { padding: 16px 0; }
.video-card__title {
  font-family: var(--font-cond); font-size: 22px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 4px;
}
.video-card__label { font-size: 13px; color: var(--gray); }

/* ── Gallery ─────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; background: var(--bg3); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; filter: brightness(0.8); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(1); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.95); align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 90vh; }
.lightbox__close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--white); font-size: 36px; line-height: 1;
}

/* ── Press Kit ───────────────────────────────────────────── */
.press-section-label {
  font-family: var(--font-cond); font-size: 22px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 6px; margin-top: 40px;
  letter-spacing: 0.04em;
}
.press-section-label:first-child { margin-top: 0; }
.press-body { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; }
.press-body p + p { margin-top: 14px; }
.press-tag {
  display: inline-block; padding: 4px 14px;
  border: 1px solid var(--border); font-size: 13px; color: var(--gray);
  margin: 4px;
}
.press-photo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 16px; }
.press-photo-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ── Merch cards ─────────────────────────────────────────── */
.merch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 400px)); gap: 16px; }
.merch-card { background: var(--bg2); }
.merch-card__img { aspect-ratio: 3/4; overflow: hidden; background: var(--bg3); }
.merch-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; padding: 0; transition: transform 0.3s; }
.merch-card:hover .merch-card__img img { transform: scale(1.03); }
.merch-card__body { padding: 20px; }
.merch-card__type {
  font-family: var(--font-cond); font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 6px;
}
.merch-card__name {
  font-family: var(--font-cond); font-size: 28px; font-weight: 800;
  text-transform: uppercase; margin-bottom: 6px; line-height: 1;
}
.merch-card__desc { font-size: 13px; color: var(--gray); margin-bottom: 12px; line-height: 1.5; }
.merch-card__price { font-family: var(--font-cond); font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.merch-card__divider { border: none; border-top: 1px solid var(--border); margin-bottom: 14px; }
.variant-badge {
  display: inline-block; padding: 2px 10px;
  border: 1px solid var(--border); font-size: 12px; color: var(--gray); margin: 2px;
}
.merch-card__variants { margin-bottom: 16px; }

/* ── Event grid ──────────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 4px; }
.event-card { background: var(--bg2); overflow: hidden; display: block; text-decoration: none; color: inherit; }
.event-card__img { aspect-ratio: 3/4; overflow: hidden; background: var(--bg3); }
.event-card__img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s; }
.event-card:hover .event-card__img img { transform: scale(1.04); }
.event-card__body { padding: 14px 16px; }
.event-card__name {
  font-family: var(--font-cond); font-size: 14px; font-weight: 700;
  text-transform: uppercase; margin-bottom: 4px;
}
.event-card__meta { font-size: 11px; color: var(--gray); margin-bottom: 12px; }
.event-card__btn { display: inline-block; font-family: var(--font-cond); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--border); padding: 6px 14px; color: var(--fg); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.event-card:hover .event-card__btn { border-color: var(--cyan); color: var(--cyan); }

/* ── Newsletter ──────────────────────────────────────────── */
.newsletter { text-align: center; padding: 80px 0; }
.newsletter__title {
  font-family: var(--font-cond); font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px;
}
.newsletter__sub {
  font-family: var(--font-cond); font-size: 13px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray); margin-bottom: 40px;
}
.newsletter__form { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.newsletter__input {
  width: 100%; max-width: 440px;
  background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.3);
  color: var(--white); font-family: var(--font-body); font-size: 15px;
  padding: 10px 0; outline: none; text-align: center;
  transition: border-color 0.2s;
}
.newsletter__input:focus { border-bottom-color: var(--white); }
.newsletter__input::placeholder { color: var(--gray); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
}
.footer__nav { display: flex; gap: 0; list-style: none; }
.footer__nav li:not(:last-child)::after { content: '|'; padding: 0 14px; color: var(--gray-dim); }
.footer__nav a {
  font-family: var(--font-cond); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--white);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--cyan); }
.footer__social { display: flex; gap: 16px; align-items: center; }
.footer__social a { color: var(--white); opacity: 0.6; transition: opacity 0.2s; }
.footer__social a:hover { opacity: 1; }
.footer__social svg { width: 16px; height: 16px; fill: currentColor; display: block; }
.footer__copy { font-size: 12px; color: var(--gray); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 48px) 0 64px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero__title {
  font-family: var(--font-cond); font-size: clamp(80px, 16vw, 200px);
  font-weight: 900; text-transform: uppercase; line-height: 1;
  color: rgba(255,255,255,1);
  opacity: 0.04;
  user-select: none;
  animation: header-breathe 4s ease-in-out infinite;
}
.page-hero__sub-row {
  position: absolute; bottom: 24px; left: 0; right: 0;
  display: flex; justify-content: space-between; padding: 0 32px;
  max-width: var(--max-w); margin: 0 auto;
  font-size: 14px; color: var(--gray);
}

/* Utility */
.divider { border: none; border-top: 1px solid var(--border); }

/* ── Section heading ─────────────────────────────────────── */
.section-head { margin-bottom: 40px; }
.section-head__label {
  font-family: var(--font-cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray);
  margin-bottom: 8px;
}
.section-head__title {
  font-family: var(--font-cond); font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; text-transform: uppercase; line-height: 1;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .releases-grid { grid-template-columns: repeat(3, 1fr); }
  .announcements-grid { grid-template-columns: 1fr; gap: 40px; }
  .shows-grid { grid-template-columns: 1fr; }
  .press-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  /* ── Hide desktop elements ── */
  .nav__links  { display: none; }
  .nav__social { display: none; }
  .nav__toggle { display: flex; }

  /* ── Full-screen menu overlay ── */
  .nav__links.open {
    display: block !important;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%;
    background: #0a0a0a;
    z-index: 200;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 120px 0;
    list-style: none;
    text-align: center;
  }

  /* ── Brand header ── */
  .nav__drawer-brand {
    display: block !important;
    position: relative;
    padding: 24px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 8px;
    text-align: center;
  }
  .nav__drawer-brand img { width: 100px; height: auto; margin: 0 auto; display: block; }

  /* ── Close button ── */
  .nav__drawer-close {
    position: fixed; top: 20px; right: 20px;
    z-index: 210;
    background: none; border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; padding: 4px; line-height: 0;
    opacity: 0.8;
  }
  .nav__drawer-close svg { stroke: #ffffff; display: block; }

  /* ── Nav items ── */
  .nav__links.open > li {
    display: block !important;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav__links.open > li a {
    display: block !important;
    padding: 20px 32px;
    font-family: var(--font-cond);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff !important;
    text-decoration: none;
  }
  .nav__links.open > li a:hover { color: #00e5d4 !important; }

  /* ── Social row at bottom ── */
  .nav__mobile-social.open {
    display: flex !important;
    justify-content: center;
    gap: 28px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 20px 32px 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: #0a0a0a;
    z-index: 201;
  }
  .nav__mobile-social svg { width: 22px; height: 22px; fill: #ffffff; display: block; }

  /* ── Hamburger X ── */
  .nav__toggle svg line { transition: transform 0.25s ease, opacity 0.25s ease; }
  .nav__toggle.open svg line:nth-child(1) { transform: translateY(5px) rotate(45deg); transform-origin: center; }
  .nav__toggle.open svg line:nth-child(2) { opacity: 0; }
  .nav__toggle.open svg line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); transform-origin: center; }

  /* ── Page layout ── */
  .releases-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
  .container { padding: 0 16px; }
  .nav__inner { padding: 0 16px; }
  .hero__content { padding: 0 16px 48px; }
}

/* ── iOS Safari fixes ───────────────────────────────────── */
@supports (-webkit-touch-callout: none) {
  body.home,
  body:not(.home) {
    background-attachment: scroll;
  }
}

/* ── Safari backdrop-filter prefix ─────────────────────── */
.lightbox {
  -webkit-backdrop-filter: blur(4px);
}
body.home .nav {
  -webkit-backdrop-filter: blur(8px);
}

/* ── Contact form ────────────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.contact-field { margin-bottom: 20px; }
.contact-label {
  display: block; font-family: var(--font-cond); font-size: 11px;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 8px;
}
.contact-input {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-family: var(--font-body); font-size: 15px;
  padding: 12px 16px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.contact-input::placeholder { color: rgba(255,255,255,0.25); }
.contact-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px rgba(0,229,212,0.12);
}
.contact-input:focus:invalid { border-color: #D500F9; box-shadow: 0 0 0 2px rgba(213,0,249,0.1); }
.contact-textarea { resize: vertical; min-height: 160px; }

@media (max-width: 640px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ── Hero 2-col split (EP tracklist) ─────────────────────── */
.hero__split {
  display: flex; gap: 60px; align-items: flex-start;
}
.hero__split-left { flex: 1; min-width: 0; }
.hero__split > * { min-width: 0; }
.hero__tracklist {
  flex: 0 0 260px;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 28px;
}
.hero__tracklist-title {
  font-family: var(--font-cond); font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 14px;
}
.hero__tracks {
  list-style: none !important; padding: 0; margin: 0;
  counter-reset: none;
}
.hero__tracks li {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px; color: rgba(255,255,255,0.55);
  padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.3;
}
.hero__tracks li:last-child { border-bottom: none; }
.hero__track-num {
  color: var(--cyan); margin-right: 8px; font-size: 11px;
}
.hero__track-feat {
  color: rgba(255,255,255,0.3); font-size: 11px;
}

@media (max-width: 768px) {
  /* Single-column release cards on mobile */
  .releases-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
  .release-card { width: 100%; }
  .release-card__body { padding: 16px 16px 18px; }
  .release-card__links { flex-wrap: wrap; gap: 8px; }
  .release-card__link { border-right: none; padding-right: 0; margin-right: 0; padding: 6px 16px; border: 1px solid var(--border); }

  .hero__bg, .hero__overlay { display: none; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 24px); align-items: flex-start; }
  .hero__mobile-cover { display: block; width: 100%; max-width: 320px; margin: 0 auto 24px; border-radius: 4px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
  .hero__split { flex-direction: column; gap: 20px; }
  .hero__tracklist { flex: none; border-left: none; border-top: 1px solid rgba(255,255,255,0.12); padding-left: 0; padding-top: 16px; }
  .hero__title { font-size: clamp(36px, 10vw, 60px); }
  .hero__sub { font-size: 13px; margin-bottom: 16px; }
  .hero__cover { width: 100%; max-width: 280px; }
  .hero__content { padding: 0 20px 48px; }
  .hero__eyebrow { font-size: 11px; }
  .hero__tracks li { font-size: 12px; }
}

/* ── Hero EP cover art ───────────────────────────────────── */
.hero__cover {
  width: min(380px, 100%); max-width: 380px; margin-bottom: 20px;
}
.hero__cover img {
  width: 100%; height: auto; display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

/* ── Logo audiophile glitch / scanline effect ───────────── */
@keyframes logoTwitch {
  /* Long quiet periods with bursts at irregular intervals */
  0%, 14%, 100%  { filter: none; opacity: 1; }

  /* Burst 1 ~15% */
  15%   { filter: drop-shadow(0 0 6px rgba(0,229,212,0.95)) brightness(1.7); opacity: 0.85; }
  15.4% { filter: brightness(0.4) invert(0.2); opacity: 1; }
  15.8% { filter: drop-shadow(0 0 8px rgba(213,0,249,0.9)) brightness(1.9); opacity: 0.9; }
  16.2% { filter: none; opacity: 1; }

  /* Quiet */
  16.3%, 36%  { filter: none; opacity: 1; }

  /* Burst 2 ~37% */
  37%   { filter: brightness(0.3) invert(0.25); opacity: 0.8; }
  37.3% { filter: drop-shadow(0 0 10px rgba(0,229,212,0.85)) brightness(2); opacity: 1; }
  37.6% { filter: drop-shadow(0 0 6px rgba(213,0,249,0.8)) brightness(1.5); opacity: 0.85; }
  38%   { filter: none; opacity: 1; }

  /* Quiet */
  38.1%, 61%  { filter: none; opacity: 1; }

  /* Burst 3 ~62% — single quick flash */
  62%   { filter: brightness(2.4) drop-shadow(0 0 12px rgba(0,229,212,1)); opacity: 0.7; }
  62.4% { filter: none; opacity: 1; }

  /* Quiet */
  62.5%, 80%  { filter: none; opacity: 1; }

  /* Burst 4 ~81% — magenta dominant */
  81%   { filter: drop-shadow(0 0 8px rgba(213,0,249,1)) brightness(1.8) invert(0.1); opacity: 0.9; }
  81.3% { filter: brightness(0.5); opacity: 1; }
  81.6% { filter: drop-shadow(0 0 10px rgba(0,229,212,0.9)) brightness(1.6); opacity: 0.85; }
  82%   { filter: none; opacity: 1; }
}

@keyframes logoGlitchHover {
  0%   { filter: drop-shadow(0 0 8px rgba(0,229,212,1)) brightness(2); opacity: 1; }
  20%  { filter: brightness(0.3) invert(0.3); opacity: 0.7; }
  40%  { filter: drop-shadow(0 0 12px rgba(213,0,249,1)) brightness(2.5); opacity: 1; }
  60%  { filter: brightness(0.5) drop-shadow(0 0 6px rgba(0,229,212,0.8)); opacity: 0.8; }
  80%  { filter: drop-shadow(0 0 10px rgba(213,0,249,0.9)) brightness(1.8); opacity: 1; }
  100% { filter: drop-shadow(0 0 8px rgba(0,229,212,0.7)) brightness(2); opacity: 0.9; }
}

.nav__logo img {
  display: inline-block;
  will-change: filter;
  transform: translateZ(0);
  animation: logoTwitch 13s infinite;
}
.footer__logo img {
  height: 28px; width: auto; max-width: 120px; display: block; opacity: 0.45;
  will-change: filter;
  transform: translateZ(0);
  animation: logoTwitch 13s infinite 4.7s;
}
.nav__logo:hover img, .footer__logo:hover img {
  animation: logoGlitchHover 0.25s infinite linear;
  cursor: pointer;
  opacity: 1;
}

/* ── Subpage header variable font breathe ───────────────── */
@keyframes header-breathe {
  0%, 100% { opacity: 0.07; }
  50%       { opacity: 0.18; }
}

/* ── Release card ambient zoom & neon light leak ─────────── */
.release-card__art {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.release-card__art img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
  will-change: transform;
}
.release-card__art::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 100%; height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.08) 30%,
    rgba(0,255,204,0.15) 50%,
    rgba(255,0,85,0.08) 70%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease-in-out;
  pointer-events: none;
  z-index: 2;
}
.release-card:hover .release-card__art img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.05);
}
.release-card:hover .release-card__art::after {
  left: 150%;
}


/* ── Mood background — home + all subpages ───────────────── */
body.home {
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 100%),
    url('images/background_mood.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

/* ── Canvas background wrapper ───────────────────────────── */
.canvas-background {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#cables-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100% !important; height: 100% !important;
  z-index: 0;
  pointer-events: none;
  display: block;
}
