@font-face {
  font-family: "Danzig";
  src: url("assets/fonts/danzig.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Palette (Tweakable via :root overrides) ---- */
:root {
  --paper:   #f2e7cf;   /* warm newsprint cream */
  --paper-2: #ece0c2;
  --ink:     #1b1410;   /* warm near-black */
  --red:     #e23127;   /* vermilion */
  --orange:  #f47a1f;   /* hot orange */
  --yellow:  #ffcf2e;   /* carnival yellow */
  --pink:    #e8447f;   /* riso magenta accent */
  --magenta: #ea3d99;   /* logo pink */
  --lime:    #bfe11f;   /* logo lime green */

  --bg:      var(--paper);
  --fg:      var(--ink);

  --font-display: "Anton", Impact, sans-serif;
  --font-mono:    "Space Mono", ui-monospace, monospace;
  --font-marker:  "Permanent Marker", "Space Mono", cursive;

  --maxw: 1180px;
  --edge: clamp(18px, 5vw, 64px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-mono);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---- Paper grain + halftone overlay ---- */
body::before {
  /* fractal-noise grain */
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .07;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 9000;
}
body[data-texture="off"]::before { display: none; }

/* halftone dot helper */
.halftone {
  background-image: radial-gradient(currentColor 1.4px, transparent 1.6px);
  background-size: 9px 9px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

/* ============================================================
   LAYOUT WRAPPERS / SECTIONS
   ============================================================ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--edge); }
section { position: relative; }

/* jagged torn-paper divider */
.tear {
  height: 26px;
  background: var(--tear-color, var(--ink));
  -webkit-mask: var(--tear-mask);
  mask: var(--tear-mask);
  --tear-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='26' viewBox='0 0 80 26' preserveAspectRatio='none'%3E%3Cpath d='M0 26 L0 10 L6 14 L12 4 L20 13 L28 2 L36 12 L44 3 L52 13 L60 5 L68 14 L75 6 L80 12 L80 26 Z' fill='black'/%3E%3C/svg%3E");
  mask-size: 80px 26px; -webkit-mask-size: 80px 26px;
  mask-repeat: repeat-x; -webkit-mask-repeat: repeat-x;
  position: relative; z-index: 2;
}
.tear.flip { transform: scaleY(-1); }

/* section label tag */
.tag {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-mono); font-weight: 700;
  text-transform: uppercase; letter-spacing: .2em;
  font-size: 13px;
  padding: .45em .8em;
  border: 2px solid currentColor;
}
.tag .dot { width: 9px; height: 9px; background: currentColor; border-radius: 50%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 8000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 10px var(--edge);
  background: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--ink);
}
.nav__brand {
  font-family: "Danzig", var(--font-display);
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--yellow);
  white-space: nowrap;
  text-transform: none;
}
.nav__brand b { color: var(--yellow); }
.nav__logo { height: clamp(24px, 3.2vw, 36px); width: auto; display: block; border: 2px solid var(--paper); }
.nav__links { display: flex; gap: clamp(8px, 2vw, 26px); align-items: center; flex-wrap: wrap; }
.nav__links a {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 2px; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 3px; background: var(--yellow);
  transition: right .25s ease;
}
.nav__links a:hover::after { right: 0; }
.nav__book {
  background: var(--red); color: var(--paper) !important;
  padding: 7px 14px !important;
  border: 2px solid var(--paper);
  letter-spacing: .14em !important;
  transition: transform .15s ease, background .15s ease;
}
.nav__book:hover { background: var(--yellow); color: var(--ink) !important; transform: rotate(-2deg); }
.nav__book::after { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--red);
  color: var(--paper);
  padding: clamp(44px, 8vw, 92px) 0 clamp(40px, 7vw, 80px);
  overflow: hidden;
}
/* sunburst */
.hero__burst {
  position: absolute; top: 50%; left: 50%;
  width: 180vmax; height: 180vmax;
  transform: translate(-50%, -50%);
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    var(--orange) 0deg 6deg,
    transparent 6deg 12deg
  );
  opacity: .42;
  pointer-events: none;
  animation: spin 90s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.hero__inner { position: relative; z-index: 2; }
.hero__row {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  margin-top: clamp(10px, 2vw, 20px);
}
@media (max-width: 860px) {
  .hero__row { grid-template-columns: 1fr; }
  .hero__photo { margin-top: clamp(18px,5vw,30px); }
}

