/* TOMMY MUÑOZ v2 — Sentinel-style adapted for DJ
   Dark charcoal × vivid green × Sora
*/

:root {
  /* From spec (HSL) */
  --background-h: 0 0% 10%;
  --foreground-h: 0 0% 96%;
  --primary-h: 119 99% 46%;
  --primary-foreground-h: 0 0% 4%;
  --secondary-h: 0 0% 18%;
  --muted-h: 0 0% 16%;
  --muted-foreground-h: 0 0% 60%;
  --border-h: 0 0% 20%;
  --input-h: 0 0% 20%;
  --ring-h: 119 99% 46%;
  --nav-button-h: 0 0% 18%;
  --hero-bg-h: 0 0% 8%;

  --background: hsl(var(--background-h));
  --foreground: hsl(var(--foreground-h));
  --primary: hsl(var(--primary-h));
  --primary-foreground: hsl(var(--primary-foreground-h));
  --secondary: hsl(var(--secondary-h));
  --muted: hsl(var(--muted-h));
  --muted-foreground: hsl(var(--muted-foreground-h));
  --border: hsl(var(--border-h));
  --input: hsl(var(--input-h));
  --ring: hsl(var(--ring-h));
  --nav-button: hsl(var(--nav-button-h));
  --hero-bg: hsl(var(--hero-bg-h));

  /* aliases preserved for legacy CSS in this file */
  --bg: var(--background);
  --bg-2: hsl(0 0% 12%);
  --bg-3: hsl(0 0% 14%);
  --fg: var(--foreground);
  --fg-dim: hsl(var(--muted-foreground-h));
  --fg-mute: hsl(0 0% 45%);
  --line: hsl(var(--border-h));
  --line-2: hsl(0 0% 28%);
  --accent: var(--primary);
  --accent-ink: var(--primary-foreground);
  --accent-2: hsl(119 99% 70%);

  --radius: 0.5rem;

  /* type */
  --f-display: "Sora", "Helvetica Neue", system-ui, sans-serif;
  --f-body: "Sora", "Helvetica Neue", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", "SFMono-Regular", monospace;

  /* density */
  --pad-x: clamp(20px, 4vw, 64px);
  --section-gap: clamp(80px, 12vw, 180px);

  --motion: 1;
}

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

html, body {
  background: var(--hero-bg);
  color: var(--fg);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.005em;
}

body { min-height: 100vh; }

button, a, input, textarea, select { font-family: inherit; color: inherit; }
button { background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::selection { background: var(--primary); color: var(--primary-foreground); }

/* ---------- animations ---------- */
@keyframes fade-up {
  0% { opacity: 0; transform: translateY(20px); filter: blur(4px); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.opacity-0 { opacity: 0; }
.animate-fade-up {
  animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.animate-fade-in {
  animation: fade-in 0.5s ease-out forwards;
}

/* ---------- utilities ---------- */
.mono { font-family: var(--f-mono); }
.upper { text-transform: uppercase; letter-spacing: 0.16em; }
.acc { color: var(--primary); }
.dim { color: var(--muted-foreground); }
.mute { color: var(--fg-mute); }
.tag {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-foreground);
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 500;
  background: hsl(0 0% 10% / 0.6);
  backdrop-filter: blur(8px);
}
.pill.live::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px hsl(var(--primary-h) / 0.25), 0 0 12px hsl(var(--primary-h) / 0.6);
  animation: pulse calc(1.6s / var(--motion, 1)) ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.9); }
}

/* ---------- section frame ---------- */
.section {
  padding: 0 var(--pad-x);
  margin-top: var(--section-gap);
  position: relative;
}
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.section-head h2 .acc { color: var(--primary); }
.section-head .idx {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--muted-foreground);
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- navbar ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 64px);
  background: transparent;
}
.topbar .brand {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--foreground);
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar .brand::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px hsl(var(--primary-h) / 0.6);
}
.topbar nav {
  display: flex;
  gap: 32px;
}
.topbar nav a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  transition: color 0.3s;
  font-weight: 500;
}
.topbar nav a:hover { color: var(--foreground); }
.topbar .right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nav-button);
  color: var(--foreground);
  border-radius: 8px;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: hsl(0 0% 22%); }
