/* ============================================================
   DJ JUVI — Visual System
   Colors: warm black + sunset (gold/copper/glow)
   Type: Syne 700/800 headings · Space Grotesk body
   ============================================================ */

:root {
  /* Surfaces */
  --bg: #0a0807;
  --bg-2: #110d0a;
  --bg-3: #1a130e;
  --surface: #181210;
  --surface-2: #221814;
  --line: rgba(242, 160, 61, 0.14);
  --line-soft: rgba(255, 220, 180, 0.07);

  /* Sunset palette */
  --gold: #f2a03d;
  --copper: #e8632a;
  --glow: #ffca7a;
  --ember: #c33d18;
  --sunset: linear-gradient(135deg, #ffca7a 0%, #f2a03d 35%, #e8632a 70%, #c33d18 100%);

  /* Text */
  --text: #f5ede0;
  --text-2: #d4c4ad;
  --text-3: #b8a78f;
  --text-4: #8a7866;

  /* Type */
  --f-display: "Syne", "Space Grotesk", system-ui, sans-serif;
  --f-body: "Space Grotesk", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--text); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.005em;
  overflow-x: hidden;
  position: relative;
}

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

/* Focus visible — keyboard accessibility */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible,
iframe:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.nav__cta:focus-visible,
.booking__email:focus-visible,
.social:focus-visible {
  outline-offset: 4px;
}

::selection { background: var(--gold); color: #0a0807; }

/* Grain overlay — sits on top of everything but pointer transparent */
.grain {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 0.85 0 0 0 0 0.65 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Vignette */
.vignette {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 100% 75% at 50% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10, 8, 7, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  padding: 14px 40px;
  border-bottom: 1px solid var(--line-soft);
}
.nav__logo {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 10px;
}
.nav__logo span { color: var(--gold); }
.nav__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}
.nav__links {
  display: flex; gap: 36px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.nav__links a {
  color: var(--text-2);
  position: relative;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a::before {
  content: attr(data-i);
  color: var(--text-4);
  margin-right: 6px;
}
.nav__cta {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  transition: all 0.25s;
}
.nav__cta:hover {
  background: var(--gold);
  color: #0a0807;
  box-shadow: 0 0 30px rgba(242, 160, 61, 0.45);
}
.nav__mobile { display: none; }
.nav__burger {
  display: none;
  width: 32px; height: 24px;
  position: relative;
  z-index: 110;
}
.nav__burger span {
  position: absolute; left: 0; right: 0;
  height: 1.5px; background: var(--text);
  transition: transform 0.35s, top 0.35s, opacity 0.2s;
}
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { top: 11px; }
.nav__burger span:nth-child(3) { top: 18px; }
.nav.is-open .nav__burger span:nth-child(1) { top: 11px; transform: rotate(45deg); background: var(--gold); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { top: 11px; transform: rotate(-45deg); background: var(--gold); }

/* ============================================================
   GENERAL SECTION
   ============================================================ */
section { position: relative; }
.section {
  padding: 140px 40px;
  position: relative;
}
.wrap { max-width: 1440px; margin: 0 auto; }

.section__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: end;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 80px;
}
.section__num {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.section__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.section__title em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
}
.section__kicker {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-align: right;
  max-width: 220px;
}

/* Vertical side label */
.vlabel {
  position: absolute;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-4);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
#hero-shader {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(0,0,0,0) 0%, rgba(10,8,7,0.55) 75%, rgba(10,8,7,0.95) 100%),
    linear-gradient(to bottom, rgba(10,8,7,0.4) 0%, transparent 30%, transparent 70%, rgba(10,8,7,1) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 60px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.hero__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 60px;
}
.hero__meta .live { color: var(--gold); display: flex; gap: 8px; align-items: center; }
.hero__meta .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(120px, 28vw, 440px);
  line-height: 0.78;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--glow);
  text-stroke: 1.5px var(--glow);
  text-shadow:
    0 0 40px rgba(255, 202, 122, 0.18),
    0 0 80px rgba(232, 99, 42, 0.12);
  position: relative;
}
.hero__title-row {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}
.hero__title-side {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding-bottom: 20px;
}

.hero__sub {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}
.hero__sub-left {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--text);
  max-width: 640px;
  line-height: 1.25;
}
.hero__sub-left .accent { color: var(--gold); font-style: italic; }
.hero__sub-left .pipe { color: var(--text-4); margin: 0 10px; }
.hero__sub-right {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: right;
}
.hero__sub-right .big {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 800;
  display: block;
  color: var(--glow);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  text-transform: none;
}