/* band photo — wide DIY poster card beside the text, click to enlarge */
.hero__photo {
  position: relative;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  background: none; border: 0;
  cursor: zoom-in;
  -webkit-appearance: none; appearance: none;
}
.hero__photo-frame {
  background: var(--paper);
  padding: clamp(8px, 1vw, 14px);
  border: 4px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-1.5deg);
  transition: transform .22s ease, box-shadow .22s ease;
}
.hero__photo:hover .hero__photo-frame,
.hero__photo:focus-visible .hero__photo-frame {
  transform: rotate(.5deg) scale(1.02);
  box-shadow: 18px 18px 0 var(--ink);
}
.hero__photo-slot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 710;
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  padding: clamp(16px, 5vw, 64px);
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__img {
  max-width: min(1100px, 100%);
  max-height: 84vh;
  width: auto; height: auto;
  background: var(--paper);
  padding: clamp(8px, 1vw, 14px);
  border: 5px solid var(--paper);
  box-shadow: 16px 16px 0 rgba(0,0,0,.5);
  transform: rotate(-1deg) scale(.94);
  transition: transform .28s cubic-bezier(.2,.9,.3,1.2);
}
.lightbox.is-open .lightbox__img { transform: rotate(-1deg) scale(1); }
.lightbox__close {
  position: absolute; top: clamp(14px,3vw,28px); right: clamp(14px,3vw,28px);
  width: 52px; height: 52px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-size: 24px; line-height: 1;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  transition: transform .15s ease;
}
.lightbox__close:hover { transform: rotate(-4deg) scale(1.06); }

.hero__logo {
  font-family: "Danzig", var(--font-display);
  font-size: clamp(52px, 12vw, 140px);
  line-height: .95;
  color: var(--yellow);
  text-transform: none;
  text-shadow: 6px 6px 0 var(--ink);
  margin: 0 0 clamp(10px, 2.4vw, 22px);
  word-break: break-word;
}

.hero__lead {
  max-width: 60ch;
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.55;
  margin-top: clamp(16px, 3vw, 26px);
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(27,20,16,.6), 0 0 1px rgba(27,20,16,.5);
}
.hero__lead .hl { background: var(--yellow); color: var(--ink); padding: 0 .25em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

.hero__cta {
  display: inline-flex; align-items: center; gap: .6em;
  margin-top: clamp(22px, 4vw, 34px);
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  letter-spacing: .03em; text-transform: uppercase;
  padding: .42em .8em;
  border: 4px solid var(--ink);
  white-space: nowrap;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.hero__cta:hover { transform: translate(-2px,-2px); box-shadow: 12px 12px 0 var(--ink); background: var(--paper); }
.hero__cta:active { transform: translate(4px,4px); box-shadow: 2px 2px 0 var(--ink); }
.hero__cta .arr { transition: transform .14s ease; }
.hero__cta:hover .arr { transform: translateX(4px); }

/* hero socials */
.socials { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.social {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 12px;
  border: 2px solid currentColor;
  transition: transform .14s ease, background .14s ease, color .14s ease;
}
.hero .social { color: var(--paper); }
.social:hover { background: var(--ink); color: var(--yellow); transform: translateY(-2px) rotate(-2deg); }
.hero__social-row { margin-top: clamp(24px, 4vw, 38px); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--yellow);
  border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink);
  overflow: hidden; white-space: nowrap;
  padding: 12px 0;
  position: relative; z-index: 3;
}
.marquee__track {
  display: inline-flex; gap: 0;
  animation: marquee 26s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.4vw, 40px);
  letter-spacing: .04em; text-transform: uppercase;
  padding: 0 .35em;
}
.marquee__track .sep { color: var(--red); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ============================================================
   TOUR / SHOWS
   ============================================================ */
.shows { background: var(--ink); color: var(--paper); padding: clamp(44px,7vw,90px) 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: clamp(40px,6vw,72px);
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 104px);
  line-height: .9; text-transform: uppercase;
  padding-bottom: .08em;
}
.shows .section-head__title { color: var(--yellow); }
.shows .section-head__title em { font-style: normal; color: var(--red); -webkit-text-stroke: 2px var(--yellow); }

.shows__list { border-top: 3px solid var(--paper); }
.show {
  display: grid;
  grid-template-columns: 142px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: clamp(14px,2vw,22px) 6px;
  border-bottom: 3px solid var(--paper);
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: background .18s ease, color .18s ease, padding-left .18s ease;
}
.show--link { cursor: pointer; }
.show--link:hover { background: var(--red); padding-left: 22px; }
.show__date {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  line-height: .9;
  white-space: nowrap;
}
.show__date .yr { display:block; font-family: var(--font-mono); font-size: 12px; letter-spacing:.18em; opacity:.65; font-weight:700; }
.show__main { min-width: 0; }
.show__venue {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: .95; text-transform: uppercase;
}
.show__city {
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  letter-spacing: .16em; text-transform: uppercase; opacity: .8;
  margin-top: 4px;
}
.show__right { display: flex; align-items: center; gap: 12px; justify-self: end; }
.flag {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: .12em; padding: 4px 8px; border: 2px solid currentColor;
}
.badge-priv {
  font-family: var(--font-marker);
  font-size: 15px; color: var(--yellow);
  transform: rotate(-6deg);
}
.show__go {
  font-family: var(--font-display); font-size: 20px;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .18s ease, transform .18s ease;
}
.show--link:hover .show__go { opacity: 1; transform: translateX(0); }

/* ============================================================
   WATCH (videos)
   ============================================================ */
