/* ============================================================
   LATENT — An AI Art Experience · The AI Café
   Design language inspired by darkroom.engineering:
   dark canvas, oversized grotesk type, grain, smooth motion.
   ============================================================ */

:root {
  --bg: #0a0a0a;
  --bg-soft: #101010;
  --fg: #f4f1ea;
  --fg-dim: #8a877f;
  --line: rgba(244, 241, 234, 0.14);
  --accent: #e8ff59;      /* acid highlighter */
  --accent-2: #ff5a3c;    /* warm signal */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "Space Mono", "SFMono-Regular", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --pad: clamp(1.25rem, 4vw, 4.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #000; }

/* ---------- Film grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 9998; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.6s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0,0); } 50% { transform: translate(-3%, 2%); } 100% { transform: translate(2%, -2%); }
}
@media (prefers-reduced-motion: reduce) { .grain { animation: none; } }

/* ---------- Custom cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease);
  display: grid; place-items: center;
  font: 700 9px/1 var(--font-mono); color: #000; text-transform: uppercase;
}
.cursor.is-hover { width: 60px; height: 60px; background: var(--fg); }
.cursor.is-view  { width: 76px; height: 76px; background: var(--accent); }
.cursor.is-view::after { content: "VIEW"; }
@media (hover: none) { .cursor { display: none; } }

/* ---------- Preloader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 10000; background: var(--bg);
  display: grid; place-items: center;
  transition: transform 1s var(--ease); will-change: transform;
}
.loader.is-done { transform: translateY(-101%); }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.loader__count { font: 400 clamp(3rem, 14vw, 9rem)/1 var(--font-mono); color: var(--fg); }
.loader__word { font: 500 .8rem/1 var(--font-mono); letter-spacing: .5em; color: var(--fg-dim); padding-left: .5em; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem var(--pad);
  mix-blend-mode: difference;
  transition: transform .5s var(--ease);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__brand { display: flex; align-items: center; gap: .55rem; font-weight: 600; letter-spacing: .04em; font-size: .95rem; }
.nav__mark { color: var(--accent); font-size: .8rem; }
.nav__links { display: flex; gap: clamp(1rem, 2.2vw, 2.4rem); font-size: .82rem; }
.nav__links a { position: relative; padding: .2rem 0; color: var(--fg); font-weight: 400; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--fg);
  transition: width .4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex; align-items: center; gap: .4rem;
  border: 1px solid var(--fg); border-radius: 100px; padding: .5rem 1rem;
  font-size: .8rem; font-weight: 500;
  transition: background .35s var(--ease), color .35s var(--ease), gap .35s var(--ease);
}
.nav__cta:hover { background: var(--fg); color: var(--bg); gap: .7rem; }
.nav__cta-arrow { transition: transform .35s var(--ease); }
.nav__cta:hover .nav__cta-arrow { transform: translate(2px, -2px); }

.nav__burger { display: none; background: none; border: 0; width: 34px; height: 34px; cursor: pointer; flex-direction: column; gap: 6px; justify-content: center; align-items: center; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--fg); transition: transform .4s var(--ease), opacity .3s; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 800; background: var(--bg);
  display: flex; flex-direction: column; justify-content: center; gap: 2rem;
  padding: var(--pad);
  transform: translateY(-100%); transition: transform .7s var(--ease);
}
.menu.is-open { transform: translateY(0); }
.menu__links { display: flex; flex-direction: column; gap: 1.1rem; }
.menu__links a { font-size: clamp(2rem, 9vw, 3.2rem); font-weight: 500; letter-spacing: -0.02em; }
.menu__cta { color: var(--accent) !important; }
.menu__meta { display: flex; justify-content: space-between; font: 400 .8rem var(--font-mono); color: var(--fg-dim); border-top: 1px solid var(--line); padding-top: 1.2rem; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ---------- Tags / labels ---------- */
.tag { font: 400 .72rem/1 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--fg-dim); }
.label { font: 400 .68rem/1 var(--font-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--fg-dim); }

