/* ══════════════════════════════════════════════════════
   KILLING ME SMALLS — zine stylesheet
   Accent: Chicago flag blue · Offset shadows: flag red
   ══════════════════════════════════════════════════════ */

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

:root {
  --bg:       #0c0c0c;
  --bg-2:     #181612;
  --ink:      #eee7d5;
  --ink-mute: #a89e87;
  --dim:      #5a5245;
  --accent:   #41b6e6;   /* Chicago flag blue */
  --accent-2: #1e88c4;
  --flag-red: #e11d2e;   /* reserved for marquee star + offset/drop shadows */
  --amber:    #f0b93a;
  --paper:    #f4ecd5;   /* polaroid cream */

  /* Categorical accents for kmsdb data viz (badges, chips, timeline) */
  --neon-pink:   #f72585;
  --neon-cyan:   #4cc9f0;
  --neon-green:  #7bed9f;
  --neon-yellow: #ffe66d;
  --neon-purple: #b5179e;

  --head:   'Ultra', 'Impact', serif;
  --body:   'Special Elite', 'Courier New', monospace;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h, 62px); }
section[id] { scroll-margin-top: var(--nav-h, 62px); }
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--body);
  font-size: 15px; line-height: 1.55; min-height: 100vh;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.09'/%3E%3C/svg%3E");
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--bg); background: var(--amber); box-shadow: 0 0 0 .1em var(--amber); }
.soundcheck-link { color: var(--neon-cyan); font-weight: 600; }
.soundcheck-link:hover { color: var(--bg); }
p a, li a { text-decoration: underline; text-underline-offset: .15em; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--head); letter-spacing: .03em; line-height: 1.05; text-transform: uppercase; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 6.5vw, 4.8rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.6rem); }
h2.col-head { font-size: 1.25rem; margin: 0 0 .75rem; }
@media (max-width: 720px) {
  .venue-book-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
}
h3 { font-size: 1.25rem; }
p  { color: var(--ink); }
p.muted, .muted { color: var(--ink-mute); }
.subtitle { color: var(--ink-mute); font-size: .95rem; margin-top: .5rem; }
.overline {
  font-family: var(--body); font-size: .78rem; letter-spacing: .22em;
  color: var(--bg);
  background: var(--ink); padding: .15rem .5rem;
  display: inline-block;
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── LAYOUT ── */
.container  { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 2.5rem 1.5rem; }
.section > .container { padding: 0; }
.section-sm { padding: 1.75rem 1.5rem; }

.section-head, .section-header {
  display: flex; align-items: baseline; gap: 1rem;
  margin-top: 2.5rem; margin-bottom: 1.25rem;
  border-bottom: 3px double var(--ink); padding-bottom: .5rem;
  flex-wrap: wrap;
}
.section-head:first-child, .section-header:first-child,
.stats-row + .section-head, .stats-row + .section-header { margin-top: 0; }
.section-head h2, .section-header h2 { margin: 0; }
.section-head .overline, .section-header .overline { margin-right: .5rem; }
.section-head .see-all, .section-header .see-all {
  margin-left: auto;
  font-family: var(--body); font-size: .9rem;
  letter-spacing: .08em;
  color: var(--accent);
}
.section-head .see-all:hover, .section-header .see-all:hover { color: var(--bg); background: var(--amber); }

.divider { border: none; border-top: 3px double var(--ink); margin: 0; }

/* ── NAV ── */
nav {
  border-bottom: 3px double var(--ink);
  background: var(--bg);
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: .9rem 1.5rem;
  display: flex; align-items: center; gap: 2rem;
}
.nav-brand {
  font-family: var(--head); font-size: 1.8rem;
  letter-spacing: .04em; color: var(--ink);
  text-transform: uppercase; flex-shrink: 0;
}
.nav-brand:hover {
  color: var(--flag-red);
  padding: 0;
  background: linear-gradient(to bottom,
    var(--accent) 0 18%,
    #fff 18% 82%,
    var(--accent) 82% 100%);
}
.nav-links { display: flex; align-items: center; gap: .2rem; flex-wrap: nowrap; }
.nav-links a {
  color: var(--ink); font-family: var(--body); font-size: 1.05rem;
  padding: .3rem .7rem; letter-spacing: .02em;
  white-space: nowrap;
}
@media (min-width: 761px) and (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-countdown { margin-left: auto; }
}
.nav-links a:hover, .nav-links a.active { background: var(--ink); color: var(--bg); }

.nav-book {
  background: var(--accent); color: var(--bg) !important;
  font-family: var(--head); text-transform: uppercase; letter-spacing: .05em;
  padding: .5rem 1rem; transform: rotate(-2deg);
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--accent);
}
.nav-book:hover { background: var(--ink); color: var(--bg) !important; padding: .5rem 1rem; }

