@font-face {
  font-family: "Fat Franky";
  src: url("../assets/fonts/FatFrank_Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --page-bg: #08080a;
  --ink: #f6f1e8;
  --muted: #bdb7ad;
  --soft: #8d8780;
  --line: rgba(246, 241, 232, 0.16);
  --accent: #ff4f6d;
  --accent-strong: #ff7a4f;
  --focus: #52e0c4;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  --system-font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --brand-font: "Fat Franky", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  background: #000;
}

body {
  min-width: 320px;
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(255, 79, 109, 0.08), transparent 34rem),
    var(--page-bg);
  color: var(--ink);
  font-family: var(--system-font);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body.splash-active {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-color: rgba(246, 241, 232, 0.46);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:hover {
  color: #fff;
  text-decoration-color: var(--accent);
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1rem, 4vw, 2rem);
  overflow: hidden;
  background: #000;
  color: #fff;
  cursor: default;
  opacity: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition:
    opacity 560ms ease,
    visibility 0s linear 560ms;
}

.splash-screen.is-interactive {
  cursor: pointer;
}

.splash-screen.is-exiting {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.splash-screen[hidden] {
  display: none;
}

.splash-content {
  display: grid;
  row-gap: clamp(0.55rem, 1.25svh, 0.75rem);
  justify-items: center;
  width: min(100%, 36rem);
  text-align: center;
}

.splash-logo-frame {
  width: min(clamp(18rem, 88vw, 40rem), calc(100vw - 1.5rem));
  max-width: 100%;
  max-height: min(46svh, 17.2rem);
  aspect-ratio: 100 / 43;
  overflow: hidden;
  opacity: 0;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.12));
  animation: logoFadeIn 1080ms ease-out 120ms forwards;
}

.splash-logo {
  display: block;
  width: 100%;
  height: auto;
  transform: translateY(-28.5%);
}

.splash-loading {
  display: grid;
  justify-items: center;
  width: 100%;
}

.splash-status {
  max-height: 1.6rem;
  margin: 0 0 clamp(0.38rem, 1.15svh, 0.58rem);
  color: var(--muted);
  font-size: clamp(0.95rem, 2.8vw, 1.05rem);
  opacity: 1;
  transform: none;
  transition:
    max-height 260ms ease,
    margin 260ms ease,
    opacity 220ms ease,
    transform 220ms ease,
    visibility 0s linear 260ms;
}

.splash-screen.is-ready .splash-status {
  max-height: 0;
  margin-bottom: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-0.2rem);
}

.loading-bar {
  width: clamp(13rem, 72vw, 22rem);
  height: 0.38rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.loading-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong), var(--focus));
  transform: scaleX(0);
  transform-origin: left center;
}

.enter-hint {
  max-height: 0;
  margin: 0;
  color: #fff;
  font-size: clamp(0.95rem, 2.8vw, 1.02rem);
  visibility: hidden;
  opacity: 0;
  transform: translateY(0.25rem);
  transition:
    max-height 260ms ease,
    margin 260ms ease,
    opacity 260ms ease,
    transform 260ms ease,
    visibility 0s linear 260ms;
}

.splash-screen.is-ready .enter-hint {
  max-height: 1.5rem;
  margin-top: clamp(0.62rem, 1.9svh, 0.88rem);
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}

.site-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 0.9rem;
  opacity: 0;
  transform: translateY(0.5rem);
  visibility: hidden;
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    visibility 0s linear 520ms;
}

body.is-entered .site-shell {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0ms;
}

.landing-reveal {
  opacity: 0;
  transform: translateY(0.75rem);
}

body.is-entered .landing-reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

body.is-entered .landing-reveal--poster {
  transition-delay: 120ms;
}

body.is-entered .landing-reveal--contacts {
  transition-delay: 340ms;
}

body.is-entered .landing-reveal--instagram {
  transition-delay: 540ms;
}

body.landing-reveal-complete .landing-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.landing {
  display: grid;
  justify-items: center;
  width: min(100%, 76rem);
}

.event-poster {
  width: 100%;
  margin: 0;
}

.poster-stage {
  position: relative;
  display: block;
  width: 100%;
}

.event-poster picture {
  display: block;
  width: 100%;
}

.poster-stage picture {
  display: block;
  width: 100%;
}

.event-poster img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid rgba(246, 241, 232, 0.12);
  border-radius: 8px;
  background: #141418;
  box-shadow: var(--shadow);
}

