*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --bg: #080810; --bg2: #0e0e1a; --accent: #ff006e;
  --white: #f0f0f8; --muted: #7a7a96; --border: rgba(255,255,255,0.08);
}
body.mozaik-page {
  background: var(--bg); color: var(--white);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem; line-height: 1.7; overflow-x: hidden;
}
body.mozaik-page * { font-family: inherit; }
nav { position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 3rem; transition: background .3s, border-color .3s; }
nav.scrolled { background: rgba(8,8,16,.9); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); }
.nav-logo img { height: 32px; filter: invert(1); opacity: .9; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .82rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
#hero { position: relative; height: 100vh; display: flex; align-items: flex-end;
  padding: 0 3rem 5rem; overflow: hidden; }
#hero .bg { position: absolute; inset: 0; background-size: cover;
  background-position: center 25%; transform: scale(1.04); transition: transform 8s ease; }
#hero.loaded .bg { transform: scale(1); }
#hero::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,.95) 0%, rgba(8,8,16,.5) 45%, rgba(8,8,16,.2) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-label { font-size: .72rem; font-weight: 700; letter-spacing: .35em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700; line-height: .95; letter-spacing: -.02em; margin-bottom: 1.5rem; }
.hero-sub { font-size: 1.1rem; color: rgba(240,240,248,.75);
  margin-bottom: 2.5rem; max-width: 480px; font-weight: 300; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.8rem;
  border-radius: 6px; font-weight: 600; font-size: .875rem; letter-spacing: .04em;
  text-decoration: none; cursor: pointer; border: none; transition: opacity .2s, transform .2s; }
.btn:hover { opacity: .85; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.section { padding: 6rem 3rem; max-width: 1100px; margin: 0 auto; }
.section-full { padding: 6rem 3rem; background: var(--bg2); }
.section-full .inner { max-width: 1100px; margin: 0 auto; }
.label { font-size: .7rem; font-weight: 700; letter-spacing: .35em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.title { font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700;
  line-height: 1.1; margin-bottom: 2rem; }
hr.divider { border: none; border-top: 1px solid var(--border); margin: 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img { border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; position: relative; }
.about-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%;
  display: block; filter: brightness(.82) contrast(1.18) saturate(.72); transition: filter .6s; }
.about-img:hover img { filter: brightness(.88) contrast(1.12) saturate(.85); }
.about-img::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,16,.75) 0%, transparent 45%),
              linear-gradient(to right, rgba(255,0,110,.08) 0%, transparent 60%);
  pointer-events: none; }
.about-text p { color: rgba(240,240,248,.75); margin-bottom: 1.25rem; font-weight: 300; }
.lineup { margin-top: 2rem; border-top: 1px solid var(--border); }
.lineup-row { display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 0; border-bottom: 1px solid var(--border); }
.lineup-name { font-weight: 600; font-size: .95rem; }
.lineup-role { font-size: .8rem; color: var(--muted); }
.live-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 2rem; }
.live-card { background: rgba(255,255,255,.03); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.5rem; }
.live-card .card-label { font-size: .65rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.live-card p { color: rgba(240,240,248,.7); font-size: .9rem; }
.musik-block { display: flex; align-items: center; gap: 4rem; }
.album-cover { flex: 0 0 220px; border-radius: 4px; overflow: hidden; }
.album-cover img { width: 100%; display: block; }
.musik-text .title { margin-bottom: .5rem; }
.musik-text > p { color: rgba(240,240,248,.7); margin-bottom: 2rem; font-weight: 300; }
.tracklist { display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  margin-bottom: 2rem; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.track { padding: .6rem 1rem; font-size: .85rem; color: rgba(240,240,248,.65);
  border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: .75rem; }
.track:nth-child(odd) { border-right: 1px solid var(--border); }
.track:nth-last-child(-n+2) { border-bottom: none; }
.track-num { font-size: .7rem; color: var(--muted); width: 18px; flex-shrink: 0; }
.show-row { display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 2.5rem; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.show-row:first-of-type { border-top: 1px solid var(--border); }
.show-date-block { text-align: center; }
.day { font-size: 2.5rem; font-weight: 700; line-height: 1; color: var(--accent); }
.month { font-size: .7rem; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--muted); }
.show-info .venue { font-weight: 600; font-size: 1.1rem; margin-bottom: .25rem; }
.show-info .meta { font-size: .85rem; color: var(--muted); }
.show-info .meta span { margin-right: 1.25rem; }
.ref-grid { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.ref-tag { padding: .45rem 1rem; border: 1px solid var(--border); border-radius: 4px;
  font-size: .82rem; color: rgba(240,240,248,.6); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-item { margin-bottom: 1.25rem; }
.contact-item .contact-label { font-size: .65rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.contact-item a, .contact-item p { color: var(--white); text-decoration: none;
  font-size: 1rem; transition: color .2s; }
.contact-item a:hover { color: var(--accent); }
.contact-photo { border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; position: relative; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  display: block; filter: brightness(.78) contrast(1.15) saturate(.65) grayscale(.12); }
.contact-photo::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,0,110,.07) 0%, transparent 50%, rgba(8,8,16,.55) 100%);
  pointer-events: none; }
footer { text-align: center; padding: 2.5rem 3rem;
  border-top: 1px solid var(--border); }
.footer-logos { display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.footer-koop { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.footer-logo-link { display: flex; align-items: center; opacity: .55; transition: opacity .2s; }
.footer-logo-link:hover { opacity: .9; }
.footer-logo { height: 26px; }
.footer-logo-inv { height: 30px; filter: invert(1); mix-blend-mode: screen; }
.footer-x { color: var(--muted); font-size: .9rem; }
.footer-copy { color: var(--muted); font-size: .78rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.on { opacity: 1; transform: none; }
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; } .nav-links { display: none; }
  #hero { padding: 0 1.5rem 4rem; }
  .section { padding: 4rem 1.5rem; } .section-full { padding: 4rem 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img { aspect-ratio: 16/9; }
  .live-grid { grid-template-columns: 1fr; }
  .musik-block { flex-direction: column; gap: 2rem; }
  .album-cover { flex: none; width: 180px; }
  .tracklist { grid-template-columns: 1fr; }
  .track:nth-child(odd) { border-right: none; }
  .track:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .track:last-child { border-bottom: none; }
  .show-row { grid-template-columns: 60px 1fr; gap: 1.25rem; }
  .show-ticket { grid-column: 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