.nav-countdown {
  margin-left: auto;
  display: inline-flex; align-items: baseline; gap: .35rem;
  font-family: var(--body); font-size: .75rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); padding: .35rem .65rem;
  border: 2px solid var(--ink); background: var(--bg);
  box-shadow: 3px 3px 0 var(--flag-red);
  transform: rotate(1deg);
  white-space: nowrap; flex-shrink: 0;
}
.nav-countdown:hover { color: var(--ink); background: var(--bg); padding: .35rem .65rem; }
.nav-countdown .cd-label { color: var(--accent); font-weight: 700; }
.nav-countdown .cd-num { font-family: var(--head); font-size: .95rem; letter-spacing: 0; }
.nav-countdown .cd-sep { color: var(--accent); }

/* ── HAMBURGER + DRAWER (mobile/tablet) ── */
.nav-hamburger {
  display: none;
  margin-left: auto;
  width: 40px; height: 36px;
  padding: 0; background: var(--bg);
  border: 2px solid var(--ink);
  cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  box-shadow: 3px 3px 0 var(--ink);
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); transition: transform .15s, opacity .15s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-hamburger { display: inline-flex; order: 99; }
  /* countdown loses its auto margin so hamburger sits at the right */
  .nav-countdown {
    margin-left: auto;
    font-size: .68rem; letter-spacing: .1em;
    padding: .25rem .5rem; gap: .25rem;
  }
  .nav-countdown .cd-num { font-size: .85rem; }
}
@media (max-width: 560px) {
  .nav-countdown .cd-label { display: none; }
}
@media (min-width: 1101px) {
  .nav-hamburger { display: none !important; }
}

.nav-drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 16, 12, .55);
}
.nav-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(82vw, 320px);
  background: var(--bg);
  border-left: 3px double var(--ink);
  padding: 4.5rem 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: .35rem;
  overflow-y: auto;
  box-shadow: -6px 0 0 var(--accent);
}
.nav-drawer-close {
  position: absolute; top: .75rem; right: .9rem;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg); color: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--head); font-size: 1.6rem; line-height: 1;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--accent);
}
.nav-drawer-close:hover { background: var(--ink); color: var(--bg); }
.nav-drawer-panel a {
  color: var(--ink); font-family: var(--body); font-size: 1.05rem;
  padding: .65rem .8rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--ink);
}
.nav-drawer-panel a:hover, .nav-drawer-panel a.active {
  background: var(--ink); color: var(--bg);
}
.nav-drawer-panel a.nav-book {
  margin-top: 1rem; align-self: flex-start;
  background: var(--accent); color: var(--bg) !important;
  font-family: var(--head); padding: .6rem 1.1rem;
  border: 2px solid var(--ink); transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--accent);
}
.nav-drawer-panel a.nav-book:hover { background: var(--ink); }
html.nav-drawer-open { overflow: hidden; }

/* ── SUB NAV (kmsdb section tabs) ── */
.sub-nav {
  position: sticky; top: 67px; z-index: 90;
  background: var(--bg-2); border-bottom: 2px solid var(--ink);
}
.sub-nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: .25rem; height: 44px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.sub-nav-inner::-webkit-scrollbar { display: none; }
.sub-nav a {
  color: var(--ink-mute); font-family: var(--body);
  font-size: .92rem; letter-spacing: .08em;
  padding: .4rem .8rem; white-space: nowrap;
}
.sub-nav a:hover { color: var(--bg); background: var(--amber); }
.sub-nav a.active { color: var(--bg); background: var(--accent); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--head); font-size: 1rem;
  text-transform: uppercase; letter-spacing: .08em;
  padding: .75rem 1.5rem; border: 3px solid var(--ink);
  background: var(--bg); color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .1s, box-shadow .1s;
  cursor: pointer;
}
.btn:hover { background: var(--amber); color: var(--bg); padding: .75rem 1.5rem; transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-accent { background: var(--accent); color: var(--bg); }
.btn-accent:hover { background: var(--amber); color: var(--bg); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--amber); color: var(--bg); }

