/* ZUNA GREY — single-page poster, BCOM-inspired DIY zine */

:root {
  --bg:        #07070a;
  --paper:     #ece8df;
  --ink:       #e8e3d4;
  --ink-dim:   rgba(232,227,212,0.55);
  --ink-faint: rgba(232,227,212,0.28);
  --accent:    #e8e3d4;
  --max:       1240px;
  --gutter:    clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Space Mono", ui-monospace, "Courier New", monospace;
  font-size: 15px;
  line-height: 1.55;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.005em;
}

/* heavy paper-grain noise — the photocopy feel */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.22;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.4' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* halftone dot overlay — adds a printed feel */
.halftone {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 98;
  opacity: 0.06;
  background-image: radial-gradient(rgba(232,227,212,1) 1px, transparent 1px);
  background-size: 4px 4px;
}

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-faint);
  padding-bottom: 1px;
  transition: border-color 0.15s, color 0.15s;
}
a:hover, a:focus { border-color: var(--ink); }

::selection { background: var(--ink); color: var(--bg); }

/* DISPLAY type — BCOM-style fat condensed sans */
h1, h2, h3, .display {
  font-family: "Archivo Black", "Anton", Impact, "Helvetica Neue", sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.85;
  text-transform: uppercase;
}

h1 { font-size: clamp(4rem, 18vw, 14rem); }
h2 { font-size: clamp(2.4rem, 8vw, 6rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: 0.5rem; letter-spacing: 0.02em; }

p { margin-bottom: 1rem; max-width: 56ch; }

/* tiny utility text — corner labels, song titles, etc. */
.util {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--ink);
}
.util.dim { color: var(--ink-dim); }
.util ul, ul.util { list-style: none; }

.label {
  font-family: "Space Mono", ui-monospace, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: block;
  margin-bottom: 0.6rem;
}

.dim    { color: var(--ink-dim); }
.faint  { color: var(--ink-faint); }
.small  { font-size: 0.78rem; letter-spacing: 0.04em; }
.mono   { font-family: "Space Mono", ui-monospace, monospace; }
.strike { text-decoration: line-through; opacity: 0.45; }

/* ink dot decoration — used like the BCOM scattered dots */
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  vertical-align: middle;
}

/* ============= POSTER LAYOUT ============= */

main { display: block; }

.poster {
  position: relative;
  padding: clamp(48px, 8vw, 96px) var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--ink-faint);
}
.poster:last-of-type { border-bottom: none; }

/* corner-text grid that wraps each poster's text utility */
.poster-corners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 48px);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.poster-corners > * { min-width: 0; }
.poster-corners .right { text-align: right; }
@media (max-width: 540px) {
  .poster-corners { grid-template-columns: 1fr; gap: 24px; }
  .poster-corners .right { text-align: left; }
}

/* ============= HERO ============= */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(28px, 4vw, 56px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink-faint);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.4) brightness(0.55);
  opacity: 0.55;
}
.hero-bg::after {
  /* halftone screen over photo */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(0,0,0,0.85) 1px, transparent 1.4px);
  background-size: 3px 3px;
  mix-blend-mode: multiply;
  opacity: 0.45;
}

.hero > * { position: relative; z-index: 1; }

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
}
.hero-top .right { text-align: right; }
@media (max-width: 540px) {
  .hero-top { grid-template-columns: 1fr; }
  .hero-top .right { text-align: left; }
}

.hero-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(32px, 6vw, 72px) 0;
  position: relative;
}
.hero-title h1 {
  display: block;
  text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: end;
}
.hero-bottom .center { text-align: center; }
.hero-bottom .right { text-align: right; }
@media (max-width: 720px) {
  .hero-bottom { grid-template-columns: 1fr; gap: 18px; }
  .hero-bottom .center, .hero-bottom .right { text-align: left; }
}

/* scattered ink dots — decorative */
.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-dots span {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.85;
}
.hero-dots span:nth-child(1) { top: 22%; left: 14%; }
.hero-dots span:nth-child(2) { top: 38%; right: 18%; width: 6px; height: 6px; }
.hero-dots span:nth-child(3) { bottom: 30%; left: 28%; width: 8px; height: 8px; }
.hero-dots span:nth-child(4) { bottom: 42%; right: 32%; width: 5px; height: 5px; }
.hero-dots span:nth-child(5) { top: 58%; left: 52%; width: 12px; height: 12px; }

/* ============= TYPOGRAPHY POSTER (LISTEN / SHOWS / ETC.) ============= */