.nav-cta:active { transform: scale(0.97); }

@media (max-width: 900px) {
  .topbar nav, .nav-cta { display: none; }
}

/* ---------- hero (full-screen, bottom-left) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--hero-bg);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg canvas,
.hero-bg .hero-video {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
}
.hero-bg .hero-video {
  filter: saturate(1.1) contrast(1.05) brightness(0.85);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsl(var(--hero-bg-h) / 0.35) 0%,
    hsl(var(--hero-bg-h) / 0.55) 60%,
    hsl(var(--hero-bg-h) / 0.92) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 30%, hsl(var(--hero-bg-h) / 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  pointer-events: none;
  width: 100%;
  max-width: 90%;
  padding: 128px 24px 40px 24px;
}
@media (min-width: 640px) { .hero-content { max-width: 28rem; } }
@media (min-width: 1024px) { .hero-content { max-width: 42rem; padding: 128px 40px 56px 40px; } }

.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: var(--foreground);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.hero-h1 .acc {
  color: var(--primary);
  text-shadow: 0 0 40px hsl(var(--primary-h) / 0.35);
}
.hero-sub {
  font-size: clamp(1.125rem, 2.5vw, 1.875rem);
  font-weight: 300;
  color: hsl(var(--foreground-h) / 0.8);
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  font-weight: 300;
  color: var(--muted-foreground);
  margin-bottom: 32px;
  line-height: 1.55;
  text-wrap: pretty;
  max-width: 38em;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-weight: 600;
}
.hero-btn {
  padding: 14px 28px;
  font-size: 13px;
  border-radius: 4px;
  cursor: pointer;
  pointer-events: auto;
  transition: filter 0.2s, transform 0.15s;
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .hero-btn { padding: 16px 32px; }
}
.hero-btn.primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.hero-btn.primary:hover { filter: brightness(1.1); }
.hero-btn.primary:active { transform: scale(0.97); }
.hero-btn.white {
  background: white;
  color: var(--background);
}
.hero-btn.white:hover { filter: brightness(0.9); }
.hero-btn.white:active { transform: scale(0.97); }

.hero-trust {
  font-size: 12px;
  font-weight: 300;
  color: hsl(var(--muted-foreground-h) / 0.6);
  margin-top: 24px;
  letter-spacing: 0.04em;
}

/* Top-right floating event card */
.hero-event-pill {
  position: absolute;
  z-index: 10;
  top: 100px;
  right: 24px;
  display: grid;
  gap: 8px;
  padding: 18px 22px;
  background: hsl(0 0% 6% / 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsl(var(--primary-h) / 0.3);
  border-radius: 12px;
  min-width: 280px;
  pointer-events: auto;
}
.hero-event-pill .next {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.hero-event-pill .ev {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero-event-pill .meta {
  font-size: 12px;
  color: var(--muted-foreground);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.hero-event-pill .cd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.hero-event-pill .cd .cell {
  text-align: center;
}
.hero-event-pill .cd .num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero-event-pill .cd .lab {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 4px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero-event-pill { display: none; }
}

/* ---------- buttons (legacy / sections) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  font-weight: 500;
}
.btn:hover { border-color: hsl(0 0% 40%); }
.btn.solid {
  background: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}
.btn.solid:hover {
  filter: brightness(1.1);
  background: var(--primary);
}
.btn.solid:active { transform: scale(0.97); }
.btn.ghost { background: transparent; color: var(--foreground); }
.btn .arr { display: inline-block; transition: transform 0.3s; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- marquee ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--border);
  padding: 16px 0;
  background: var(--background);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scroll calc(40s / var(--motion, 1)) linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.marquee-item .dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 12px hsl(var(--primary-h) / 0.6); }
.marquee-item .star { color: var(--primary); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- dates ---------- */
.dates { border-top: 1px solid var(--border); }
.date-row {
  display: grid;
  grid-template-columns: 110px 1.2fr 1fr 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: padding 0.3s ease, background 0.3s ease;
}
.date-row:hover {
  padding-left: 16px;
  background: hsl(var(--primary-h) / 0.04);
}
.date-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--primary);
  transition: width 0.3s ease;
  box-shadow: 0 0 16px hsl(var(--primary-h) / 0.6);
}
.date-row:hover::before { width: 3px; }
.date-row .dt {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.date-row .dt small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--fg-mute);
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
}
.date-row .city {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.date-row .city small {
  display: block;
  color: var(--muted-foreground);
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 0;
  font-weight: 400;
}
.date-row .venue { font-size: 13px; color: var(--muted-foreground); letter-spacing: 0.02em; }
.date-row .stat {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.date-row .stat.av { color: var(--primary); }
.date-row .stat.few { color: hsl(50 100% 65%); }
.date-row .stat.so { color: var(--fg-mute); text-decoration: line-through; }

/* ---------- about ---------- */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: stretch;
}
.about-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background:
    repeating-linear-gradient(45deg, var(--bg-3) 0 2px, transparent 2px 14px),
    var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.about-portrait .ph {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding: 8px 14px;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-weight: 500;
}
.about-portrait .label {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--foreground);
  font-weight: 500;
  background: hsl(0 0% 6% / 0.6);
  backdrop-filter: blur(8px);
  padding: 5px 9px;
  border-radius: 3px;
  z-index: 2;
}
.about-portrait .label.tl { top: 14px; left: 14px; }
.about-portrait .label.br { bottom: 14px; right: 14px; }

.about-copy { display: grid; align-content: center; gap: 24px; }
.about-copy h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.about-copy h3 .accent { color: var(--primary); }
.about-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted-foreground);
  max-width: 56ch;
  text-wrap: pretty;
  font-weight: 300;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.about-stats .stat .num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--primary);
}
.about-stats .stat .lab {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-top: 8px;
  font-weight: 500;
}