/* ── CARDS ── */
.card {
  background: var(--bg-2); border: 3px solid var(--ink);
  padding: 1.1rem 1.25rem;
  transition: box-shadow .1s, border-color .1s;
  box-shadow: 4px 4px 0 var(--accent);
}
.card-grid   { display: grid; gap: 1rem; }
.card-grid-2 { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.card-grid-3 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.card-grid-4 { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); }
a.card { display: block; color: var(--ink); }
a.card:hover { background: var(--bg-2); color: var(--ink);
  box-shadow: 4px 4px 0 var(--neon-pink), 0 0 18px rgba(255,46,151,.45); }

/* ── STATS ── */
.stats-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.stat-box {
  flex: 1 1 150px; text-align: center;
  background: var(--bg-2); border: 3px solid var(--ink);
  padding: 1.1rem 1rem;
  box-shadow: 4px 4px 0 var(--accent);
  color: var(--ink); text-decoration: none;
  transition: box-shadow .12s ease, border-color .12s ease;
}
a.stat-box:hover {
  background: var(--bg-2); color: var(--ink); padding: 1.1rem 1rem;
  box-shadow: 4px 4px 0 var(--neon-pink), 0 0 18px rgba(255,46,151,.45);
}
.stat-num {
  font-family: var(--head); font-size: 2.6rem; line-height: 1;
  color: var(--accent); display: block;
}
.stat-num.cyan   { color: var(--neon-cyan); }
.stat-num.green  { color: var(--neon-green); }
.stat-num.yellow { color: var(--neon-yellow); }
.stat-num.pink   { color: var(--neon-pink); }
.stat-label {
  font-family: var(--body); font-size: .9rem;
  letter-spacing: .08em;
  color: var(--ink-mute); margin-top: .35rem;
}

/* ── DATA TABLE ── */
.table-wrap {
  overflow-x: auto;
  border: 3px solid var(--ink); background: var(--bg-2);
  box-shadow: 4px 4px 0 var(--accent);
}
.data-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
/* Dual-label header pattern: <th><span class="th-full">Most Recently</span><span class="th-short">Recent</span></th>
   Default to full label; mobile media query below flips it. */
.data-table .th-short { display: none; }
.data-table th {
  background: var(--ink); color: var(--bg);
  font-family: var(--head); font-size: .78rem; letter-spacing: .16em;
  text-transform: uppercase;
  padding: .65rem 1rem; text-align: left; white-space: nowrap;
}
.data-table td { padding: .6rem 1rem; border-bottom: 1px solid rgba(238,231,213,.12); color: var(--ink); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: rgba(65,182,230,.08); }
.data-table .num { text-align: center; }
.data-table .plays { color: var(--accent); font-weight: 700; font-family: var(--head); }
.data-table .yr { color: var(--ink-mute); font-size: .82rem; }
.data-table .artist-link { color: var(--ink-mute); font-size: .85rem; }
.data-table .artist-link:hover { color: var(--bg); background: var(--amber); }

/* ── SEARCH ── */
.search-wrap { position: relative; margin-bottom: 1.25rem; max-width: 400px; }
.search-wrap input {
  width: 100%; background: var(--bg-2); border: 3px solid var(--ink);
  padding: .6rem 1rem .6rem 2.4rem;
  color: var(--ink); font-family: var(--body); font-size: .95rem;
  outline: none;
}
.search-wrap input:focus { border-color: var(--accent); }
.search-icon {
  position: absolute; left: .85rem; top: 50%;
  transform: translateY(-50%); color: var(--ink-mute);
  font-size: .95rem; pointer-events: none;
}