.poster-hotspot {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

.poster-hotspot:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.poster-hotspot-label {
  position: absolute;
  top: clamp(0.28rem, 1.1vw, 0.48rem);
  right: clamp(0.28rem, 1.1vw, 0.48rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.24rem 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.72);
  color: #fff;
  font-size: clamp(0.62rem, 1.15vw, 0.78rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.poster-hotspot:hover .poster-hotspot-label,
.poster-hotspot:focus-visible .poster-hotspot-label {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 79, 109, 0.9);
  transform: translateY(-1px);
}

.poster-hotspot--portrait {
  display: none;
}

.poster-hotspot--landscape.poster-hotspot--tshirt {
  left: 59.1%;
  top: 21.8%;
  width: 31.4%;
  height: 23.8%;
}

.poster-hotspot--landscape.poster-hotspot--caffe {
  left: 59.1%;
  top: 47.3%;
  width: 31.4%;
  height: 24.2%;
}

@media (max-width: 640px), (orientation: portrait) {
  .poster-hotspot--landscape {
    display: none;
  }

  .poster-hotspot--portrait {
    display: block;
  }

  .poster-hotspot--portrait.poster-hotspot--tshirt {
    left: 22.8%;
    top: 58.1%;
    width: 54.2%;
    height: 14.4%;
  }

  .poster-hotspot--portrait.poster-hotspot--caffe {
    left: 22.8%;
    top: 73.1%;
    width: 54.2%;
    height: 14.5%;
  }
}

.contact-panel {
  display: grid;
  justify-items: center;
  width: min(100%, 46rem);
  margin-top: 0.95rem;
  text-align: center;
}

.landing-reveal--contacts {
  display: grid;
  justify-items: center;
  width: 100%;
}

.identity-line {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-family: var(--brand-font);
  font-size: 1rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.contact-grid {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  max-width: 42rem;
  margin: 0;
}

.contact-item {
  display: grid;
  gap: 0.32rem;
  justify-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(246, 241, 232, 0.045);
}

.contact-item h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 4.3vw, 1.08rem);
  line-height: 1.2;
  letter-spacing: 0;
}

.contact-item p {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.38;
}

.contact-item a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.2rem 0.25rem;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
  word-break: break-word;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-top: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.05);
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.instagram-link:hover {
  border-color: rgba(255, 79, 109, 0.75);
  background: rgba(255, 79, 109, 0.12);
  transform: translateY(-1px);
}

.instagram-link img {
  display: block;
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}

.audio-toggle {
  position: fixed;
  right: clamp(0.85rem, 2vw, 1.25rem);
  bottom: calc(clamp(0.85rem, 2vw, 1.25rem) + env(safe-area-inset-bottom));
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.72);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.35rem);
  backdrop-filter: blur(8px);
  -webkit-tap-highlight-color: transparent;
  transition:
    opacity 220ms ease,
    visibility 0s linear 220ms,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

body.is-entered .audio-toggle {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition-delay: 520ms, 0ms, 0ms, 0ms, 0ms;
}

body.is-entered .audio-toggle:hover {
  border-color: rgba(255, 79, 109, 0.75);
  background: rgba(255, 79, 109, 0.16);
  transform: translateY(-1px);
}

body.is-entered .audio-toggle:active {
  transform: scale(0.96);
}

.audio-toggle svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.audio-toggle__icon {
  display: block;
  line-height: 0;
}

.audio-toggle__icon--off {
  display: none;
}

.audio-toggle.is-muted .audio-toggle__icon--on {
  display: none;
}

.audio-toggle.is-muted .audio-toggle__icon--off {
  display: block;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(0.28rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 48rem) {
  .site-shell {
    padding: clamp(1rem, 2vw, 2rem);
  }

  .splash-content {
    width: min(100%, 40rem);
  }

  .splash-logo-frame {
    width: min(40rem, 58vw);
    max-height: min(48svh, 17.2rem);
  }

  .landing {
    width: min(92vw, 76rem);
  }

  .event-poster {
    width: min(92vw, 76rem);
  }

  .contact-panel {
    margin-top: 1.1rem;
  }

  .identity-line {
    font-size: 1.12rem;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .contact-item {
    align-content: start;
    padding: 1rem;
  }
}

@media (min-width: 80rem) {
  .landing {
    width: min(88vw, 80rem);
  }

  .event-poster {
    width: min(88vw, 80rem);
  }
}

@media (max-height: 42rem) {
  .site-shell {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .splash-logo-frame {
    opacity: 1;
    animation: none;
  }

  .instagram-link:hover {
    transform: none;
  }

  .landing-reveal,
  body.is-entered .landing-reveal,
  body.landing-reveal-complete .landing-reveal {
    opacity: 1;
    transform: none;
    transition-delay: 0ms !important;
  }

  .poster-hotspot-label {
    transition: none;
  }

  .audio-toggle,
  body.is-entered .audio-toggle {
    transition: none;
  }
}