/* ---------- sets ---------- */
.sets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.set-card {
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: 8px;
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}
.set-card:hover { border-color: hsl(var(--primary-h) / 0.4); }
.set-card.playing { border-color: var(--primary); box-shadow: 0 0 0 1px hsl(var(--primary-h) / 0.3), 0 8px 32px hsl(var(--primary-h) / 0.1); }
.set-card .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.set-card h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.set-card .desc {
  font-size: 12px;
  color: var(--muted-foreground);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.set-card .controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.play-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--foreground);
  color: var(--background);
  display: grid;
  place-items: center;
  transition: background 0.3s, transform 0.3s, color 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}
.play-btn:hover { background: var(--primary); color: var(--primary-foreground); transform: scale(1.05); box-shadow: 0 0 24px hsl(var(--primary-h) / 0.4); }
.set-card.playing .play-btn { background: var(--primary); color: var(--primary-foreground); }

.waveform {
  flex: 1;
  height: 40px;
  display: flex;
  align-items: end;
  gap: 2px;
  overflow: hidden;
}
.waveform .bar {
  flex: 1;
  background: hsl(0 0% 28%);
  border-radius: 1px;
  transition: background 0.2s, height 0.2s;
}
.set-card.playing .waveform .bar.on {
  background: var(--primary);
  animation: bounce calc(0.7s / var(--motion, 1)) ease-in-out infinite alternate;
}
@keyframes bounce {
  from { transform: scaleY(1); }
  to { transform: scaleY(1.6); }
}

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 140px;
  gap: 8px;
}
.gphoto {
  background:
    repeating-linear-gradient(45deg, var(--bg-3) 0 2px, transparent 2px 14px),
    var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.gphoto:hover { transform: scale(1.01); border-color: hsl(var(--primary-h) / 0.5); }
.gphoto img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: saturate(0.9) contrast(1.05);
}
.gphoto:hover img { transform: scale(1.04); filter: saturate(1.05) contrast(1.05); }
.gphoto .ph {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
}
.gphoto .tag-bl {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--foreground);
  background: var(--background);
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-weight: 500;
}

