:root {
  --ink: #f5f1e8;
  --muted: #a49f96;
  --paper: #111110;
  --card: #1c1c1a;
  --line: #3b3a35;
  --acid: #d8f34e;
  --coral: #ff6d5a;
  --blue: #7892ff;
  --shadow: 0 18px 50px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 5%, rgba(216, 243, 78, .14), transparent 22rem),
    linear-gradient(125deg, rgba(255,255,255,.035), transparent 38%),
    var(--paper);
  font-family: "Space Grotesk", sans-serif;
}
button, input, select { font: inherit; }
button, select { cursor: pointer; }
.site-shell { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.site-header { min-height: 92px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: inherit; text-decoration: none; font-size: 13px; line-height: .94; letter-spacing: .02em; }
.brand strong { font-size: 17px; letter-spacing: -.04em; }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; color: var(--paper); background: var(--ink); font: 500 12px "DM Mono", monospace; transform: rotate(-6deg); }
.header-note, .eyebrow, .updated-label, .site-footer, .date-chip, .meta-label { color: var(--muted); font: 500 11px "DM Mono", monospace; letter-spacing: .07em; text-transform: uppercase; }
.header-note { display: flex; gap: 8px; align-items: center; }
.pulse, .status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px rgba(255,109,90,.15); }
.intro { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding: 82px 0 66px; }
.eyebrow { margin: 0 0 21px; color: var(--coral); }
h1 { max-width: 800px; margin: 0; font-size: clamp(52px, 8vw, 108px); line-height: .88; letter-spacing: -.085em; font-weight: 600; }
h1 em { color: var(--blue); font-style: normal; }
.intro-text { max-width: 440px; margin: 31px 0 0; color: var(--muted); font-size: 16px; line-height: 1.5; }
.intro-stamp { flex: 0 0 150px; padding: 20px 0 4px 20px; border-left: 1px solid var(--ink); }
.intro-stamp span { display: block; font-size: 62px; line-height: .9; letter-spacing: -.08em; }
.intro-stamp small { display: block; margin-top: 10px; color: var(--muted); font: 500 11px "DM Mono", monospace; line-height: 1.4; text-transform: uppercase; }
.toolbar { display: grid; grid-template-columns: minmax(220px, 1fr) 220px auto; gap: 10px; padding: 12px; background: #080808; }
.search-box, .select-box { display: flex; align-items: center; min-height: 48px; background: #242421; color: var(--acid); }
.search-box span { padding: 0 14px; font: 24px "DM Mono", monospace; }
.search-box input, .select-box select { width: 100%; border: 0; outline: 0; color: #fff; background: transparent; }
.search-box input::placeholder { color: #96918a; }
.search-box input { padding: 0 14px 0 0; }
.select-box { padding: 0 14px; }
.select-box select { color: #fff; }
.select-box option { color: var(--ink); }
.date-toggle { min-height: 48px; padding: 0 22px; border: 1px solid var(--acid); color: var(--ink); background: var(--acid); font-weight: 600; }
.results-head { display: flex; justify-content: space-between; align-items: center; padding: 31px 0 17px; border-bottom: 1px solid var(--line); }
.results-head p { margin: 0; }
#results-label { font-size: 15px; font-weight: 600; }
.updated-label { display: flex; align-items: center; gap: 9px; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; padding: 22px 0 70px; }
.event-card { min-width: 0; overflow: hidden; background: var(--card); box-shadow: var(--shadow); animation: reveal .5s both; }
.event-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #302f2b; }
.event-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.event-card:hover .event-image img { transform: scale(1.045); }
.date-chip { position: absolute; top: 12px; left: 12px; padding: 8px 9px; color: var(--ink); background: var(--acid); line-height: 1.3; }
.date-chip strong { display: block; font-size: 18px; letter-spacing: -.05em; }
.card-body { padding: 19px 19px 17px; }
.card-venue { margin: 0 0 9px; color: var(--coral); font: 500 10px "DM Mono", monospace; letter-spacing: .07em; text-transform: uppercase; }
.event-title { min-height: 58px; margin: 0; font-size: 23px; line-height: 1.02; letter-spacing: -.055em; }
.event-meta { display: flex; gap: 15px; padding: 16px 0; margin: 15px 0 0; border-top: 1px solid var(--line); color: var(--muted); font: 12px "DM Mono", monospace; }
.event-meta span + span { position: relative; }
.event-meta span + span::before { content: "/"; position: absolute; left: -10px; color: var(--line); }
.artist-socials { display: flex; flex-wrap: wrap; gap: 6px; min-height: 26px; margin-bottom: 14px; }
.social-link { display: inline-grid; place-items: center; width: 26px; height: 26px; color: var(--ink); background: #35342f; font: 500 9px "DM Mono", monospace; text-decoration: none; transition: transform .2s ease, background .2s ease, color .2s ease; }
.social-link i { font-size: 13px; }
.social-link:hover { color: #111110; background: var(--acid); transform: translateY(-2px); }
.social-ig { border-radius: 7px; }
.social-f { font-family: Arial, sans-serif; font-size: 16px; font-weight: 700; }
.social-www { width: auto; padding: 0 7px; }
.card-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.price { font-size: 14px; font-weight: 600; }
.ticket-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 11px; color: var(--ink); background: var(--blue); font-size: 12px; font-weight: 600; text-decoration: none; }
.ticket-link::after { content: "->"; font-family: "DM Mono", monospace; }
.ticket-link:hover { background: var(--acid); }
.ticket-link.disabled { color: var(--muted); background: #35342f; pointer-events: none; }
.empty-state { padding: 70px 0; color: var(--muted); text-align: center; }
.error-state { color: var(--coral); }
.site-footer { display: flex; justify-content: space-between; padding: 22px 0 35px; border-top: 1px solid var(--line); }
.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; }
@keyframes reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 900px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .site-shell { width: min(100% - 28px, 520px); } .site-header { min-height: 76px; } .header-note { display: none; } .intro { display: block; padding: 55px 0 45px; } h1 { font-size: clamp(54px, 17vw, 90px); } .intro-text { font-size: 15px; } .intro-stamp { display: flex; gap: 12px; align-items: center; width: 100%; margin-top: 35px; padding: 11px 0 0; border-top: 1px solid var(--ink); border-left: 0; } .intro-stamp span { font-size: 44px; } .toolbar { grid-template-columns: 1fr; padding: 9px; } .date-toggle { width: 100%; } .results-head { align-items: start; flex-direction: column; gap: 11px; } .events-grid { grid-template-columns: 1fr; gap: 14px; } .event-image { aspect-ratio: 16 / 10; } .site-footer { gap: 20px; flex-direction: column; } }