/* ---------- Section head ---------- */
.section-head {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 0 var(--pad); margin-bottom: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line); padding-top: 1.5rem;
}
.section-head__idx { font: 400 .75rem var(--font-mono); color: var(--accent); }
.section-head__title { font: 500 .95rem var(--font-mono); letter-spacing: .18em; text-transform: uppercase; color: var(--fg-dim); }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(6rem, 12vh, 9rem) var(--pad) clamp(1.5rem, 4vh, 3rem); overflow: hidden; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0; transition: opacity 1.6s var(--ease); pointer-events: none; }
.hero__canvas.is-live { opacity: .85; }
.hero > *:not(.hero__canvas) { position: relative; z-index: 1; }
.hero__meta { position: absolute; top: 5.5rem; }
.hero__meta--tl { left: var(--pad); }
.hero__meta--tr { right: var(--pad); text-align: right; }

.hero__title { margin-top: auto; }
.display { font-weight: 500; letter-spacing: -0.045em; line-height: 0.82; }
.display__line { display: block; font-size: clamp(4.5rem, 26vw, 24rem); overflow: hidden; }
.display__line > span { display: inline-block; }
.display__em { color: var(--accent); font-style: normal; }
.hero__sub { font-size: clamp(1rem, 3.5vw, 2.2rem); font-weight: 300; color: var(--fg); margin-top: clamp(.5rem, 2vw, 1.2rem); letter-spacing: -0.01em; }

.hero__foot { display: flex; flex-wrap: wrap; align-items: flex-end; gap: clamp(1.5rem, 4vw, 4rem); margin-top: clamp(2rem, 6vh, 4rem); }
.hero__foot-item { display: flex; flex-direction: column; gap: .4rem; }
.hero__foot-item .value { font-size: clamp(1rem, 1.6vw, 1.3rem); font-weight: 500; }
.hero__foot .btn { margin-left: auto; }