/* ── PAGE HERO (kmsdb interior pages) ── */
/* Intentionally no horizontal padding — sits inside .container which already pads. */
.page-hero { padding: 1.75rem 0 1rem; text-align: left; }
.page-hero .overline { margin-bottom: .5rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-hero .subtitle { margin-top: .4rem; }

/* ── BADGES ── */
.badge {
  display: inline-block; padding: .15em .55em;
  font-family: var(--body); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em;
  margin-left: .35rem;
  border: 1px solid currentColor;
}
.badge-debut  { color: var(--neon-pink); }
.badge-back   { color: var(--neon-yellow); }
.badge-war    { color: var(--neon-green); }
.badge-opener { color: var(--neon-cyan); }
.badge-closer { color: #e879f9; }
.badge-excl   { color: var(--neon-yellow); }

/* ── FORM ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block; font-family: var(--head); font-size: .78rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--ink);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg-2); border: 3px solid var(--ink);
  padding: .65rem 1rem;
  color: var(--ink); font-family: var(--body); font-size: .95rem;
  outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-2); }
.form-row { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

/* ── SHOW CARDS (homepage + gig listings) ── */
.shows-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.show-card {
  background: var(--bg-2); border: 3px solid var(--ink);
  padding: 1.6rem 1.5rem;
  display: flex; align-items: center; gap: 1.5rem;
  box-shadow: 6px 6px 0 var(--accent);
}
.show-card:nth-child(odd)  { transform: rotate(-.3deg); }
.show-card:nth-child(even) { transform: rotate(.3deg); }
.show-card:hover { background: var(--bg-2); color: var(--ink); }
a.show-card { color: var(--ink); }
.show-date, .show-date-block {
  flex-shrink: 0; min-width: 100px;
  background: var(--accent); color: var(--bg);
  padding: .75rem .5rem;
  text-align: center; border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease;
}
a.show-date-block:hover {
  background: var(--accent); color: var(--bg); padding: .75rem .5rem;
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--neon-pink);
}
.show-date .month, .show-month {
  font-family: var(--body); font-size: .8rem;
  letter-spacing: .2em;
}
.show-date .day, .show-day {
  font-family: var(--head); font-size: 2.6rem; line-height: 1;
}
.show-date .year, .show-year {
  font-family: var(--body); font-size: .75rem; margin-top: .2rem;
}
.show-sep { display: none; }
.show-info { flex: 1; }
.show-venue {
  font-family: var(--head); font-size: 1.5rem; line-height: 1.1;
  text-transform: uppercase; margin-bottom: .3rem; color: var(--ink);
}
.show-loc { font-family: var(--body); font-size: .95rem; color: var(--ink-mute); }
.show-time {
  display: inline-block; margin-top: .4rem;
  background: var(--amber); color: var(--bg);
  padding: .2rem .6rem; font-family: var(--body);
  font-size: .9rem; border: 1px solid var(--ink);
}
.show-detail { color: var(--ink-mute); font-size: .85rem; margin-top: .2rem; }

/* ── HOMEPAGE HERO ── */
.hero-video {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--nav-h, 62px) - var(--marquee-h, 64px));
  min-height: 360px;
  background: var(--bg);
  line-height: 0;
  overflow: hidden;
}
.hero-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg);
}
.hero-video::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.35) 0%, rgba(0,0,0,.65) 80%);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; line-height: 1.2;
  padding: 1.5rem;
  pointer-events: none;
}
.hero-overlay > * { pointer-events: auto; }
.hero-overlay-logo {
  display: block;
  width: clamp(260px, 38vw, 520px);
  height: auto;
  filter: drop-shadow(0 0 60px rgba(225,29,46,.5)) drop-shadow(0 4px 20px rgba(0,0,0,.6));
  margin-bottom: .5rem;
}
.hero-overlay-name {
  font-family: var(--head);
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  color: var(--ink);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 var(--flag-red), 0 2px 12px rgba(0,0,0,.7);
  margin: .25rem 0 .35rem;
}
.hero-overlay-sub {
  font-family: var(--body);
  font-size: clamp(.9rem, 1.2vw, 1.1rem);
  color: var(--ink);
  letter-spacing: .08em;
  text-shadow: 0 2px 10px rgba(0,0,0,.8);
  margin-bottom: 1.5rem;
}
.hero-overlay-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
@media (max-width: 760px) {
  .hero-overlay { padding: 1rem; }
  .hero-overlay-logo { width: clamp(220px, 70vw, 360px); margin-bottom: .25rem; }
  .hero-overlay-sub { margin-bottom: 1rem; }
}

