:root{
  --bg:#070707;
  --ink:#f5f5f5;
  --muted:rgba(245,245,245,.65);
  --edge:rgba(245,245,245,.14);
  --card:rgba(255,255,255,.05);
  --card2:rgba(255,255,255,.035);
  --radius:16px;
  --shadow: 0 20px 70px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

.grain{
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.hero{
  position: relative;
  min-height: 62vh;
  background: url("assets/hero.jpg") center center / cover no-repeat;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.heroOverlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 400px at 15% 15%, rgba(0,0,0,.25), rgba(0,0,0,.85)),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.88));
}

.topbar{
  position: relative;
  z-index: 2;
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
}

.brand{
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 14px;
}

.tag{
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.heroInner{
  position: relative;
  z-index: 2;
  padding: 44px 22px 26px;
  max-width: 1120px;
  margin: 0 auto;
}

.title{
  margin: 0;
  font-size: clamp(52px, 7vw, 110px);
  letter-spacing: .02em;
  font-weight: 1000;
  text-transform: uppercase;
  line-height: .92;
  text-shadow: 0 20px 90px rgba(0,0,0,.8);
}

.subtitle{
  margin-top: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: rgba(245,245,245,.92);
  font-size: 13px;
}

.wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 18px 70px;
}

.section{
  padding: 22px 0 10px;
}

.sectionHead{
  display:flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.sectionHead h2{
  margin: 0;
  font-size: 18px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 1000;
}

.card{
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.card h3{
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 950;
  color: rgba(245,245,245,.85);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(245,245,245,.22);
  background: rgba(245,245,245,.10);
  color: var(--ink);
  text-decoration:none;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  backdrop-filter: blur(8px);
}

.btn:hover{ background: rgba(245,245,245,.14); }
.btn.ghost{ background: rgba(0,0,0,.22); }
.btn.full{ margin-top: 12px; width: 100%; }

.ctaRow{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.showsGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}

.shows{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}

.shows li{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
}

.date{
  width: 76px;
  font-weight: 1000;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(245,245,245,.92);
}

.venue{
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.city{
  color: var(--muted);
  margin-top: 2px;
  font-size: 13px;
}

.polaroidWrap{
  display:flex;
  align-items: stretch;
}

.polaroid{
  width: 100%;
  border-radius: 18px;
  background: rgba(245,245,245,.06);
  border: 1px solid rgba(245,245,245,.14);
  padding: 12px 12px 18px;
  transform: rotate(-1.5deg);
  box-shadow: 0 30px 80px rgba(0,0,0,.55);
}

.polaroid img{
  width:100%;
  height: auto;
  display:block;
  border-radius: 12px;
  filter: contrast(1.08) saturate(.88);
}

.polaroidLabel{
  margin-top: 10px;
  letter-spacing: .22em;
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(245,245,245,.9);
}

.mediaGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.embed{
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
}

.embed iframe{
  width: 100%;
  height: 352px;
  border: 0;
  display:block;
}

.merchGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.merchCard{
  position: relative;
  display:block;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.35);
  box-shadow: var(--shadow);
  text-decoration:none;
}

.merchCard img{
  width:100%;
  height: 420px;
  object-fit: cover;
  display:block;
  filter: contrast(1.05) saturate(.95);
}

.merchTag{
  position:absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245,245,245,.18);
  background: rgba(0,0,0,.5);
  color: rgba(245,245,245,.92);
  font-weight: 1000;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
}

.muted{
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .04em;
}

.footer{
  margin-top: 26px;
  padding: 18px 6px 0;
  display:flex;
  justify-content: space-between;
  align-items:center;
  color: rgba(245,245,245,.7);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 11px;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 900px){
  .showsGrid{ grid-template-columns: 1fr; }
  .mediaGrid{ grid-template-columns: 1fr; }
  .merchGrid{ grid-template-columns: 1fr; }
  .merchCard img{ height: 360px; }
}