.hero__ctas {
  margin-top: 50px;
  display: flex; gap: 16px; flex-wrap: wrap;
}
.btn {
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 18px 34px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--sunset);
  color: #1a0a02;
  box-shadow: 0 8px 40px rgba(232, 99, 42, 0.35);
  font-weight: 600;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(232, 99, 42, 0.55);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 30px rgba(242, 160, 61, 0.1);
}
.btn__arrow {
  width: 16px; height: 16px;
  transition: transform 0.3s;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Marquee */
.marquee {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  background: rgba(10, 8, 7, 0.6);
  backdrop-filter: blur(8px);
}
.marquee__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 50s linear infinite;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; color: var(--text); }
.marquee__track span::after {
  content: "✦";
  color: var(--gold);
  font-size: 18px;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.about__photo {
  position: sticky;
  top: 100px;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.about__photo-wrap {
  position: sticky;
  top: 120px;
}
.about__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
}
.about__photo .ph {
  position: absolute; inset: 0;
}
.about__photo-caption {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.about__bio {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-2);
  max-width: 640px;
}
.about__bio p { margin-bottom: 22px; }
.about__bio strong { color: var(--text); font-weight: 600; }
.about__bio .gold { color: var(--gold); }

.about__quote {
  margin: 80px 0;
  font-family: var(--f-display);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  padding-left: 40px;
  border-left: 2px solid var(--gold);
  max-width: 760px;
}
.about__quote .mark {
  position: absolute;
  left: -10px;
  top: -40px;
  font-size: 140px;
  color: var(--gold);
  line-height: 1;
  font-style: normal;
  opacity: 0.6;
}
.about__quote .cite {
  display: block;
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
  font-style: normal;
  font-weight: 400;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat {
  background: var(--bg);
  padding: 32px 24px;
  position: relative;
}
.stat__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__label {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.stat__sup { font-size: 30px; vertical-align: top; margin-left: 2px; }

/* ============================================================
   MUSIC
   ============================================================ */
.music__grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 32px;
  align-items: start;
}
.music__player {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
  position: relative;
}
.music__player::before {
  content: "// LIVE STREAM";
  position: absolute;
  top: -1px; left: 24px;
  background: var(--bg);
  color: var(--gold);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  padding: 6px 12px;
  z-index: 2;
}
.music__player iframe {
  display: block;
  border: 0;
  width: 100%;
}
.music__side {
  display: flex; flex-direction: column; gap: 18px;
}
.music__card {
  border: 1px solid var(--line);
  padding: 28px;
  position: relative;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  transition: all 0.35s;
  display: block;
  overflow: hidden;
}
.music__card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(232, 99, 42, 0.15);
}
.music__card::after {
  content: "→";
  position: absolute;
  top: 24px; right: 24px;
  font-size: 24px;
  color: var(--text-3);
  transition: all 0.3s;
}
.music__card:hover::after { color: var(--gold); transform: translate(4px, -4px); }
.music__card-type {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.music__card-type::before {
  content: ""; width: 14px; height: 1px; background: var(--gold);
}
.music__card-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.music__card-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.5;
}
.music__card-meta {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
}

/* ============================================================
   DAILY PARTY — Denní párty
   ============================================================ */
.daily {
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(255, 202, 122, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 80%, rgba(232, 99, 42, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow: hidden;
}
.daily__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.daily__visual {
  position: relative;
  aspect-ratio: 4 / 5;
}
.daily__sun {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.daily__sun svg { width: 100%; height: 100%; }
.daily__copy {
  position: relative;
}
.daily__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--gold);
  color: #1a0a02;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: 0 0 32px rgba(242, 160, 61, 0.45);
}
.daily__badge::before {
  content: ""; width: 6px; height: 6px;
  background: #1a0a02; border-radius: 50%;
}
.daily__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.daily__title em {
  font-style: italic;
  font-weight: 700;
  background: var(--sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.daily__lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 36px;
}
.daily__bullets {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 40px;
}
.daily__bullets li {
  display: flex; gap: 16px;
  font-size: 15px;
  color: var(--text-2);
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.daily__bullets li:last-child { border-bottom: 1px solid var(--line); }
.daily__bullets .t {
  font-family: var(--f-mono);
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-width: 70px;
  padding-top: 1px;
}

/* ============================================================
   EVENTS — Časová osa
   ============================================================ */
.events__list {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 0;
}
.events__list::before {
  content: "";
  position: absolute;
  left: 132px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 8%, var(--line) 92%, transparent);
}
.event {
  display: grid;
  grid-template-columns: 110px 44px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  transition: padding 0.3s, background 0.3s;
}
.event:hover {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(242,160,61,0.04), transparent);
}
.event:hover .event__title { color: var(--gold); }
.event__date {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.event__date small {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 6px;
}
.event__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--gold);
  justify-self: center;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}
.event__dot.is-new {
  background: var(--gold);
  box-shadow: 0 0 16px var(--gold);
}
.event:hover .event__dot {
  background: var(--gold);
  transform: scale(1.4);
  box-shadow: 0 0 20px var(--gold);
}
.event__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  transition: color 0.3s;
}
.event__sub {
  display: block;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 13px;
  color: var(--text-3);
  margin-top: 6px;
  letter-spacing: 0;
  text-transform: none;
}
.event__tag {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-3);
  white-space: nowrap;
}
.event__tag.is-fm { color: var(--gold); border-color: var(--gold); }
.event__tag.is-day {
  background: var(--sunset);
  color: #1a0a02;
  border-color: transparent;
  font-weight: 700;
}
.event__tag.is-festival { color: var(--glow); border-color: var(--glow); }
.event__tag.is-radio { color: var(--text-2); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 16px;
}
.gphoto {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}
.gphoto .ph {
  position: absolute; inset: 0;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.gphoto:hover .ph { transform: scale(1.04); }
.gphoto__label {
  position: absolute;
  bottom: 16px; left: 16px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(10,8,7,0.7);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
}
.gphoto__num {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.gphoto--1 { grid-column: span 7; grid-row: span 5; }
.gphoto--2 { grid-column: span 5; grid-row: span 3; }
.gphoto--3 { grid-column: span 3; grid-row: span 2; }
.gphoto--4 { grid-column: span 5; grid-row: span 4; }
.gphoto--5 { grid-column: span 4; grid-row: span 2; }

.gphoto--soon {
  background: var(--bg-2);
  display: grid; place-items: center;
  text-align: center;
}
.gphoto--soon .inner {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-3);
}
.gphoto--soon .inner strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

/* ============================================================
   BOOKING / CONTACT
   ============================================================ */
.booking {
  padding: 160px 40px;
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 30%, rgba(232, 99, 42, 0.18), transparent 60%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(242, 160, 61, 0.10), transparent 70%);
  pointer-events: none;
}
.booking__inner { position: relative; z-index: 2; text-align: center; max-width: 1100px; margin: 0 auto; }
.booking__kicker {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}
.booking__kicker::before, .booking__kicker::after {
  content: ""; width: 40px; height: 1px; background: var(--gold);
}
.booking__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.booking__title em {
  font-style: italic;
  font-weight: 700;
  background: var(--sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.booking__lead {
  font-size: 20px;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.5;
}
.booking__email {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 26px 40px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--text);
  transition: all 0.3s;
  margin-bottom: 60px;
}
.booking__email:hover {
  background: var(--gold);
  color: #1a0a02;
  box-shadow: 0 0 60px rgba(242, 160, 61, 0.45);
}
.booking__email .ico { font-size: 20px; }

.socials {
  display: flex; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.social {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.social svg { width: 22px; height: 22px; position: relative; z-index: 2; transition: transform 0.3s; }
.social::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--sunset);
  opacity: 0;
  transition: opacity 0.4s;
}
.social:hover { width: 180px; border-radius: 999px; border-color: transparent; }
.social:hover::before { opacity: 1; }
.social:hover svg { transform: scale(0.9); color: #1a0a02; }
.social__name {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a0a02;
  font-weight: 700;
  margin-left: 12px;
  opacity: 0;
  position: relative; z-index: 2;
  white-space: nowrap;
  transition: opacity 0.3s 0.1s;
}
.social:hover .social__name { opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 50px 40px 40px;
  background: var(--bg-2);
  position: relative;
}
.footer__inner {
  max-width: 1440px; margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
}
.footer__inner a:hover { color: var(--gold); }
.footer__logo {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--text-2);
}
.footer__logo span { color: var(--gold); }

/* ============================================================
   IMAGE PLACEHOLDERS — designed, not gray
   ============================================================ */
.ph { position: relative; overflow: hidden; }
.ph__note {
  position: absolute;
  bottom: 10px; right: 10px;
  z-index: 5;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ph--stage : DJ on stage, crossed orange spotlights */
.ph--stage {
  background: radial-gradient(ellipse 70% 50% at 50% 60%, #2a1408 0%, #0a0807 70%);
}
.ph--stage::before, .ph--stage::after {
  content: "";
  position: absolute;
  width: 200%; height: 8%;
  top: 10%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(232,99,42,0.6) 30%,
    rgba(255,202,122,0.9) 50%,
    rgba(232,99,42,0.6) 70%,
    transparent 100%);
  filter: blur(14px);
  transform-origin: 0 0;
}
.ph--stage::before { left: -10%; transform: rotate(28deg); }
.ph--stage::after { left: -10%; transform: rotate(-28deg) translateY(0); }
.ph--stage .silhouette {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 50%;
  background:
    radial-gradient(ellipse 65% 50% at 50% 100%, #0a0807 0%, transparent 70%);
}
.ph--stage .silhouette::before {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 45%; height: 100%;
  background: #050302;
  clip-path: polygon(15% 100%, 30% 35%, 35% 22%, 45% 18%, 55% 18%, 65% 22%, 70% 35%, 85% 100%);
}
.ph--stage .silhouette::after {
  content: "";
  position: absolute;
  bottom: 30%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 4px;
  background: linear-gradient(90deg, transparent, #1a0f08 20%, #1a0f08 80%, transparent);
}

/* ph--crowd : DJ back-view, pink wash, crowd */
.ph--crowd {
  background:
    linear-gradient(180deg, rgba(232,99,42,0.4) 0%, rgba(195, 61, 24, 0.3) 30%, #1a0a08 70%, #0a0807 100%);
}
.ph--crowd::before {
  content: "";
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 80%; height: 35%;
  background:
    radial-gradient(ellipse at center, rgba(255, 130, 100, 0.7) 0%, transparent 60%);
  filter: blur(20px);
}
.ph--crowd .booth {
  position: absolute;
  top: 25%; left: 50%;
  transform: translateX(-50%);
  width: 35%; height: 22%;
  background: #050302;
  clip-path: polygon(20% 100%, 30% 30%, 38% 15%, 50% 12%, 62% 15%, 70% 30%, 80% 100%);
}
.ph--crowd .crowd {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background:
    radial-gradient(circle 20px at 10% 30%, #1a0a08 40%, transparent 60%),
    radial-gradient(circle 18px at 25% 50%, #1a0a08 40%, transparent 60%),
    radial-gradient(circle 22px at 40% 25%, #1a0a08 40%, transparent 60%),
    radial-gradient(circle 16px at 55% 55%, #1a0a08 40%, transparent 60%),
    radial-gradient(circle 20px at 70% 30%, #1a0a08 40%, transparent 60%),
    radial-gradient(circle 18px at 85% 50%, #1a0a08 40%, transparent 60%),
    radial-gradient(circle 14px at 95% 40%, #1a0a08 40%, transparent 60%),
    linear-gradient(180deg, transparent 0%, #050302 80%);
}

/* ph--poster : VIBE House Mix poster */
.ph--poster {
  background: linear-gradient(180deg, #1a0a08 0%, #0a0807 100%);
  display: grid; place-items: center;
  padding: 14%;
}
.ph--poster .p-inner {
  text-align: center;
  border: 1px solid rgba(242, 160, 61, 0.3);
  padding: 12% 8%;
  width: 100%; height: 100%;
  display: grid; place-items: center;
  position: relative;
}
.ph--poster .p-inner::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(242, 160, 61, 0.15);
}
.ph--poster .p-top {
  position: absolute; top: 8%; left: 0; right: 0;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(242, 160, 61, 0.7);
  text-transform: uppercase;
}
.ph--poster .p-bot {
  position: absolute; bottom: 8%; left: 0; right: 0;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(242, 160, 61, 0.5);
  text-transform: uppercase;
}
.ph--poster .p-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 0.9;
  background: var(--sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.ph--poster .p-sub {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 220, 180, 0.6);
  margin-top: 8px;
  letter-spacing: 0.1em;
}

/* ph--euphoria : Ibiza sunset, palms, neon outline text */
.ph--euphoria {
  background:
    linear-gradient(180deg,
      #2a0f04 0%,
      #c33d18 30%,
      #e8632a 45%,
      #f2a03d 55%,
      #ffca7a 62%,
      #6b3520 75%,
      #1a0a08 100%);
  display: grid; place-items: center;
}
.ph--euphoria::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #ffeac4 0%, #ffca7a 50%, transparent 75%);
  filter: blur(2px);
}
.ph--euphoria::after {
  /* horizon line / sea */
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,220,180,0.4) 50%, transparent);
}
.ph--euphoria .palms {
  position: absolute;
  bottom: 20%; left: 0; right: 0; height: 50%;
  background:
    /* left palm */
    radial-gradient(circle 80px at 12% 30%, transparent 0%, transparent 35%, #050302 36%, #050302 42%, transparent 43%),
    /* right palm */
    radial-gradient(circle 60px at 88% 35%, transparent 0%, transparent 30%, #050302 31%, #050302 38%, transparent 39%);
  pointer-events: none;
}
.ph--euphoria .palms::before {
  /* left palm trunk + fronds */
  content: "";
  position: absolute;
  left: 8%; bottom: 0;
  width: 4px; height: 70%;
  background: #050302;
  transform: rotate(-3deg);
  transform-origin: bottom;
  box-shadow:
    16px -8px 0 -1px #050302,
    -16px -12px 0 -1px #050302;
}
.ph--euphoria .palms::after {
  content: "";
  position: absolute;
  right: 12%; bottom: 0;
  width: 3px; height: 60%;
  background: #050302;
  transform: rotate(4deg);
  transform-origin: bottom;
}
.ph--euphoria .e-title {
  position: relative; z-index: 3;
  font-family: var(--f-display);
  font-weight: 200;
  font-size: clamp(20px, 4vw, 44px);
  letter-spacing: 0.3em;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-shadow: 0 0 14px rgba(255,255,255,0.7), 0 0 28px rgba(255, 202, 122, 0.6);
  text-align: center;
  line-height: 1.2;
}
.ph--euphoria .e-title small {
  display: block;
  font-size: 0.35em;
  letter-spacing: 0.5em;
  margin-top: 12px;
  -webkit-text-stroke: 0.5px #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* ph--portrait : DJ portrait for about (mid placeholder) */
.ph--portrait {
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, #2a1408 0%, #0a0807 75%);
}
.ph--portrait::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 140%; height: 50%;
  background: radial-gradient(ellipse at center top, rgba(242,160,61,0.25), transparent 60%);
  filter: blur(20px);
}
.ph--portrait::after {
  /* figure silhouette */
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 75%;
  background: #050302;
  clip-path: polygon(20% 100%, 28% 60%, 18% 35%, 25% 18%, 35% 8%, 45% 4%, 55% 4%, 65% 8%, 75% 18%, 82% 35%, 72% 60%, 80% 100%);
  box-shadow: 0 0 60px rgba(232,99,42,0.3);
}

/* ============================================================
   REVEAL animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
.reveal[data-delay="4"] { transition-delay: 0.4s; }

/* Hero entrance */
.h-in {
  animation: hin 1.2s cubic-bezier(.2,.8,.2,1) both;
}
.h-in[data-d="1"] { animation-delay: 0.1s; }
.h-in[data-d="2"] { animation-delay: 0.25s; }
.h-in[data-d="3"] { animation-delay: 0.45s; }
.h-in[data-d="4"] { animation-delay: 0.65s; }
.h-in[data-d="5"] { animation-delay: 0.85s; }
@keyframes hin {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .section { padding: 100px 28px; }
  .nav, .nav.is-scrolled { padding: 18px 28px; }
  .booking { padding: 120px 28px; }
  .about__grid { grid-template-columns: 1fr; gap: 50px; }
  .about__photo-wrap { position: static; max-width: 480px; }
  .music__grid { grid-template-columns: 1fr; }
  .daily__inner { grid-template-columns: 1fr; gap: 50px; }
  .daily__visual { max-width: 460px; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero__sub { grid-template-columns: 1fr; gap: 30px; }
  .hero__sub-right { text-align: left; }
}
@media (max-width: 760px) {
  .section { padding: 80px 20px; }
  .nav, .nav.is-scrolled { padding: 16px 20px; }
  .booking { padding: 90px 20px; }
  .footer { padding: 40px 20px; }
  .hero__inner { padding: 100px 20px 40px; }

  /* Hide vertical labels and section kicker */
  .vlabel { display: none; }
  .section__head { grid-template-columns: 1fr; gap: 16px; padding-bottom: 36px; margin-bottom: 50px; align-items: start; }
  .section__kicker { text-align: left; max-width: none; }

  /* Mobile menu */
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__mobile {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 7, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 90;
    display: flex; flex-direction: column;
    justify-content: center;
    padding: 80px 32px 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s;
  }
  .nav.is-open .nav__mobile { opacity: 1; pointer-events: auto; }
  .nav__mobile-links { display: flex; flex-direction: column; gap: 0; }
  .nav__mobile-links a {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    padding: 18px 0;
    color: var(--text);
    border-bottom: 1px solid var(--line-soft);
    display: flex; align-items: baseline; gap: 14px;
  }
  .nav__mobile-links a span {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.2em;
    font-weight: 400;
  }
  .nav__mobile-cta {
    margin-top: 32px;
    font-family: var(--f-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 16px 24px;
    background: var(--sunset);
    color: #1a0a02;
    border-radius: 999px;
    align-self: flex-start;
    font-weight: 700;
  }

  .hero__meta { font-size: 9px; gap: 12px; margin-bottom: 40px; }
  .hero__title-side { display: none; }
  .hero__sub-left { font-size: 18px; }
  .hero__sub-right .big { font-size: 44px; }
  .marquee__track { font-size: 16px; gap: 40px; }
  .marquee__track span { gap: 40px; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 22px 16px; }
  .stat__num { font-size: 40px; }

  .about__quote { padding-left: 20px; margin: 50px 0; }
  .about__quote .mark { font-size: 90px; top: -28px; left: -6px; }

  .event {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }
  .events__list::before { display: none; }
  .event__dot { display: none; }
  .event__date { font-size: 18px; }
  .event__title { font-size: 18px; }
  .event__tag { justify-self: start; }

  .gallery__grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 70px;
    gap: 10px;
  }
  .gphoto--1 { grid-column: span 6; grid-row: span 4; }
  .gphoto--2 { grid-column: span 6; grid-row: span 3; }
  .gphoto--3 { grid-column: span 3; grid-row: span 2; }
  .gphoto--4 { grid-column: span 6; grid-row: span 4; }
  .gphoto--5 { grid-column: span 3; grid-row: span 2; }

  .booking__email { padding: 20px 28px; font-size: 18px; }
  .social { width: 56px; height: 56px; }
  .social:hover { width: 56px; border-radius: 50%; }
  .social:hover::before { opacity: 1; }
  .social__name { display: none; }
}

/* ============================================================
   HERO TAGLINE — „House music all night long"
   ============================================================ */
.hero__tagline {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--text);
  text-transform: none;
}
.hero__tagline em {
  font-style: italic;
  font-weight: 700;
  background: var(--sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(232, 99, 42, 0.35));
}
.hero__tagline-text {
  flex: 0 1 auto;
}
.hero__tagline-mark {
  flex: 1 1 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold) 60%, var(--glow));
  max-width: 180px;
  min-width: 24px;
}
.hero__tagline-mark--r {
  background: linear-gradient(to left, transparent, var(--gold) 60%, var(--glow));
}
@media (max-width: 760px) {
  .hero__tagline { gap: 14px; margin-top: 10px; }
  .hero__tagline-mark { max-width: 60px; min-width: 16px; }
}

/* ============================================================
   EVENTS — poster thumb column (override base grid)
   ============================================================ */
.events__list::before {
  left: 244px; /* center of dot column after adding 72px thumb + 32 gap + 110 date + 32 gap + dot/2 */
}
.event {
  grid-template-columns: 72px 110px 44px 1fr auto;
  cursor: default;
}
.event__poster {
  width: 72px;
  aspect-ratio: 3 / 4;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.3s;
}
.event:hover .event__poster {
  transform: scale(1.04) rotate(-1deg);
  border-color: var(--gold);
}
.event__poster .ph__note {
  font-size: 7px;
  letter-spacing: 0.12em;
  padding: 3px 5px;
  bottom: 4px; right: 4px;
}

/* Poster-thumb base — small, evocative variations by data-pid */
.ph--poster-thumb {
  position: absolute; inset: 0;
}
.ph--poster-thumb::before,
.ph--poster-thumb::after {
  content: "";
  position: absolute;
}
.ph--poster-thumb[data-pid="stoun"] {
  background: linear-gradient(160deg, #1a0a08 0%, #4a1a08 50%, #0a0807 100%);
}
.ph--poster-thumb[data-pid="stoun"]::before {
  inset: 14% 16%;
  border: 1px solid rgba(242,160,61,0.4);
}
.ph--poster-thumb[data-pid="stoun"]::after {
  inset: 0; bottom: 60%;
  background: radial-gradient(ellipse at center, rgba(242,160,61,0.5), transparent 70%);
}
.ph--poster-thumb[data-pid="osmicka"] {
  background: linear-gradient(135deg, #2a1408 0%, #0a0807 60%);
}
.ph--poster-thumb[data-pid="osmicka"]::before {
  inset: 30% 20% 40%;
  background:
    linear-gradient(90deg, var(--gold) 0%, var(--copper) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 30%, 0 30%, 0 60%, 100% 60%, 100% 70%, 0 70%, 0 100%, 100% 100%);
  opacity: 0.5;
}
.ph--poster-thumb[data-pid="osmicka"]::after {
  inset: 12% 18% auto auto;
  width: 30%; height: 12%;
  background: var(--gold);
}
.ph--poster-thumb[data-pid="amici"] {
  background: linear-gradient(180deg, #f2a03d 0%, #c33d18 100%);
}
.ph--poster-thumb[data-pid="amici"]::before {
  inset: 0;
  background: radial-gradient(circle at 50% 35%, #ffeac4 0%, transparent 35%);
}
.ph--poster-thumb[data-pid="amici"]::after {
  inset: 60% 25% 18%;
  background: #1a0a02;
  border-radius: 50%;
  opacity: 0.5;
}
.ph--poster-thumb[data-pid="sweetsen"] {
  background: linear-gradient(160deg, #c33d18 0%, #2a1408 70%, #0a0807 100%);
}
.ph--poster-thumb[data-pid="sweetsen"]::before {
  inset: 22% 14%;
  background:
    repeating-linear-gradient(45deg, transparent 0 6px, rgba(255,202,122,0.25) 6px 7px);
}
.ph--poster-thumb[data-pid="bfl"] {
  background: linear-gradient(180deg, #ffca7a 0%, #e8632a 50%, #1a0a02 100%);
}
.ph--poster-thumb[data-pid="bfl"]::before {
  inset: 30% 18% 40%;
  border: 1.5px solid #1a0a02;
  border-radius: 50%;
}
.ph--poster-thumb[data-pid="bfl"]::after {
  inset: auto 0 8% 0;
  height: 10%;
  background: #1a0a02;
}
.ph--poster-thumb[data-pid="pulse"] {
  background: #0a0807;
}
.ph--poster-thumb[data-pid="pulse"]::before {
  inset: 30% 0;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  clip-path: polygon(0 50%, 8% 50%, 12% 20%, 18% 80%, 24% 35%, 32% 65%, 40% 25%, 50% 75%, 60% 30%, 70% 70%, 78% 40%, 86% 60%, 100% 50%);
}
.ph--poster-thumb[data-pid="pulse"]::after {
  inset: 70% 30% 14%;
  border: 1px solid var(--gold);
  border-radius: 999px;
}
.ph--poster-thumb[data-pid="sunset"] {
  background: linear-gradient(180deg, #2a0f04 0%, #c33d18 40%, #f2a03d 55%, #2a1408 80%, #0a0807 100%);
}
.ph--poster-thumb[data-pid="sunset"]::before {
  inset: 35% 35% 45%;
  background: radial-gradient(circle, #ffeac4, #ffca7a 60%, transparent 80%);
  border-radius: 50%;
}
.ph--poster-thumb[data-pid="sunset"]::after {
  inset: auto 0 25% 0;
  height: 1px;
  background: rgba(255,220,180,0.5);
}
.ph--poster-thumb[data-pid="pecka"] {
  background: linear-gradient(135deg, #d4a574 0%, #6b3520 100%);
}
.ph--poster-thumb[data-pid="pecka"]::before {
  inset: 30% 25%;
  background: #2a1408;
  border-radius: 50%;
}
.ph--poster-thumb[data-pid="pecka"]::after {
  inset: 35% 30%;
  background: radial-gradient(circle, transparent 30%, #d4a574 31%, transparent 40%);
  border-radius: 50%;
}

/* ============================================================
   PLACEHOLDER — B&W concrete with hanging orbs (about + gallery)
   ============================================================ */
.ph--concrete {
  background:
    radial-gradient(ellipse 80% 50% at 50% 25%, #3a3a3a 0%, #1a1a1a 50%, #050505 100%);
  filter: grayscale(1);
}
.ph--concrete::before {
  /* concrete wall texture */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.02) 50%, transparent 100%),
    repeating-linear-gradient(0deg, transparent 0 40px, rgba(255,255,255,0.025) 40px 41px),
    repeating-linear-gradient(90deg, transparent 0 60px, rgba(255,255,255,0.02) 60px 61px);
}
.ph--concrete::after {
  /* spotlight from above */
  content: "";
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 70%;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.18) 0%, transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}
.ph--concrete .orbs {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 0 6%;
}
.ph--concrete .orbs span {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0f0f0 0%, #888 40%, #2a2a2a 90%);
  position: relative;
  box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}
.ph--concrete .orbs span::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  width: 1px; height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15));
}
.ph--concrete .orbs span:nth-child(1) { transform: translateY(40px); }
.ph--concrete .orbs span:nth-child(2) { transform: translateY(20px); width: 28px; height: 28px; }
.ph--concrete .orbs span:nth-child(3) { transform: translateY(60px); }
.ph--concrete .orbs span:nth-child(4) { transform: translateY(30px); width: 32px; height: 32px; }
.ph--concrete .orbs span:nth-child(5) { transform: translateY(50px); }
.ph--concrete .orbs span:nth-child(6) { transform: translateY(15px); width: 26px; height: 26px; }
.ph--concrete .orbs span:nth-child(7) { transform: translateY(45px); }
.ph--concrete .figure {
  position: absolute;
  bottom: 5%; left: 50%;
  transform: translateX(-50%);
  width: 32%; height: 55%;
  background: #050505;
  clip-path: polygon(25% 100%, 30% 55%, 22% 30%, 28% 14%, 38% 4%, 50% 0%, 62% 4%, 72% 14%, 78% 30%, 70% 55%, 75% 100%);
  filter: drop-shadow(0 0 30px rgba(0,0,0,0.8));
}
.ph--concrete .floor {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 18%;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.9) 100%);
}

/* ============================================================
   PLACEHOLDER — Festival LED wall + figure with peace sign
   ============================================================ */
.ph--led {
  background: linear-gradient(180deg, #2a1408 0%, #0a0807 100%);
  position: relative;
}
.ph--led .led-grid {
  position: absolute;
  inset: 5% 5% 30%;
  background:
    linear-gradient(135deg, rgba(232,99,42,0.7), rgba(242,160,61,0.4)),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.4) 0 3px, transparent 3px 6px),
    repeating-linear-gradient(90deg, rgba(0,0,0,0.4) 0 3px, transparent 3px 6px);
  filter: blur(0.5px);
  box-shadow: 0 0 60px rgba(232,99,42,0.45);
}
.ph--led .figure-front {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 45%; height: 70%;
  background: #050302;
  clip-path: polygon(
    18% 100%,
    22% 55%,
    /* left arm raised, peace sign */
    8% 38%, 4% 22%, 8% 18%, 14% 28%, 22% 40%,
    /* shoulder */
    25% 25%,
    /* head */
    38% 12%, 50% 6%, 62% 12%, 75% 25%,
    /* right side */
    78% 40%,
    /* right arm */
    86% 28%, 92% 18%, 96% 22%, 92% 38%, 78% 55%,
    82% 100%
  );
}

/* ============================================================
   PLACEHOLDER — Church projection / open-air night
   ============================================================ */
.ph--church {
  background: linear-gradient(180deg, #0a0807 0%, #1a0f08 60%, #0a0807 100%);
}
.ph--church .church-silhouette {
  position: absolute;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  width: 50%; height: 65%;
  background: linear-gradient(180deg, rgba(232,99,42,0.5) 0%, rgba(195,61,24,0.3) 100%);
  clip-path: polygon(
    35% 100%, 35% 50%,
    /* tower */
    42% 50%, 42% 25%, 46% 25%, 46% 8%, 50% 0%, 54% 8%, 54% 25%, 58% 25%, 58% 50%,
    65% 50%, 65% 100%
  );
  filter: blur(0.5px);
  box-shadow: 0 0 80px rgba(242,160,61,0.3);
}
.ph--church::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 2px at 20% 25%, rgba(255,220,180,0.6), transparent),
    radial-gradient(circle 1px at 75% 15%, rgba(255,220,180,0.5), transparent),
    radial-gradient(circle 1.5px at 35% 35%, rgba(255,220,180,0.4), transparent),
    radial-gradient(circle 1px at 85% 30%, rgba(255,220,180,0.4), transparent);
}
.ph--church .church-crowd {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background:
    radial-gradient(circle 14px at 8% 50%, #050302 40%, transparent 60%),
    radial-gradient(circle 12px at 22% 65%, #050302 40%, transparent 60%),
    radial-gradient(circle 16px at 38% 45%, #050302 40%, transparent 60%),
    radial-gradient(circle 12px at 52% 60%, #050302 40%, transparent 60%),
    radial-gradient(circle 14px at 68% 50%, #050302 40%, transparent 60%),
    radial-gradient(circle 12px at 82% 65%, #050302 40%, transparent 60%),
    radial-gradient(circle 10px at 94% 55%, #050302 40%, transparent 60%),
    linear-gradient(180deg, transparent 0%, #050302 70%);
}

/* ============================================================
   PLACEHOLDER — Beats For Love festival poster
   ============================================================ */
.ph--bfl {
  background: linear-gradient(160deg, #2a0f04 0%, #c33d18 40%, #f2a03d 70%, #ffca7a 100%);
  position: relative;
  display: grid; place-items: center;
  padding: 14%;
}
.ph--bfl::before {
  content: "";
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #ffeac4 0%, rgba(255,202,122,0.3) 50%, transparent 75%);
  filter: blur(4px);
}
.ph--bfl .bfl-inner {
  position: relative; z-index: 2;
  text-align: center;
  width: 100%;
}
.ph--bfl .bfl-juvi {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 5.5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: #1a0a02;
  text-transform: uppercase;
}
.ph--bfl .bfl-fest {
  margin-top: 14px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(11px, 1.6vw, 18px);
  letter-spacing: 0.25em;
  color: #1a0a02;
  line-height: 1.1;
  text-transform: uppercase;
  opacity: 0.85;
}
.ph--bfl .p-top {
  position: absolute; top: 5%; left: 0; right: 0;
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: #1a0a02;
  text-transform: uppercase;
  text-align: center;
  z-index: 3;
  opacity: 0.7;
}
.ph--bfl .p-bot {
  position: absolute; bottom: 5%; left: 0; right: 0;
  font-family: var(--f-mono);
  font-size: 8px;
  letter-spacing: 0.3em;
  color: #1a0a02;
  text-transform: uppercase;
  text-align: center;
  z-index: 3;
  opacity: 0.55;
}

/* ============================================================
   GALLERY — 8-tile asymmetric override
   ============================================================ */
.gallery__grid {
  grid-auto-flow: dense;
}
.gphoto--1 { grid-column: span 7; grid-row: span 5; }   /* DJ stage 3:2 dominant */
.gphoto--2 { grid-column: span 5; grid-row: span 3; }   /* peace LED landscape */
.gphoto--3 { grid-column: span 5; grid-row: span 2; }   /* church landscape */
.gphoto--4 { grid-column: span 5; grid-row: span 3; }   /* back to crowd landscape */
.gphoto--5 { grid-column: span 3; grid-row: span 4; }   /* VIBE poster 3:4 */
.gphoto--6 { grid-column: span 4; grid-row: span 4; }   /* EUPHORIA square */
.gphoto--7 { grid-column: span 3; grid-row: span 4; }   /* BFL poster 3:4 */
.gphoto--8 { grid-column: span 4; grid-row: span 5; }   /* B&W art 4:5 */

@media (max-width: 760px) {
  .gphoto--1 { grid-column: span 6; grid-row: span 4; }
  .gphoto--2 { grid-column: span 6; grid-row: span 3; }
  .gphoto--3 { grid-column: span 6; grid-row: span 2; }
  .gphoto--4 { grid-column: span 6; grid-row: span 3; }
  .gphoto--5 { grid-column: span 3; grid-row: span 4; }
  .gphoto--6 { grid-column: span 3; grid-row: span 3; }
  .gphoto--7 { grid-column: span 3; grid-row: span 4; }
  .gphoto--8 { grid-column: span 3; grid-row: span 4; }
}

/* ============================================================
   EVENTS RESPONSIVE — keep poster visible on mobile (smaller)
   ============================================================ */
@media (max-width: 760px) {
  .event {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "poster date"
      "poster title"
      "poster tag";
    gap: 4px 16px;
    padding: 20px 0;
  }
  .event__poster {
    grid-area: poster;
    width: 56px;
    align-self: start;
  }
  .event__date { grid-area: date; }
  .event__dot { display: none; }
  .event div:nth-of-type(2) { grid-area: title; }
  .event__tag {
    grid-area: tag;
    justify-self: start;
    margin-top: 6px;
  }
}

/* ============================================================
   STAGES \u2014 Kde m\u011b sly\u0161eli
   ============================================================ */
.stages {
  background:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(232, 99, 42, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(242, 160, 61, 0.05), transparent 60%);
  position: relative;
}
.stages__group {
  padding: 50px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}
.stages__group + .stages__group { border-top: 1px solid var(--line); }
.stages__group:last-of-type { border-bottom: 1px solid var(--line); }

.stages__group-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 14px;
  position: sticky;
  top: 100px;
}
.stages__group-label {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: var(--sunset);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.stages__group-meta {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
}
.stages__group-meta::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 12px;
}

.stages__row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.stages__chip {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: none;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1),
              background 0.35s ease,
              color 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.4s ease;
  background: rgba(20, 14, 12, 0.5);
  color: var(--text);
  cursor: default;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.stages__chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
  transform: translateY(-3px);
  opacity: 0.7;
  transition: background 0.3s, opacity 0.3s, transform 0.3s;
}
.stages__chip .note {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
  padding-left: 14px;
  margin-left: 2px;
  border-left: 1px solid var(--line);
  transition: color 0.35s, border-color 0.35s;
  align-self: center;
  line-height: 1;
}
.stages__chip:hover {
  background: var(--sunset);
  color: #1a0a02;
  border-color: transparent;
  transform: translateY(-3px) rotate(-0.8deg);
  box-shadow: 0 18px 50px rgba(232, 99, 42, 0.28);
}
.stages__chip:hover::before {
  background: #1a0a02;
  opacity: 1;
  transform: translateY(-3px) scale(1.2);
}
.stages__chip:hover .note {
  color: #1a0a02;
  border-color: rgba(26, 10, 2, 0.35);
}

/* FM Electronic Fest \u2014 lead spoluzakladatel chip */
.stages__chip--lead {
  background: linear-gradient(135deg, rgba(255, 202, 122, 0.10), rgba(232, 99, 42, 0.08));
  border-color: var(--gold);
}
.stages__chip--lead::before {
  background: var(--glow);
  box-shadow: 0 0 12px var(--glow);
  opacity: 1;
}
.stages__chip--lead .note {
  color: var(--glow);
  font-weight: 500;
}

/* Daily-party venues \u2014 subtle distinct tint */
.stages__chip--day {
  border-style: dashed;
  border-color: rgba(242, 160, 61, 0.4);
}

@media (max-width: 1100px) {
  .stages__group {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 0;
  }
  .stages__group-head { position: static; padding-top: 0; }
}
@media (max-width: 760px) {
  .stages__chip {
    padding: 14px 20px;
    font-size: 18px;
    gap: 10px;
  }
  .stages__chip .note {
    font-size: 9px;
    padding-left: 10px;
  }
  .stages__group { padding: 32px 0; }
}

/* ============================================================
   FOOTER \u2014 coverage line
   ============================================================ */
.footer__coverage {
  max-width: 1440px;
  margin: 24px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html { scroll-behavior: auto; }
}


/* ============================================================
   Reálné fotky navázané do placeholderů (.ph--img) — override
   ============================================================ */
.ph--img { background:#0c0a09 !important; filter:none !important; }
.ph--img::before, .ph--img::after { display:none !important; content:none !important; }
.ph--img > * { display:none !important; }
.ph--img > img.real {
  display:block !important;
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
  z-index:5;
}
.ph--img.ph--poster-thumb > img.real,
.event__poster .ph--img > img.real { object-fit:cover; }
.gphoto .ph--img:hover > img.real,
.about__photo .ph--img:hover > img.real { transform:scale(1.04); }
.ph--img > img.real { transition:transform .6s ease; }


/* ============================================================
   Iterace 4 — fixy dle Rosty (hero fit, timeline progress)
   ============================================================ */
/* Hero „JUVI" — celé jméno se musí vejít, nesmí se ořezávat */
.hero__title {
  font-size: clamp(80px, 17.5vw, 280px) !important;
  letter-spacing: -0.03em !important;
  white-space: nowrap;
  max-width: 100%;
}
.hero__title-row { flex-wrap: nowrap; overflow: visible; }
.hero, .hero__inner { overflow: visible; }

/* Časová osa — naplňovací progress prvek (jako v 1. verzi) */
.events__prog {
  position: absolute;
  left: 132px;
  top: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--copper));
  box-shadow: 0 0 14px rgba(242,160,61,0.5);
  z-index: 0;
  transition: height 0.15s linear;
  pointer-events: none;
}
@media (max-width: 760px) {
  .events__prog { display: none; }
}


/* ============================================================
   Iterace 5 — svislá čára i progress PŘESNĚ skrz kolečka akcí
   (--tl-x měří JS dle středu .event__dot)
   ============================================================ */
.events__list::before { left: var(--tl-x, 246px) !important; }
.events__prog { left: var(--tl-x, 246px) !important; transform: translateX(-50%); width: 2px; }
.events__list::before { transform: translateX(-50%); width: 2px; }
.event__dot { z-index: 3; }


/* ============================================================
   Iterace 6 — HERO kompaktně nahoru (vše above-the-fold)
   + zářící animace z 1. návrhu výrazná
   ============================================================ */
.hero { min-height: 100svh; }
.hero__inner {
  justify-content: center;
  padding: clamp(88px, 11vh, 120px) clamp(20px,5vw,40px) clamp(28px,5vh,56px);
  gap: 0;
}
.hero__meta { margin-bottom: clamp(18px, 4vh, 40px) !important; }
.hero__title {
  font-size: clamp(64px, 14.5vw, 210px) !important;
  line-height: 0.84 !important;
  letter-spacing: -0.03em !important;
  white-space: nowrap;
}
.hero__title-row { margin: 0 !important; }
.hero__tagline {
  margin-top: clamp(6px, 1.6vh, 16px) !important;
  font-size: clamp(24px, 3.6vw, 52px) !important;
}
.hero__sub { margin-top: clamp(16px, 3.4vh, 36px) !important; }

/* zářící paprskový kotouč z 1. návrhu — ať je vidět víc */
#hero-shader { z-index: 0; opacity: 1; }
.hero__veil {
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(0,0,0,0) 0%, rgba(10,8,7,0.35) 70%, rgba(10,8,7,0.85) 100%),
    linear-gradient(to bottom, rgba(10,8,7,0.35) 0%, transparent 22%, transparent 72%, rgba(10,8,7,1) 100%) !important;
}
@media (max-height: 760px) {
  .hero__title { font-size: clamp(56px, 12vh, 150px) !important; }
  .hero__sub { margin-top: 14px !important; }
}


/* ============================================================
   Iterace 6b — svislý popisek ven z toku (netlačí JUVI dolů)
   ============================================================ */
.hero__inner { position: relative; }
.hero__title-side {
  position: absolute !important;
  left: clamp(6px, 1.6vw, 22px);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  padding-bottom: 0 !important;
  margin: 0 !important;
  max-height: 70vh;
  z-index: 3;
}
.hero__title-row {
  align-items: center !important;
  min-height: 0 !important;
  padding-left: clamp(28px, 5vw, 60px);
}
@media (max-width: 760px) {
  .hero__title-side { display: none; }
  .hero__title-row { padding-left: 0; }
}


/* Iterace 6c — gutter pro svislý popisek, ať nekoliduje s textem */
.hero__inner { padding-left: clamp(46px, 7.5vw, 96px) !important; }
.hero__title-side { left: clamp(8px, 2vw, 30px) !important; }
.hero__title-row { padding-left: 0 !important; }


/* ============================================================
   Iterace 7 — kulička na hover ZŮSTÁVÁ na čáře
   (příčina: .event:hover posouval celý řádek o 16px → dot mimo)
   ============================================================ */
.event:hover { padding-left: 0 !important; }
.event { padding-left: 0 !important; }
.event:hover .event__title { color: var(--gold); }
.event__dot { z-index: 4; }
/* jemný hover bez posunu osy */
.event:hover { background: linear-gradient(90deg, rgba(242,160,61,0.06), transparent 60%); }

/* ============================================================
   Iterace 7 — HERO: velký JUVI nahoře = hlavní poutač,
   zářící animace z 1. návrhu výrazně prolíná
   ============================================================ */
.hero__inner {
  justify-content: flex-start !important;
  padding-top: clamp(86px, 11vh, 124px) !important;
  padding-bottom: clamp(18px, 3vh, 36px) !important;
}
.hero__meta { margin-bottom: clamp(10px, 2.4vh, 26px) !important; }
.hero__title {
  font-size: clamp(92px, 21vw, 340px) !important;
  line-height: 0.80 !important;
  letter-spacing: -0.035em !important;
  white-space: nowrap;
  margin-top: clamp(6px, 1.6vh, 18px) !important;
}
.hero__tagline { margin-top: clamp(4px, 1.2vh, 14px) !important; }
.hero__sub { margin-top: clamp(12px, 2.6vh, 28px) !important; }
.hero__ctas { margin-top: clamp(16px, 3vh, 34px) !important; }

/* zářící paprskový kotouč z 1. návrhu — ať výrazně prolíná za JUVI */
.hero__veil {
  background:
    radial-gradient(ellipse 75% 65% at 50% 46%, rgba(0,0,0,0) 0%, rgba(10,8,7,0.18) 60%, rgba(10,8,7,0.7) 100%),
    linear-gradient(to bottom, rgba(10,8,7,0.3) 0%, transparent 18%, transparent 78%, rgba(10,8,7,1) 100%) !important;
}
#hero-shader { opacity: 1 !important; }

@media (max-height: 820px) {
  .hero__title { font-size: clamp(72px, 16vh, 240px) !important; }
  .hero__sub { margin-top: 12px !important; }
  .hero__ctas { margin-top: 14px !important; }
}


/* ============================================================
   Iterace 8 — logo v hlavičce větší + sociálky vycentrované
   ============================================================ */
/* Hlavičkové logo výraznější hned na úvodu */
.nav__logo { font-size: clamp(22px, 2vw, 30px) !important; letter-spacing: 0.14em !important; }
.nav.is-scrolled .nav__logo { font-size: clamp(20px, 1.7vw, 26px) !important; }

/* Ikona PŘESNĚ ve středu kolečka (název ven z toku, ať necentruje špatně) */
.social { display: flex !important; align-items: center !important; justify-content: center !important; }
.social svg { position: relative; z-index: 2; }
.social__name {
  position: absolute !important;
  left: 0; right: 0;
  text-align: center;
  margin-left: 0 !important;
}
/* Na hover se kolečko roztáhne na pilulku: ikona ven, název dovnitř (čistě, bez překryvu) */
.social:hover svg { transform: scale(0) !important; }


/* ============================================================
   Iterace 9 — sociálky v hero vedle Booking (stejná hover animace)
   ============================================================ */
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.socials--hero {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: clamp(6px, 2vw, 26px);
}
.socials--hero .social { width: 56px; height: 56px; }
.socials--hero .social:hover { width: 168px; }
@media (max-width: 760px) {
  .socials--hero { margin-left: 0; width: 100%; justify-content: flex-start; }
  .socials--hero .social__name { display: none; }
}


/* ============================================================
   Iterace 11 — decentní plovoucí přehrávač hudby na pozadí
   ============================================================ */
.bg-player[hidden] { display: none !important; }
.bg-player {
  position: fixed;
  left: clamp(14px, 2vw, 26px);
  bottom: clamp(14px, 2vw, 26px);
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(16,12,10,0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  overflow: hidden;
  transition: gap 0.4s cubic-bezier(.2,.8,.2,1), padding 0.4s;
}
.bg-player__btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: var(--sunset);
  color: #1a0a02;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.3s;
}
.bg-player__btn:hover { transform: scale(1.06); }
.bg-player__btn svg { width: 18px; height: 18px; }
.bg-player__vol {
  width: 0;
  opacity: 0;
  height: 4px;
  margin: 0;
  accent-color: var(--gold);
  cursor: pointer;
  transition: width 0.4s cubic-bezier(.2,.8,.2,1), opacity 0.3s, margin 0.4s;
}
.bg-player:hover .bg-player__vol,
.bg-player:focus-within .bg-player__vol {
  width: 96px;
  opacity: 1;
  margin: 0 14px 0 12px;
}
/* equalizer proužky když hraje */
.bg-eq { position: absolute; display: flex; gap: 2px; align-items: flex-end; height: 14px; opacity: 0; }
.bg-eq i { width: 2.5px; background: #1a0a02; height: 40%; border-radius: 1px; }
.bg-player.is-playing .bg-eq { opacity: 1; }
.bg-player.is-playing .bg-ico-play,
.bg-player.is-playing .bg-ico-pause { opacity: 0; }
.bg-player.is-playing:hover .bg-eq { opacity: 0; }
.bg-player.is-playing:hover .bg-ico-pause { opacity: 1; }
.bg-player.is-playing .bg-eq i { animation: bgeq 0.9s ease-in-out infinite; }
.bg-player.is-playing .bg-eq i:nth-child(2){ animation-delay:.15s }
.bg-player.is-playing .bg-eq i:nth-child(3){ animation-delay:.30s }
.bg-player.is-playing .bg-eq i:nth-child(4){ animation-delay:.45s }
@keyframes bgeq { 0%,100%{ height:30% } 50%{ height:100% } }
@media (prefers-reduced-motion: reduce) {
  .bg-player.is-playing .bg-eq i { animation: none; height: 60%; }
}
@media (max-width: 760px) {
  .bg-player { left: auto; right: 14px; bottom: 14px; }
  .bg-player:hover .bg-player__vol, .bg-player:focus-within .bg-player__vol { width: 72px; }
}


/* YouTube podkres přehrávač — skrytý funkční iframe */
#yt-bg, #yt-bg iframe {
  position: fixed;
  width: 1px; height: 1px;
  left: -9999px; bottom: 0;
  opacity: 0;
  pointer-events: none;
  border: 0;
}


/* Decentní podpis autora webu (varianta „rv.") */
.footer__credit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
  padding-top: 18px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-4, #5c4f43);
  opacity: 0.55;
  transition: opacity 0.4s;
  position: relative;
}
.footer__credit:hover { opacity: 1; }
.footer__credit-line {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 46px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.footer__credit strong {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--sunset);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.footer__credit-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sunset);
  display: inline-block;
}


/* Reference & důkazy (lineupy/afterparty plakáty) */
.stages__proofwrap { margin-top: 44px; }
.stages__proof {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.proof {
  position: relative; display: block;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}
.proof img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(.35) brightness(.82);
  transition: filter .5s, transform .6s;
}
.proof:hover img { filter: none; transform: scale(1.05); }
.proof span {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 9px 11px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: #fff;
  background: linear-gradient(transparent, rgba(10,8,7,.88));
}
@media (max-width: 600px) { .stages__proof { grid-template-columns: repeat(2, 1fr); } }


/* "Zapnout zvuk" výzva (hudba běží ztlumená dokud návštěvník neklikne) */
.bg-hint[hidden] { display: none !important; }
.bg-hint {
  position: fixed;
  left: clamp(14px, 2vw, 26px);
  bottom: calc(clamp(14px, 2vw, 26px) + 60px);
  z-index: 951;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px 10px 13px;
  border: none;
  border-radius: 999px;
  background: var(--sunset);
  color: #1a0a02;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(242,160,61,.35);
  animation: bgHintPulse 2s ease-in-out infinite;
}
.bg-hint svg { width: 16px; height: 16px; }
.bg-hint:hover { transform: translateY(-2px); }
@keyframes bgHintPulse {
  0%,100% { box-shadow: 0 8px 24px rgba(242,160,61,.30); }
  50%     { box-shadow: 0 8px 30px rgba(242,160,61,.65); }
}
@media (prefers-reduced-motion: reduce) { .bg-hint { animation: none; } }
@media (max-width: 760px) {
  .bg-hint { left: auto; right: 14px; bottom: calc(14px + 58px); }
}


/* ============================================================
   MOBILE FIX — přizpůsobení pro telefon (zrušení vodorovného posuvu)
   Příčina: grid sloupce se nezúžily pod obsah (chybělo minmax(0,1fr)).
   ============================================================ */
html { overflow-x: clip; }
img, iframe, svg, video { max-width: 100%; }
@media (max-width: 760px) {
  .about__grid { grid-template-columns: minmax(0,1fr) !important; }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .music__grid, .music__side, .events__list, .gallery__grid,
  .stages__row, .daily__inner, .about__grid, .stats, .hero__sub {
    min-width: 0;
  }
  .about__grid > *, .about__bio, .about__photo-wrap, .stats > *,
  .music__grid > *, .daily__inner > * { min-width: 0; max-width: 100%; }
}


/* MOBILE FIX 2 — vynutit šířku fotky/grid (aspect-ratio bral šířku z výšky) */
@media (max-width: 760px) {
  .about__grid { grid-template-columns: minmax(0,1fr) !important; gap: 36px !important; }
  .about__photo-wrap { position: static !important; width: 100% !important; max-width: 100% !important; min-width: 0 !important; }
  .about__photo { width: 100% !important; max-width: 100% !important; min-width: 0 !important; }
  .about__photo-caption { max-width: 100%; flex-wrap: wrap; gap: 6px; }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .hero__sub { grid-template-columns: 1fr !important; gap: 18px !important; }
  .hero__sub-left, .hero__sub-right { max-width: 100%; min-width: 0; }
  .nav__mobile { max-width: 100vw; overflow-x: hidden; }
  .nav__mobile-links { width: 100%; max-width: 100%; }
}


/* ============================================================
   MOBILE FIX 3 — JUVI a žánry se NESMÍ ořezávat (vejít na displej)
   (přepisuje všechny předchozí .hero__title pravidla — poslední v souboru)
   ============================================================ */
@media (max-width: 760px) {
  .hero, .hero__inner, .hero__title-row { overflow: visible !important; }
  .hero__title {
    font-size: clamp(40px, 30vw, 120px) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap;
    max-width: 100vw;
  }
  .hero__title-row { justify-content: flex-start; padding-left: 0 !important; }
  .hero__sub-left, .hero__sub-left .accent, .hero__sub-left .pipe {
    font-size: 14px !important;
    letter-spacing: 0 !important;
  }
  .hero__meta { font-size: 10px !important; gap: 10px; flex-wrap: wrap; }
}
@media (max-width: 380px) {
  .hero__title { font-size: 29vw !important; }
  .hero__sub-left, .hero__sub-left .accent, .hero__sub-left .pipe { font-size: 12.5px !important; }
}


/* MOBILE FIX 4 — zrušit zbytečný levý gutter na mobilu (svislý popisek je skrytý) + doladit JUVI */
@media (max-width: 760px) {
  .hero__inner { padding-left: 16px !important; padding-right: 16px !important; }
  .hero__title { font-size: min(25vw, 96px) !important; }
}
@media (max-width: 380px) {
  .hero__title { font-size: 24vw !important; }
}


/* MOBILE FIX 5 — velké nadpisy sekcí ať se vejdou (neořezávat) */
@media (max-width: 760px) {
  .section__title { font-size: clamp(32px, 10.5vw, 58px) !important; line-height: 1.05 !important; max-width: 100%; overflow-wrap: anywhere; }
  .section__num, .section__kicker { max-width: 100%; overflow-wrap: anywhere; }
  .daily__title, .booking__title, .contact h2 { font-size: clamp(30px, 9vw, 52px) !important; max-width: 100%; overflow-wrap: anywhere; }
  .stages__chip { max-width: 100%; }
}