.zine-stamp {
  display: inline-block;
  background: var(--accent); color: var(--bg);
  padding: .25rem .7rem; font-family: var(--head); font-size: .85rem;
  letter-spacing: .15em; text-transform: uppercase;
  border: 2px solid var(--ink); transform: rotate(-3deg);
  margin-bottom: 1.25rem;
  box-shadow: 3px 3px 0 var(--accent);
}
.tape { position: absolute; width: 90px; height: 26px; border: 1px solid rgba(0,0,0,.08); box-shadow: 0 2px 6px rgba(0,0,0,.35); }

/* ── MARQUEE (homepage only) ── */
.marquee {
  background: var(--ink); color: var(--bg);
  padding: 1rem 0; overflow: hidden;
  border-top: 3px double var(--bg); border-bottom: 3px double var(--bg);
  box-shadow: inset 0 0 0 3px var(--ink);
  position: relative; z-index: 1;
}
.marquee-dupe { display: contents; }
.marquee-track {
  display: flex; align-items: center; gap: 1.5rem; white-space: nowrap;
  font-family: var(--head); font-size: 1.5rem;
  letter-spacing: .08em; text-transform: uppercase;
  animation: scroll 70s linear infinite;
  width: max-content;
}
.marquee-track .band {
  display: inline-flex; align-items: center;
  color: inherit; text-decoration: none;
  transition: color .15s ease;
}
.marquee-track .band:hover,
.marquee-track .band:focus-visible { color: var(--flag-red); outline: none; }
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee-track .mq-star {
  display: inline-block;
  width: 1.1rem; height: 1.1rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polygon points='12,1 14.25,8.1 21.53,6.5 16.5,12 21.53,17.5 14.25,15.9 12,23 9.75,15.9 2.47,17.5 7.5,12 2.47,6.5 9.75,8.1' fill='%23e11d2e'/></svg>");
  background-repeat: no-repeat; background-size: contain; background-position: center;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── INSTAGRAM (homepage) ── */
.ig-section {
  background: var(--bg);
  padding: 2.5rem 1.5rem;
  position: relative; z-index: 1;
  border-top: 3px double var(--ink);
  border-bottom: 3px double var(--ink);
}
.ig-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(247,37,133,.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(65,182,230,.10) 0%, transparent 55%);
}
.ig-inner {
  position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.8fr; gap: 2.5rem; align-items: center;
}
.ig-blurb .zine-stamp.ig-stamp {
  display: table;
  background: var(--neon-pink); color: var(--bg);
  box-shadow: 3px 3px 0 var(--neon-pink);
  font-size: 1rem; padding: .35rem .9rem;
  margin-bottom: 1.5rem;
}
.ig-handle {
  display: inline-block;
  font-family: var(--head);
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  line-height: 1.1; letter-spacing: .02em;
  color: var(--bg); background: var(--paper);
  text-decoration: none; text-transform: lowercase;
  padding: .5rem .85rem;
  transform: rotate(-1.5deg);
  box-shadow: 5px 5px 0 var(--accent), 10px 14px 28px rgba(0,0,0,.55);
  margin: 0 0 1.25rem;
  white-space: nowrap;
  max-width: 100%;
}
.ig-handle:hover {
  background: var(--paper); color: var(--bg); padding: .5rem .85rem;
  box-shadow: 5px 5px 0 var(--neon-pink), 10px 14px 28px rgba(0,0,0,.55);
}
.ig-desc { font-family: var(--body); color: var(--ink-mute); margin-bottom: 1.25rem; }
.ig-frame {
  position: relative; padding: .9rem .9rem 1rem;
  background: var(--paper);
  box-shadow: 6px 10px 0 var(--accent), 12px 18px 40px rgba(0,0,0,.7);
  transform: rotate(-1.5deg);
}
.ig-frame .tape { position: absolute; width: 110px; height: 28px; border: 1px solid rgba(0,0,0,.08); box-shadow: 0 2px 6px rgba(0,0,0,.35); }
.ig-frame .tape-a { top: -14px; left: 8%; transform: rotate(-5deg); background: rgba(240,185,58,.9); }
.ig-frame .tape-b { bottom: -14px; right: 10%; transform: rotate(4deg); background: rgba(65,182,230,.55); }
.ig-frame behold-widget { display: block; width: 100%; min-height: 260px; }