.watch { background: var(--paper); color: var(--ink); padding: clamp(44px,7vw,90px) 0; }
.watch .section-head__title { color: var(--yellow); text-shadow: 5px 5px 0 var(--ink); }
.watch .section-head__title em { font-style: normal; color: var(--red); -webkit-text-stroke: 2px var(--yellow); }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}
.video {
  position: relative; aspect-ratio: 16/9;
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden; background: var(--ink);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}
.video:hover { transform: translate(-2px,-2px) rotate(-.6deg); box-shadow: 12px 12px 0 var(--red); }
.video-grid .video.is-playing {
  transform: scale(1.045);
  box-shadow: 18px 18px 0 var(--red);
  border-color: var(--red);
  z-index: 5;
}
.video-grid .video.is-playing:hover { transform: scale(1.045); }
.video img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) contrast(1.05); }
.video__play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(0deg, rgba(27,20,16,.5), rgba(27,20,16,.05));
}
.video__play .btn {
  width: clamp(56px,8vw,84px); height: clamp(56px,8vw,84px);
  border-radius: 50%; background: var(--red); border: 4px solid var(--paper);
  display: grid; place-items: center;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .15s ease, background .15s ease;
}
.video:hover .video__play .btn { transform: scale(1.08); background: var(--yellow); }
.video__play .btn::before {
  content: ""; display: block;
  border-left: clamp(16px,2.4vw,24px) solid var(--paper);
  border-top: clamp(10px,1.5vw,15px) solid transparent;
  border-bottom: clamp(10px,1.5vw,15px) solid transparent;
  margin-left: 6px;
}
.video:hover .video__play .btn::before { border-left-color: var(--ink); }
.video__label {
  position: absolute; left: 0; bottom: 0;
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase;
  background: var(--ink); color: var(--yellow);
  padding: 6px 10px;
}
.video iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   LISTEN (spotify)
   ============================================================ */
.listen { background: var(--orange); color: var(--ink); padding: clamp(44px,7vw,90px) 0; }
.listen .section-head__title { color: var(--ink); }
.listen__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(20px,3vw,40px); align-items: center; }
.listen__copy p { font-size: clamp(15px,1.7vw,18px); font-weight: 700; max-width: 42ch; }
.listen__copy .big {
  font-family: var(--font-display); font-size: clamp(40px, 8vw, 104px);
  line-height: .9; text-transform: uppercase; margin-bottom: .3em;
  color: var(--yellow); text-shadow: 5px 5px 0 var(--ink);
}
.listen__copy .big em { font-style: normal; color: var(--red); -webkit-text-stroke: 2px var(--yellow); }
.listen__embed {
  border: 4px solid var(--ink); box-shadow: 10px 10px 0 var(--ink);
  background: var(--ink); border-radius: 16px; overflow: hidden;
}
.listen__embed iframe { display: block; width: 100%; border: 0; }
.listen__platforms { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.listen .social { color: var(--ink); }
.listen .social:hover { background: var(--ink); color: var(--orange); }

/* ============================================================
   BOOK / FOOTER
   ============================================================ */
.book { background: var(--ink); color: var(--paper); padding: clamp(48px,8vw,100px) 0 0; }
.book__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px,5vw,60px); align-items: start; }
.book__title { font-family: var(--font-display); font-size: clamp(40px, 8vw, 104px); line-height:.82; text-transform: uppercase; color: var(--yellow); }
.book__title em { font-style: normal; color: var(--red); -webkit-text-stroke: 2px var(--yellow); }
.book__lead { font-size: clamp(15px,1.8vw,19px); font-weight: 700; max-width: 46ch; margin-top: 18px; }
.book__email {
  display: inline-flex; align-items: center; gap: .5em; margin-top: 22px;
  font-family: var(--font-display); font-size: clamp(20px,3vw,32px);
  letter-spacing: .02em; text-transform: uppercase;
  background: var(--yellow); color: var(--ink);
  padding: .4em .7em; border: 4px solid var(--paper);
  box-shadow: 6px 6px 0 var(--red);
  transition: transform .14s ease, background .14s ease, box-shadow .14s ease;
  word-break: break-all;
}
.book__email:hover { background: var(--paper); transform: translate(-2px,-2px); box-shadow: 9px 9px 0 var(--red); }
.book__socials { display: grid; gap: 10px; }
.book .social { color: var(--paper); justify-content: flex-start; }
.book .social:hover { background: var(--yellow); color: var(--ink); }

.foot {
  margin-top: clamp(40px,7vw,80px);
  border-top: 3px solid var(--paper);
  padding: 22px 0 36px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; opacity: .8;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .listen__grid, .book__grid { grid-template-columns: 1fr; }
  .show { grid-template-columns: 92px 1fr; grid-template-areas: "date main" "date right"; row-gap: 8px; }
  .show__date { grid-area: date; }
  .show__main { grid-area: main; }
  .show__right { grid-area: right; justify-self: start; }
  .show:hover { padding-left: 12px; }
}
@media (max-width: 560px) {
  .nav__links a:not(.nav__book) { display: none; }
  .show { grid-template-columns: 1fr; grid-template-areas: "date" "main" "right"; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
body[data-motion="off"] .hero__burst,
body[data-motion="off"] .marquee__track { animation: none; }
body[data-motion="off"] .reveal { opacity: 1; transform: none; transition: none; }