/* ---------- booking ---------- */
.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking-copy h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.booking-copy h3 em {
  font-style: normal;
  color: var(--primary);
}
.booking-copy p {
  color: var(--muted-foreground);
  max-width: 48ch;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  margin-top: 20px;
}
.booking-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: 10px;
  padding: 32px;
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
  font-family: var(--f-body);
  font-size: 16px;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s;
  font-weight: 400;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--primary);
}
.field textarea { resize: vertical; min-height: 80px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ---------- footer ---------- */
footer.footer {
  margin-top: var(--section-gap);
  padding: 60px var(--pad-x) 32px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-grid h5 {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: var(--muted-foreground); transition: color 0.2s; font-size: 14px; font-weight: 400; }
.footer-grid a:hover { color: var(--primary); }
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-bot .wm {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(60px, 10vw, 180px);
  letter-spacing: -0.05em;
  line-height: 0.85;
  text-transform: uppercase;
  color: hsl(0 0% 16%);
}
.footer-bot .wm .acc { color: var(--primary); }
.footer-bot .meta {
  font-size: 11px;
  color: var(--muted-foreground);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: right;
  line-height: 1.8;
  font-weight: 500;
}

/* ---------- checkout overlay ---------- */
.checkout-root {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.checkout-backdrop {
  position: absolute;
  inset: 0;
  background: hsl(var(--hero-bg-h) / 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.checkout-root.open .checkout-backdrop { opacity: 1; pointer-events: auto; }
.checkout-root.open { pointer-events: auto; }

.checkout-panel {
  position: absolute;
  inset: 24px 24px 24px auto;
  width: min(720px, calc(100vw - 48px));
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  transform: translateX(110%);
  transition: transform 0.5s cubic-bezier(.7,0,.2,1);
  box-shadow: 0 24px 64px hsl(0 0% 0% / 0.6);
}
.checkout-root.open .checkout-panel { transform: translateX(0); }

.checkout-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.checkout-head .ev .t {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.checkout-head .ev .s {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  font-weight: 500;
  margin-top: 4px;
}
.x-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s;
}
.x-btn:hover { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }

.steps {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--border);
  background: hsl(0 0% 12%);
  flex-wrap: wrap;
}
.step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-mute);
  font-weight: 500;
}
.step .n {
  width: 22px; height: 22px;
  border: 1px solid hsl(0 0% 28%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 600;
}
.step.done { color: var(--muted-foreground); }
.step.done .n { background: var(--muted-foreground); color: var(--background); border-color: var(--muted-foreground); }
.step.active { color: var(--foreground); }
.step.active .n { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); box-shadow: 0 0 12px hsl(var(--primary-h) / 0.5); }
.step-sep {
  flex: 1;
  height: 1px;
  background: var(--border);
  min-width: 12px;
  max-width: 32px;
}

.checkout-body {
  padding: 28px;
  overflow-y: auto;
  display: grid;
  gap: 22px;
  align-content: start;
}

.tier {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  transition: border-color 0.2s, background 0.2s;
  background: hsl(0 0% 12%);
}
.tier:hover { border-color: hsl(0 0% 28%); }
.tier.sel {
  border-color: var(--primary);
  background: hsl(var(--primary-h) / 0.06);
  box-shadow: 0 0 0 1px hsl(var(--primary-h) / 0.3);
}
.tier.sold { opacity: 0.4; pointer-events: none; }
.tier .name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tier .desc {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.5;
  font-weight: 400;
}
.tier .perks {
  list-style: none;
  display: grid;
  gap: 4px;
  margin-top: 10px;
}
.tier .perks li {
  font-size: 12px;
  color: var(--muted-foreground);
  padding-left: 18px;
  position: relative;
}
.tier .perks li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}
.tier .price { text-align: right; display: grid; gap: 4px; }
.tier .price .amt {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.tier .price small {
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--fg-mute);
  text-transform: uppercase;
  font-weight: 500;
}
.tier .price .stat {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--muted-foreground);
  font-weight: 500;
}
.tier .price .stat.few { color: hsl(50 100% 65%); }