.poster-headline {
  margin-bottom: clamp(28px, 5vw, 56px);
  position: relative;
}
.poster-headline h2 {
  word-spacing: 100vw;
}

.poster-photo {
  width: 100%;
  display: block;
  margin: clamp(24px, 4vw, 48px) 0;
  filter: grayscale(1) contrast(1.35) brightness(0.85);
  border: 1px solid var(--ink-faint);
}

/* ============= LISTS / LINKS ============= */

.platforms {
  list-style: none;
  display: grid;
  gap: 2px;
  margin: 0;
}
.platforms li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border: none;
  border-top: 1px solid var(--ink-faint);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 900;
  transition: padding 0.18s, color 0.18s;
}
.platforms li:last-child a { border-bottom: 1px solid var(--ink-faint); }
.platforms li a::after {
  content: "→";
  font-family: "Space Mono", monospace;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 12px;
  opacity: 0.6;
  transition: transform 0.18s, opacity 0.18s;
}
.platforms li a:hover {
  padding-left: 14px;
  color: var(--ink);
}
.platforms li a:hover::after {
  transform: translateX(8px);
  opacity: 1;
}

/* SHOWS */
.show-list { list-style: none; }
.show-list li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--ink-faint);
  align-items: baseline;
  font-family: "Space Mono", monospace;
}
.show-list li:last-child { border-bottom: 1px solid var(--ink-faint); }
.show-list .date {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 700;
}
.show-list .venue {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  letter-spacing: -0.005em;
  line-height: 1.05;
  text-transform: uppercase;
}
.show-list .venue a { border: none; }
.show-list .time {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.show-list.past .date { color: var(--ink-dim); }
.show-list.past .venue { opacity: 0.55; text-decoration: line-through; }
@media (max-width: 540px) {
  .show-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* ABOUT — bio + lineup */
.bio-grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: 1fr;
  margin-top: clamp(24px, 4vw, 40px);
}
@media (min-width: 760px) {
  .bio-grid { grid-template-columns: 1.4fr 1fr; gap: 56px; }
}
.bio p { font-size: 1.02rem; line-height: 1.65; }

.lineup {
  list-style: none;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--ink-faint);
  padding-top: 18px;
}
.lineup li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  font-family: "Space Mono", monospace;
}
.lineup .name {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.lineup .role {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

/* BOOK section — the only "button" treatment */
.book-card {
  border: 1px solid var(--ink);
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  gap: 24px;
  position: relative;
}
.book-card .mailto {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.4rem, 4.5vw, 2.6rem);
  letter-spacing: -0.005em;
  border: none;
  text-transform: lowercase;
  word-break: break-all;
}
.book-card .mailto:hover { background: var(--ink); color: var(--bg); }

/* footer */
footer {
  border-top: 1px solid var(--ink-faint);
  padding: 32px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
footer a { border: none; color: var(--ink-dim); }
footer a:hover { color: var(--ink); }
.terminal-link { font-size: 0.6rem; letter-spacing: 0.3em; opacity: 0.45; }

/* ============= PRESS KIT (deep page) ============= */

.page-back {
  position: absolute;
  top: var(--gutter);
  left: var(--gutter);
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: none;
  z-index: 5;
}
.page-back:hover { color: var(--ink); }

.epk-grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  grid-template-columns: 1fr;
  margin-top: clamp(24px, 4vw, 40px);
}
@media (min-width: 820px) { .epk-grid { grid-template-columns: 1fr 1fr; } }

.epk-card {
  border: 1px solid var(--ink-faint);
  padding: clamp(22px, 4vw, 36px);
  position: relative;
}
.epk-card .label { margin-bottom: 12px; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-top: 14px; }
.pills li {
  border: 1px solid var(--ink-faint);
  padding: 5px 11px;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.press-photo {
  width: 100%;
  display: block;
  filter: grayscale(1) contrast(1.3) brightness(0.85);
  border: 1px solid var(--ink-faint);
  transition: filter 0.3s;
}
.press-photo:hover { filter: grayscale(1) contrast(1.5) brightness(0.95); }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 16px;
}
.gallery a { border: none; padding: 0; display: block; }
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.3) brightness(0.85);
  transition: filter 0.18s, transform 0.18s;
}
.gallery a:hover img { filter: grayscale(1) contrast(1.5) brightness(1); transform: scale(1.02); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.quote {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(1.3rem, 3.5vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: clamp(20px, 3vw, 32px) 0;
  max-width: 22ch;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