.hero__scroll { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: .6rem; font: 400 .68rem var(--font-mono); text-transform: uppercase; letter-spacing: .2em; color: var(--fg-dim); }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--fg-dim), transparent); animation: scrollpulse 2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100% { transform: scaleY(.4); opacity:.4; transform-origin: top;} 50% { transform: scaleY(1); opacity:1; transform-origin: top;} }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; }
.btn--big {
  position: relative; padding: 1.1rem 2rem; border-radius: 100px;
  border: 1px solid var(--fg); font-size: 1rem;
  overflow: hidden; transition: color .4s var(--ease);
}
.btn--big .btn__label { position: relative; z-index: 2; }
.btn--big .btn__ring { position: absolute; inset: 0; background: var(--accent); transform: translateY(101%); transition: transform .5s var(--ease); z-index: 1; }
.btn--big:hover { color: #000; }
.btn--big:hover .btn__ring { transform: translateY(0); }

.btn--fill { background: var(--accent); color: #000; padding: .85rem 1.4rem; border-radius: 100px; font-size: .9rem; transition: transform .35s var(--ease), background .35s; }
.btn--fill:hover { transform: translateY(-2px); background: #fff; }
.btn--outline { border: 1px solid var(--line); padding: .85rem 1.4rem; border-radius: 100px; font-size: .9rem; transition: border-color .35s, background .35s, color .35s; }
.btn--outline:hover { border-color: var(--fg); background: var(--fg); color: #000; }
.btn--full { width: 100%; justify-content: center; padding: 1.1rem; }
.btn span { transition: transform .35s var(--ease); }
.btn:hover span:last-child { transform: translate(2px,-2px); }

/* ---------- Marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(1rem, 2.5vw, 1.8rem) 0; overflow: hidden; white-space: nowrap; }
.marquee--big { border: 0; padding: clamp(2rem, 6vw, 5rem) 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 2.5rem; will-change: transform; }
.marquee__track span { font-size: clamp(1.4rem, 4vw, 3rem); font-weight: 500; letter-spacing: -0.02em; text-transform: uppercase; }
.marquee--big .marquee__track span { font-size: clamp(2.5rem, 9vw, 8rem); }
.marquee__track .dot { color: var(--accent); font-size: .8em; }

/* ---------- ABOUT ---------- */
.about { padding: clamp(4rem, 10vh, 8rem) 0; }
.about__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 6vw, 6rem); padding: 0 var(--pad); align-items: start; }
.about__lead { font-size: clamp(1.6rem, 3.6vw, 3rem); font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; }
.about__lead em { font-style: normal; color: var(--accent); }
.about__body { display: flex; flex-direction: column; gap: 1.4rem; color: var(--fg-dim); font-size: 1.05rem; line-height: 1.6; padding-top: .6rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); margin-top: clamp(3rem, 8vw, 6rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { background: var(--bg); padding: clamp(1.5rem, 3vw, 2.5rem) var(--pad); display: flex; flex-direction: column; gap: .6rem; }
.stat__num { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.stat__label { font: 400 .72rem var(--font-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--fg-dim); }

/* ---------- AUDIENCE ---------- */
.audience { padding: clamp(3rem, 8vh, 6rem) 0; }
.audience__list { list-style: none; }
.audience__list li { display: flex; align-items: baseline; gap: clamp(1rem, 3vw, 3rem); padding: clamp(1.4rem, 3vw, 2.2rem) var(--pad); border-top: 1px solid var(--line); transition: background .4s var(--ease), padding-left .4s var(--ease); }
.audience__list li:last-child { border-bottom: 1px solid var(--line); }
.audience__list li:hover { background: var(--bg-soft); }
.audience__no { font: 400 .9rem var(--font-mono); color: var(--accent); min-width: 1.5rem; }
.audience__txt { font-size: clamp(1.3rem, 3.4vw, 2.6rem); font-weight: 400; letter-spacing: -0.02em; }

/* ---------- LINEUP ---------- */
.lineup { padding: clamp(3rem, 8vh, 6rem) 0; }
.lineup__list { border-top: 1px solid var(--line); }
.artist { position: relative; display: grid; grid-template-columns: 3rem 1fr auto auto; align-items: center; gap: 1.5rem; padding: clamp(1.3rem, 3vw, 2rem) var(--pad); border-bottom: 1px solid var(--line); transition: background .4s var(--ease); overflow: hidden; }
.artist::before { content: ""; position: absolute; inset: 0; background: var(--accent); transform: translateX(-101%); transition: transform .5s var(--ease); z-index: 0; }
.artist:hover::before { transform: translateX(0); }
.artist:hover { color: #000; }
.artist > * { position: relative; z-index: 1; }
.artist__idx { font: 400 .8rem var(--font-mono); color: var(--fg-dim); }
.artist:hover .artist__idx { color: #000; }
.artist__name { font-size: clamp(1.4rem, 4vw, 2.8rem); font-weight: 500; letter-spacing: -0.02em; }
.artist__role { font: 400 .82rem var(--font-mono); color: var(--fg-dim); text-align: right; }
.artist:hover .artist__role { color: #111; }
.artist__tag { font: 400 .68rem var(--font-mono); text-transform: uppercase; letter-spacing: .1em; border: 1px solid var(--line); border-radius: 100px; padding: .35rem .8rem; }
.artist:hover .artist__tag { border-color: #000; }
.artist--more { opacity: .7; }
.artist--more .artist__name { font-weight: 300; }

/* ---------- SCHEDULE ---------- */
.schedule { padding: clamp(3rem, 8vh, 6rem) 0; }
.schedule__list { border-top: 1px solid var(--line); }
.slot { display: grid; grid-template-columns: 8rem 1fr; gap: clamp(1rem, 4vw, 3rem); padding: clamp(1.6rem, 3.5vw, 2.6rem) var(--pad); border-bottom: 1px solid var(--line); transition: background .4s var(--ease); }
.slot:hover { background: var(--bg-soft); }
.slot__time { font: 400 clamp(1.1rem, 2vw, 1.6rem) var(--font-mono); color: var(--accent); }
.slot__body h3 { font-size: clamp(1.2rem, 2.6vw, 2rem); font-weight: 500; letter-spacing: -0.01em; margin-bottom: .4rem; }
.slot__body p { color: var(--fg-dim); font-size: 1rem; max-width: 46ch; }

/* ---------- GALLERY ---------- */
.gallery { padding: clamp(3rem, 8vh, 6rem) 0; }
.gallery__grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 15vw; gap: clamp(.6rem, 1.2vw, 1rem); padding: 0 var(--pad); }
.gtile { position: relative; overflow: hidden; border: 1px solid var(--line); }
.gtile--a { grid-column: span 3; grid-row: span 2; }
.gtile--b { grid-column: span 3; grid-row: span 1; }
.gtile--c { grid-column: span 3; grid-row: span 1; }
.gtile--d { grid-column: span 2; grid-row: span 1; }
.gtile--e { grid-column: span 4; grid-row: span 1; }
.gtile__art { position: absolute; inset: 0; transition: transform 1s var(--ease); }
.gtile:hover .gtile__art { transform: scale(1.06); }
.gtile figcaption { position: absolute; left: 0; bottom: 0; z-index: 2; padding: .8rem 1rem; font: 400 .72rem var(--font-mono); text-transform: uppercase; letter-spacing: .08em; background: linear-gradient(transparent, rgba(0,0,0,.7)); width: 100%; opacity: 0; transform: translateY(10px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.gtile:hover figcaption { opacity: 1; transform: none; }
.gallery__note { padding: 1.5rem var(--pad) 0; color: var(--fg-dim); font: 400 .8rem var(--font-mono); }
/* generative gradient placeholders */
.art1 { background: radial-gradient(120% 120% at 20% 20%, #ff5a3c, transparent 55%), radial-gradient(100% 100% at 80% 70%, #e8ff59, transparent 50%), linear-gradient(135deg, #221, #100); }
.art2 { background: conic-gradient(from 200deg at 60% 40%, #e8ff59, #ff5a3c, #6a4bff, #e8ff59); filter: saturate(.9); }
.art3 { background: radial-gradient(80% 120% at 30% 80%, #6a4bff, transparent 60%), linear-gradient(20deg, #0a0a0a, #2a2450); }
.art4 { background: repeating-linear-gradient(45deg, #14140f, #14140f 8px, #1c1c14 8px, #1c1c14 16px), radial-gradient(60% 60% at 50% 30%, #e8ff59aa, transparent); }
.art5 { background: radial-gradient(100% 140% at 80% 10%, #ff5a3c, transparent 50%), radial-gradient(90% 90% at 10% 90%, #6a4bff, transparent 55%), #0e0e0e; }

/* ---------- TICKETS ---------- */
.tickets { padding: clamp(3rem, 8vh, 6rem) 0; }
.tickets__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tier { position: relative; background: var(--bg); padding: clamp(2rem, 4vw, 3rem) var(--pad); display: flex; flex-direction: column; gap: 1.5rem; transition: background .4s var(--ease); }
.tier:hover { background: var(--bg-soft); }
.tier--feature { background: var(--bg-soft); }
.tier__flag { position: absolute; top: 1.2rem; right: 1.2rem; font: 400 .62rem var(--font-mono); text-transform: uppercase; letter-spacing: .12em; color: #000; background: var(--accent); padding: .3rem .6rem; border-radius: 100px; }
.tier__head { display: flex; flex-direction: column; gap: .6rem; }
.tier__head h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 500; letter-spacing: -0.01em; }
.tier__price { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 500; letter-spacing: -0.03em; }
.tier__perks { list-style: none; display: flex; flex-direction: column; gap: .8rem; flex: 1; }
.tier__perks li { position: relative; padding-left: 1.4rem; color: var(--fg-dim); font-size: .95rem; }
.tier__perks li::before { content: "◉"; position: absolute; left: 0; color: var(--accent); font-size: .7em; top: .25em; }
.tier .btn { width: 100%; justify-content: center; }

/* ---------- REGISTER ---------- */
.register { padding: clamp(4rem, 12vh, 9rem) var(--pad); }
.register__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.register__title { font-size: clamp(2.8rem, 10vw, 7rem); font-weight: 500; letter-spacing: -0.04em; line-height: .95; }
.register__sub { color: var(--fg-dim); font-size: 1.05rem; max-width: 48ch; margin: 1.2rem auto clamp(2rem, 5vw, 3.5rem); }
.form { text-align: left; display: flex; flex-direction: column; gap: 1.2rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field__label { font: 400 .7rem var(--font-mono); text-transform: uppercase; letter-spacing: .1em; color: var(--fg-dim); }
.field input, .field select { background: transparent; border: 0; border-bottom: 1px solid var(--line); color: var(--fg); font-family: var(--font-display); font-size: 1.05rem; padding: .7rem 0; transition: border-color .4s var(--ease); cursor: none; }
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field input::placeholder { color: #4a4843; }
.field select option { background: var(--bg); color: var(--fg); }
.form__note { font: 400 .85rem var(--font-mono); color: var(--accent); min-height: 1.2em; text-align: center; }

/* ---------- FAQ ---------- */
.faq { padding: clamp(3rem, 8vh, 6rem) 0 clamp(4rem, 10vh, 7rem); }
.faq__list { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(1.4rem, 3vw, 2rem) var(--pad); font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 400; letter-spacing: -0.01em; transition: color .3s; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--accent); }
.qa__icon { font-family: var(--font-mono); font-weight: 400; color: var(--accent); transition: transform .4s var(--ease); flex-shrink: 0; }
.qa[open] .qa__icon { transform: rotate(45deg); }
.qa p { padding: 0 var(--pad) clamp(1.4rem, 3vw, 2rem); color: var(--fg-dim); font-size: 1.05rem; max-width: 60ch; line-height: 1.6; }
.qa p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 5rem) var(--pad) 2rem; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-bottom: clamp(2rem, 5vw, 4rem); flex-wrap: wrap; }
.footer__brand { font-size: clamp(2rem, 6vw, 4rem); font-weight: 600; letter-spacing: -0.02em; display: flex; align-items: center; gap: .5rem; }
.footer__mark { color: var(--accent); font-size: .6em; }
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: clamp(2rem, 5vw, 3.5rem) 0; border-top: 1px solid var(--line); }
.footer__col { display: flex; flex-direction: column; gap: .8rem; }
.footer__h { font: 400 .7rem var(--font-mono); text-transform: uppercase; letter-spacing: .12em; color: var(--fg-dim); margin-bottom: .4rem; }
.footer__col a { color: var(--fg); font-size: .95rem; width: fit-content; transition: color .3s; }
.footer__col a:hover { color: var(--accent); }
.mini { display: flex; border-bottom: 1px solid var(--line); }
.mini input { flex: 1; background: transparent; border: 0; color: var(--fg); font-family: var(--font-display); padding: .5rem 0; cursor: none; }
.mini input:focus { outline: none; }
.mini button { background: none; border: 0; color: var(--accent); font-size: 1.2rem; cursor: none; }
.mini__note { font: 400 .75rem var(--font-mono); color: var(--accent); margin-top: .5rem; min-height: 1em; }
.footer__bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 1.5rem; font: 400 .75rem var(--font-mono); color: var(--fg-dim); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .tickets__grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .artist { grid-template-columns: 2rem 1fr; }
  .artist__role, .artist__tag { display: none; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 40vw; }
  .gtile--a, .gtile--b, .gtile--c, .gtile--d, .gtile--e { grid-column: span 1; grid-row: span 1; }
  .gtile--a { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 620px) {
  .form__row { grid-template-columns: 1fr; }
  .slot { grid-template-columns: 1fr; gap: .6rem; }
  .footer__cols { grid-template-columns: 1fr; }
  .hero__foot .btn { margin-left: 0; }
  .footer__bottom { flex-direction: column; }
}