.qty-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--border);
  background: hsl(0 0% 12%);
  border-radius: 8px;
}
.qty-row .name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.qty-row .sub {
  font-size: 11px;
  color: var(--muted-foreground);
  margin-top: 4px;
  font-weight: 400;
}
.qty-ctrl { display: flex; align-items: center; gap: 12px; }
.qty-ctrl button {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
  color: var(--foreground);
}
.qty-ctrl button:hover:not(:disabled) { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.qty-ctrl button:disabled { opacity: 0.3; }
.qty-ctrl .n {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  min-width: 28px;
  text-align: center;
  letter-spacing: -0.02em;
}

.summary {
  border: 1px solid var(--border);
  background: hsl(0 0% 12%);
  border-radius: 8px;
  padding: 20px;
  display: grid;
  gap: 10px;
}
.summary .line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted-foreground);
}
.summary .line.total {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}
.summary .line.total .amt { color: var(--primary); }

.pay-method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.pm {
  border: 1px solid var(--border);
  padding: 14px 12px;
  display: grid;
  gap: 6px;
  text-align: center;
  background: hsl(0 0% 12%);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
  color: var(--foreground);
}
.pm:hover { border-color: hsl(0 0% 28%); }
.pm.sel { border-color: var(--primary); background: hsl(var(--primary-h) / 0.06); box-shadow: 0 0 0 1px hsl(var(--primary-h) / 0.3); }
.pm .ic { font-size: 14px; font-weight: 600; }
.pm .l { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-foreground); font-weight: 500; }
.pm.sel .l { color: var(--foreground); }

.success { display: grid; gap: 20px; text-align: center; padding: 20px 0; }
.success .big {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.success .big em { font-style: normal; color: var(--primary); }
.success .ticket {
  margin: 16px auto;
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--primary);
  background: hsl(0 0% 12%);
  border-radius: 8px;
  display: grid;
  position: relative;
  box-shadow: 0 0 32px hsl(var(--primary-h) / 0.2);
}
.success .ticket::before, .success .ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px; height: 18px;
  background: var(--background);
  border-radius: 50%;
  transform: translateY(-50%);
}
.success .ticket::before { left: -10px; border-right: 1px solid var(--primary); }
.success .ticket::after { right: -10px; border-left: 1px solid var(--primary); }
.ticket-top { padding: 20px; display: grid; gap: 6px; border-bottom: 1px dashed var(--border); }
.ticket-top .ev {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
}
.ticket-top .sub { font-size: 11px; color: var(--muted-foreground); letter-spacing: 0.06em; }
.ticket-bot { padding: 18px 20px; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
.ticket-bot .meta { display: grid; gap: 4px; text-align: left; font-size: 11px; color: var(--muted-foreground); }
.ticket-bot .meta strong { color: var(--foreground); font-weight: 600; }
.qr {
  width: 84px;
  height: 84px;
  background:
    repeating-conic-gradient(var(--foreground) 0% 25%, transparent 0% 50%) 50% / 12px 12px,
    var(--background);
  border: 6px solid var(--background);
  outline: 1px solid var(--border);
  border-radius: 4px;
}

.checkout-foot {
  padding: 18px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  background: hsl(0 0% 12%);
}
.error { font-size: 12px; color: hsl(0 84% 60%); font-weight: 500; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .sets { grid-template-columns: 1fr; }
  .booking { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .date-row { grid-template-columns: 80px 1fr auto; row-gap: 8px; }
  .date-row .venue, .date-row .stat:not(:last-child) { display: none; }
  .checkout-panel { inset: 0; width: 100vw; border-radius: 0; }
  .gallery { grid-auto-rows: 100px; }
}

/* density variants */
[data-density="airy"] { --section-gap: clamp(120px, 16vw, 240px); --pad-x: clamp(28px, 6vw, 96px); }
[data-density="dense"] { --section-gap: clamp(56px, 8vw, 120px); --pad-x: clamp(16px, 3vw, 40px); }