/* ── KMSDB LANDING HERO ── */
.kmsdb-hero {
  padding: 2.5rem 1.5rem 1.75rem;
  border-bottom: 3px double var(--ink);
  position: relative; overflow: hidden;
}
.kmsdb-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 30% 50%, rgba(65,182,230,.18) 0%, transparent 60%);
}
.kmsdb-hero .container { position: relative; z-index: 1; }
.kmsdb-hero-title {
  font-family: var(--head); font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1; letter-spacing: .02em;
  text-transform: uppercase; color: var(--ink);
  margin: .4rem 0;
}

/* Neon heading color variants (no glow — zine-flat) */
h1.neon-pink, .neon-pink  { color: var(--neon-pink); }
h1.neon-cyan, .neon-cyan  { color: var(--neon-cyan); }
h1.neon-green, .neon-green { color: var(--neon-green); }
h1.neon-yellow, .neon-yellow { color: var(--neon-yellow); }

/* ── SETLIST (kmsdb) ── */
.setlist-section { margin-bottom: 2rem; }
.set-label {
  font-family: var(--head); font-size: 1.1rem; letter-spacing: .22em;
  color: var(--accent); text-transform: uppercase; margin-bottom: .75rem;
  border-bottom: 2px solid var(--ink); padding-bottom: .4rem;
}
.setlist { list-style: none; }
.setlist li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .25rem .5rem;
  padding: .5rem 0 .5rem 2.3rem; border-bottom: 1px solid rgba(238,231,213,.12);
  font-size: .95rem;
}
.setlist li:last-child { border-bottom: none; }
/* Pull song-num back into the parent's left padding so wrapped lines indent
   under the song title, not under the number. */
.song-num {
  color: var(--ink-mute); font-family: var(--head); font-size: .9rem;
  width: 1.8rem; flex-shrink: 0; margin-left: -2.3rem;
}
.song-link { font-family: var(--body); color: var(--ink); font-weight: 700; white-space: nowrap; }
.song-link:hover { color: var(--bg); background: var(--amber); }
.song-fact { color: var(--ink-mute); font-size: .8rem; white-space: nowrap; flex-shrink: 0; }
.song-artist { color: var(--ink-mute); font-size: .82rem; white-space: nowrap; }

/* ── TIMELINE (kmsdb) ── */
.timeline { list-style: none; position: relative; padding-left: 1.5rem; }
.timeline::before { content: ''; position: absolute; left: .35rem; top: .5rem; bottom: .5rem; width: 2px; background: var(--ink); }
.timeline li { position: relative; padding: .4rem 0 .4rem .75rem; font-size: .9rem; color: var(--ink); }
.timeline li::before {
  content: ''; position: absolute; left: -.73rem; top: .85rem;
  width: 8px; height: 8px; background: var(--accent); border-radius: 50%;
}
.timeline .tl-date { color: var(--accent); font-family: var(--head); font-size: .8rem; letter-spacing: .08em; }
.timeline .tl-venue { color: var(--ink-mute); font-size: .82rem; }

/* ── FACT CHIPS (kmsdb) ── */
.chips { margin: 1rem 0; }
.fact-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--bg-2); border: 2px solid var(--ink);
  padding: .3rem .75rem; font-family: var(--body); font-size: .82rem;
  color: var(--ink); margin: .2rem;
}
.fact-chip .icon { font-size: .95rem; }
.chip-pink   { border-color: var(--neon-pink);   color: var(--neon-pink); }
.chip-cyan   { border-color: var(--neon-cyan);   color: var(--neon-cyan); }
.chip-green  { border-color: var(--neon-green);  color: var(--neon-green); }
.chip-yellow { border-color: var(--neon-yellow); color: var(--neon-yellow); }

/* ── FOOTER ── */
footer {
  border-top: 3px double var(--ink);
  background: var(--bg); color: var(--ink);
  padding: 2rem 1.5rem;
  margin-top: 3rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem;
  justify-content: space-between; align-items: center;
}
.footer-brand-name, .footer-brand {
  font-family: var(--head); font-size: 1.6rem;
  color: var(--ink); letter-spacing: .04em; text-transform: uppercase;
}
.footer-brand .accent, .footer-brand-name .accent { color: var(--accent); }
.footer-tagline, .footer-tag {
  font-family: var(--body); color: var(--ink-mute);
  font-size: .88rem; margin-top: .3rem;
}
.footer-nav { display: flex; flex-direction: column; gap: .35rem; }
.footer-nav a { color: var(--ink); font-size: .88rem; }
.footer-nav a:hover { color: var(--bg); background: var(--amber); box-shadow: 0 0 0 .1em var(--amber); }
.footer-social { display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.footer-social a { color: var(--ink); font-size: .88rem; display: flex; align-items: center; gap: .4rem; }
.footer-social a:hover { color: var(--bg); background: var(--amber); box-shadow: 0 0 0 .1em var(--amber); }
.footer-copy {
  max-width: 1100px; margin: 1.25rem auto 0;
  padding-top: 1rem; border-top: 1px solid rgba(238,231,213,.2);
  color: var(--ink-mute); font-size: .78rem; text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ig-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  :root { --nav-h: 54px; --marquee-h: 44px; }
  nav { border-bottom: none; }
  .nav-inner { gap: .75rem; flex-wrap: nowrap; padding: .7rem 1rem; }
  .nav-links, .nav-book { display: none; }
  .nav-countdown { margin-left: auto; }
  .marquee { padding: .5rem 0; }
  .marquee-track { font-size: .95rem; gap: 1rem; letter-spacing: .1em; animation-duration: 85s; }
  .marquee-track .mq-star { width: .8rem; height: .8rem; }

  form[name="booking"] { padding: 1rem !important; }
  .form-group { margin-bottom: .75rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { padding: .5rem .7rem; }
  .form-group textarea { min-height: 90px; }
  .form-group label { margin-bottom: .25rem; font-size: .72rem; }

  .ig-section { padding: 1.75rem 1rem; }
  .ig-inner { display: flex; flex-direction: column; gap: 1.5rem; }
  .ig-blurb .zine-stamp.ig-stamp { font-size: .85rem; padding: .25rem .7rem; margin-bottom: 1rem; }
  .ig-handle {
    font-size: clamp(.9rem, 5vw, 1.3rem);
    padding: .4rem .7rem;
    box-shadow: 4px 4px 0 var(--accent), 8px 10px 20px rgba(0,0,0,.5);
  }
  .ig-follow-desktop { display: none; }
  .ig-follow-mobile { display: inline-block; align-self: center; white-space: nowrap; }

  .ig-frame { width: 100%; align-self: stretch; transform: rotate(-1deg); }
  .ig-frame behold-widget { width: 100%; min-height: 420px; }
}

@media (min-width: 761px) {
  .ig-follow-mobile { display: none; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 1.75rem 1rem; }
  .container { padding: 0 1rem; }
  .stat-num { font-size: 2rem; }

  .show-card {
    flex-wrap: nowrap; gap: 1rem; padding: 1rem;
    align-items: flex-start;
  }
  .show-date-block { min-width: 68px; padding: .45rem .35rem; }
  .show-date .day, .show-day { font-size: 1.8rem; }
  .show-date .month, .show-month { font-size: .7rem; letter-spacing: .15em; }
  .show-date .year, .show-year { font-size: .65rem; }
  .show-venue { font-size: 1.05rem; line-height: 1.15; }
  .show-loc { font-size: .85rem; }
  .show-time { font-size: .8rem; padding: .15rem .5rem; }
  .section-head h2, h2 { font-size: 1.4rem; }
  .section-head {
    margin-top: 0; margin-bottom: .75rem;
    flex-wrap: wrap; gap: .5rem;
  }
  .section-head .overline, .section-header .overline { display: none; }
  .section-head .see-all { margin-left: 0; }
  .section { padding: 1rem 1rem 1.75rem; }

  .stats-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  /* When there are exactly 3 boxes (kmsdb landing), use 3 columns so they fit
     cleanly with no orphan. Detected via :has() — the 3rd child is also last. */
  .stats-row:has(> .stat-box:nth-child(3):last-child) {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .stat-box { flex: none; }
  /* When the row has exactly 5 boxes (homepage), make the 3rd span full width
     so it lands cleanly at the bottom — :nth-last-child(3) ensures it only
     fires when there are 2 siblings after it (i.e. total of 5). */
  .stat-box:nth-child(3):nth-last-child(3) { order: 1; grid-column: 1 / -1; }

  /* Tighter table padding so 3-col tables (e.g. artist page) fit without
     clipping the rightmost column on phones. */
  .data-table th,
  .data-table td { padding: .5rem .55rem; }
  .data-table th { letter-spacing: .1em; }
  .data-table .th-full  { display: none; }
  .data-table .th-short { display: inline; }
}
