/* Hardh Fest 2026 — EXIT-inspired layout, original fonts */

:root {
  --purple: #351638;
  --purple-dark: #2a102d;
  --purple-nav: #351638;
  --gold: #ED8D21;
  --gold-dark: #c97618;
  --red: #E82835;
  --red-dark: #c02030;
  --dark: #351638;
  --dark-2: #2a102d;
  --white: #ffffff;
  --gray: #5b5b5b;
  --gray-light: #f0edf3;

  --font-display: 'cuyabra', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-alt: 'Roboto', sans-serif;

  --grape-deep: #2a102d;
  --grape-rich: #351638;
  --grape-wine: #45204a;
  --grape-burgundy: #351638;
  --grape-burgundy-light: #E82835;
  --grape-mist: rgba(237, 141, 33, 0.18);
  --grape-glow: rgba(232, 40, 53, 0.22);
  --grape-leaf: rgba(237, 141, 33, 0.35);

  --fest-bg: var(--dark);
  --fest-bg-card: var(--dark-2);
  --fest-accent: var(--gold);
  --fest-accent-dark: var(--gold-dark);
  --fest-detail: var(--red);
  --lejla: #351638;
  --lejla-light: #c9a8d8;

  --transition: 0.3s ease;
  --shadow-gold: 0 8px 32px rgba(237, 141, 33, 0.22);
  --shadow-fest: 0 8px 32px rgba(237, 141, 33, 0.22);
  --radius-md: 12px;
}

::selection {
  background: rgba(237, 141, 33, 0.35);
  color: var(--white);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  background-image:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(232, 40, 53, 0.1) 0%, transparent 50%),
    repeating-radial-gradient(circle at 50% 0%, transparent 0, transparent 48px, rgba(0, 0, 0, 0.04) 48px, rgba(0, 0, 0, 0.04) 49px);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.cuyabra { font-family: var(--font-display); }

.container { width: min(1200px, 92vw); margin: 0 auto; }
.container--wide { width: min(1400px, 96vw); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-alt);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn--gold {
  background: var(--gold);
  color: var(--purple-dark);
}

.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn--sm { padding: 10px 24px; font-size: 0.75rem; }

.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.btn--outline:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline-dark {
  background: transparent;
  border-color: var(--purple);
  color: var(--purple);
}

.btn--full { width: 100%; }

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   TOP BAR — scrolling festival info
   ============================================ */
.topbar {
  overflow: hidden;
  background: var(--red);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 46px;
  display: flex;
  align-items: center;
}

.topbar__marquee {
  overflow: hidden;
  width: 100%;
}

.topbar__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: topbar-marquee 42s linear infinite;
}

.topbar:hover .topbar__track {
  animation-play-state: paused;
}

.topbar__set {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 40px;
  flex-shrink: 0;
}

.topbar__set[aria-hidden="true"] {
  pointer-events: none;
}

@keyframes topbar-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.topbar__brand:hover { opacity: 0.85; }

.topbar__wordmark {
  display: block;
  height: 34px;
  width: auto;
  max-width: min(190px, 42vw);
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 3px;
}

.topbar__logo,
.nav__logo-img,
.hero__symbol,
.testimonial-card__logo {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}

.topbar__logo {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.topbar__title {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--white);
}

.topbar__sep {
  color: var(--lejla);
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  line-height: 1;
  user-select: none;
  opacity: 0.85;
}

.topbar__dates {
  font-family: var(--font-alt);
  font-size: clamp(0.72rem, 1.55vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lejla);
  white-space: nowrap;
}

.topbar__slogan {
  font-size: clamp(0.74rem, 1.6vw, 0.86rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--lejla);
  animation: topbar-shimmer 5s ease-in-out infinite;
}

@keyframes topbar-shimmer {
  0%, 100% { opacity: 0.88; }
  50% { opacity: 1; }
}

.topbar__artist {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--gold);
  transition: opacity var(--transition);
}

.topbar__artist:hover {
  opacity: 0.9;
  color: var(--white);
}

.topbar__poster {
  display: block;
  height: 38px;
  width: auto;
  border-radius: 4px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(237, 141, 33, 0.45);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.topbar__artist-name {
  font-family: var(--font-alt);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .topbar {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .topbar__track {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .topbar__set[aria-hidden="true"] {
    display: none;
  }

  .topbar__slogan {
    animation: none;
    opacity: 1;
  }

  .sponsors-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 12px;
  }

  .sponsors-marquee__set[aria-hidden="true"] {
    display: none;
  }

  .sponsors-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .shop-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 16px;
  }

  .shop-marquee__set[aria-hidden="true"] {
    display: none;
  }

  .shop-marquee {
    width: 100%;
    margin-left: 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--purple-nav);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.nav.scrolled {
  background: var(--purple-dark);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
  border-bottom-color: var(--red);
}

.nav__inner {
  width: min(1200px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__wordmark {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
  background: transparent;
}

.nav__logo-img {
  width: 56px;
  height: 56px;
}

.nav__logo-text {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--white);
}

.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav__links a {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--gold);
  opacity: 1;
}

.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}

.nav__badge {
  background: var(--gold);
  color: var(--purple-dark);
  font-size: 0.55rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav__burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: 8px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(237, 141, 33, 0.25);
}

.lang-switch__btn {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition);
  line-height: 1;
}

.lang-switch__btn:hover {
  color: var(--gold);
}

.lang-switch__btn.is-active {
  color: var(--purple-dark);
  background: var(--gold);
}

.lang-switch__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  user-select: none;
}

.lang-switch--menu {
  display: none;
}

.lang-switch--nav {
  flex-shrink: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(237, 141, 33, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: var(--transition);
  flex-shrink: 0;
}

.social-links__btn svg {
  display: block;
  flex-shrink: 0;
}

.social-links__btn:hover {
  color: var(--purple-dark);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.social-links--nav {
  gap: 16px;
}

.social-links--menu {
  display: none;
  margin-top: 20px;
  justify-content: center;
  gap: 18px;
}

.hero__social {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.social-links--hero {
  justify-content: center;
  gap: 18px;
}

.social-links__label {
  text-align: center;
  font-family: var(--font-alt);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.social-links--footer {
  margin-top: 20px;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__col .social-links__btn,
.social-links--footer .social-links__btn {
  display: inline-flex;
  width: 56px;
  height: 56px;
  margin-bottom: 0;
  opacity: 1;
  border-width: 2px;
}

.social-links--footer .social-links__btn svg {
  width: 26px;
  height: 26px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  border: 1px solid rgba(237, 141, 33, 0.22);
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.88;
  margin-bottom: 0;
  transition: var(--transition);
}

.footer-social__link:hover {
  opacity: 1;
  color: var(--gold);
  border-color: rgba(237, 141, 33, 0.55);
  background: rgba(237, 141, 33, 0.08);
  transform: translateX(4px);
}

.footer-social__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(237, 141, 33, 0.14);
  color: var(--gold);
  flex-shrink: 0;
}

.contact-social {
  margin-top: 28px;
}

.contact-social__label {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}

.social-links--contact {
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.social-links--contact .social-links__btn {
  width: 100%;
  height: auto;
  border-radius: 10px;
  padding: 12px 16px;
  justify-content: flex-start;
  font-family: var(--font-alt);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================
   HERO (EXIT framed center box)
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  min-height: calc(100dvh - 90px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  contain: layout style;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-origin: center center;
  transform: translate3d(0, 0, 0);
  animation: exitHeroIn 0.88s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  backface-visibility: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: translate3d(0, 0, 0) scale(1.02);
  backface-visibility: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center 35%, transparent 0%, rgba(53, 22, 56, 0.35) 55%, rgba(53, 22, 56, 0.75) 100%),
    linear-gradient(180deg, rgba(53, 22, 56, 0.15) 0%, rgba(42, 16, 45, 0.55) 100%);
}

@keyframes exitHeroIn {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.88);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero__geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.6s ease 0.35s both;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(100vh - 90px);
  min-height: calc(100dvh - 90px);
}

.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;
}

.hero__poster {
  margin: 0 auto 28px;
  max-width: min(340px, 78vw);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55), 0 0 0 2px rgba(237, 141, 33, 0.25);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero__poster:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(237, 141, 33, 0.45);
}

.hero__poster img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}

.hero__frame {
  display: inline-block;
  background: rgba(0,0,0,0.85);
  border: 2px solid rgba(255,255,255,0.25);
  padding: 36px 48px;
  margin-bottom: 28px;
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
  opacity: 0;
  animation: fadeIn 0.65s ease 0.18s both;
}

.hero__frame-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.hero__symbol {
  width: 72px;
  height: 72px;
}

.hero__year {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero__corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.6;
}

.hero__corner--tl { top: 40px; left: 40px; border-width: 2px 0 0 2px; }
.hero__corner--tr { top: 40px; right: 40px; border-width: 2px 2px 0 0; }
.hero__corner--bl { bottom: 40px; left: 40px; border-width: 0 0 2px 2px; }
.hero__corner--br { bottom: 40px; right: 40px; border-width: 0 2px 2px 0; }

.hero__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  border: 1px solid rgba(237,141,33,0.2);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(237,141,33,0.08);
}

.hero__title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.02em;
}

.hero__motto {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 8px;
  letter-spacing: 0.15em;
}

.hero__meta {
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.65s ease 0.32s both;
}

.hero__content > .btn {
  opacity: 0;
  animation: fadeIn 0.65s ease 0.46s both;
}

.hero__dot { color: var(--gold); }

@media (prefers-reduced-motion: reduce) {
  .hero__backdrop,
  .hero__geo,
  .hero__frame,
  .hero__meta,
  .hero__content > .btn {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero__bg-img {
    transform: none;
  }
}

/* ============================================
   COUNTDOWN STRIP
   ============================================ */
.countdown-strip {
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-top: 1px solid rgba(42, 16, 45, 0.18);
  border-bottom: 3px solid var(--purple-dark);
  padding: 32px 0 28px;
}

.countdown-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.countdown-strip__heading {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-dark);
  opacity: 0.92;
}

.countdown-strip__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

.countdown-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 clamp(18px, 4vw, 36px);
  border-right: 1px solid rgba(42, 16, 45, 0.22);
}

.countdown-strip__item:last-child {
  border-right: none;
}

.countdown-ring {
  --ring-size: clamp(72px, 14vw, 96px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--ring-size);
  height: var(--ring-size);
  border-radius: 50%;
  border: 2.5px solid var(--purple-dark);
  background: transparent;
}

.countdown-ring__num {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.6vw, 1.6rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--purple-dark);
}

.countdown-strip__label {
  font-family: var(--font-alt);
  font-size: clamp(0.58rem, 1.4vw, 0.65rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-dark);
  opacity: 0.82;
  line-height: 1.2;
  text-align: center;
}

/* ============================================
   HEADLINER POSTER
   ============================================ */
.headliner {
  background: linear-gradient(180deg, var(--purple-nav) 0%, var(--dark) 100%);
  padding: 80px 0;
  border-bottom: 1px solid rgba(237,141,33,0.15);
}

.headliner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.headliner__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--purple-dark);
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.headliner__name {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.headliner__date {
  font-family: var(--font-alt);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.headliner__desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 480px;
}

.headliner__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.headliner__meta span {
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border: 1px solid rgba(237,141,33,0.35);
  color: var(--gold);
}

.headliner__poster {
  margin: 0;
  max-width: 420px;
  margin-left: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(237, 141, 33, 0.15);
  transition: var(--transition);
  cursor: pointer;
}

.headliner__poster:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 70px rgba(53,22,56,0.4);
}

.headliner__poster--wide img {
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; }
.section--dark { background: var(--dark); }

.section--fest {
  background-color: var(--fest-bg);
  background-image:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(232, 40, 53, 0.14) 0%, transparent 50%),
    repeating-radial-gradient(circle at 50% 0%, transparent 0, transparent 48px, rgba(0, 0, 0, 0.05) 48px, rgba(0, 0, 0, 0.05) 49px);
}

.section--fest .section__title-exit { color: var(--fest-accent); }

.section--fest .section__title-exit::after {
  background: linear-gradient(90deg, var(--fest-detail), transparent);
}

.section--fest .carousel,
.section--fest .news-carousel {
  scrollbar-color: var(--fest-accent) var(--fest-bg-card);
}

.section--fest .promo-card {
  background: var(--fest-bg-card);
  border-color: rgba(237, 141, 33, 0.18);
}

.section--fest .promo-card:hover {
  border-color: rgba(237, 141, 33, 0.55);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(237, 141, 33, 0.15);
}

.section--fest .promo-card__img::after {
  background: linear-gradient(to top, rgba(53, 22, 56, 0.65) 0%, transparent 55%);
}

.section--fest .promo-card__img--placeholder {
  background: rgba(232, 40, 53, 0.12);
}

.section--fest .promo-card__img--placeholder > span:first-child {
  color: var(--fest-accent);
  opacity: 0.35;
}

.section--fest .promo-card__badge {
  background: var(--fest-detail);
  color: var(--white);
}

.section--fest .promo-card__body {
  background: var(--fest-accent);
  color: var(--fest-bg);
}

.section--fest .promo-card__body h3 { color: var(--fest-bg); }

.section--fest .promo-card__body p {
  color: var(--fest-bg);
  opacity: 0.88;
}

.section--fest .btn--gold {
  background: var(--fest-bg);
  color: var(--fest-accent);
}

.section--fest .btn--gold:hover {
  background: var(--fest-detail);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(232, 40, 53, 0.35);
}

.section--fest .btn--outline {
  border-color: rgba(237, 141, 33, 0.5);
  color: var(--fest-accent);
}

.section--fest .btn--outline:hover {
  border-color: var(--fest-accent);
  color: var(--fest-accent);
  background: rgba(237, 141, 33, 0.08);
}

.section--fest .btn--outline-dark {
  border-color: var(--fest-bg);
  color: var(--fest-bg);
}

.section--fest .btn--outline-dark:hover {
  background: var(--fest-bg);
  color: var(--fest-accent);
}

.section--fest .news-exit-card__img {
  background: var(--fest-bg-card);
  border: 1px solid rgba(237, 141, 33, 0.15);
  border-radius: var(--radius-md);
}

.section--fest .news-exit-card__body h3 a:hover { color: var(--fest-accent); }

.section--fest .news-exit-card__body time {
  color: var(--fest-detail);
  opacity: 1;
  font-weight: 500;
}

.section--purple { background: var(--purple); }
.section--gold { background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%); }
.section--light { background: var(--gray-light); color: var(--dark); }

.section__title-exit {
  font-family: var(--font-alt);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 14px;
  color: var(--gold);
}

.section__title-exit::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
}

.section__title-exit--dark { color: var(--purple-dark); }

/* ============================================
   CAROUSEL / PROMO CARDS (EXIT Ulaznice)
   ============================================ */
.carousel {
  overflow-x: auto;
  padding: 0 4vw 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark-2);
}

.carousel__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-right: 4vw;
}

.promo-card {
  width: 280px;
  flex-shrink: 0;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 141, 33, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(237, 141, 33, 0.12);
}

.promo-card__img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.promo-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(53, 22, 56, 0.75) 0%, transparent 55%);
  pointer-events: none;
}

.promo-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.promo-card:hover .promo-card__img img { transform: scale(1.05); }

.promo-card__poster-btn {
  cursor: pointer;
  border: none;
  font: inherit;
}

.promo-card__img--placeholder {
  background: rgba(53,22,56,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-card__img--placeholder > span:first-child {
  font-size: 4rem;
  opacity: 0.2;
  color: var(--gold);
}

.promo-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-alt);
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
}

.promo-card__badge--free { background: var(--gold); color: var(--purple-dark); }

.promo-card__badge--artist {
  background: var(--purple-light);
  color: var(--white);
}

.promo-card__body {
  padding: 20px;
  text-align: center;
}

.promo-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.promo-card__body p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 16px;
}

/* ============================================
   NEWS (EXIT Vesti)
   ============================================ */
.news-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 0 4vw 16px;
  scrollbar-width: thin;
}

.news-exit-card {
  width: 320px;
  flex-shrink: 0;
}

.news-exit-card__img {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 16px;
  background: var(--dark-2);
  cursor: pointer;
}

.news-exit-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.news-exit-card:hover .news-exit-card__img img { transform: scale(1.05); }

.news-exit-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--purple-dark);
  font-family: var(--font-alt);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 4px 10px;
  letter-spacing: 0.08em;
}

.news-exit-card__body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.news-exit-card__body h3 a:hover { color: var(--gold); }

.news-exit-card__body time {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 500;
}

.headliner__poster img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   TESTIMONIALS CAROUSEL
   ============================================ */
.testimonials-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}

.testimonials-carousel__viewport {
  flex: 1;
  overflow: hidden;
}

.testimonials-carousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 36px 32px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(237,141,33,0.25);
  text-align: center;
  position: relative;
}

.testimonial-card__logo {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  object-fit: contain;
  opacity: 0.95;
}

.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-card__author strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.testimonial-card__author span {
  font-size: 0.85rem;
  opacity: 0.65;
}

.testimonials-carousel__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(0,0,0,0.3);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.testimonials-carousel__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(237,141,33,0.1);
}

.testimonials-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.testimonials-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.testimonials-carousel__dot.is-active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ============================================
   SPONSORS
   ============================================ */
.sponsors-section {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(237, 141, 33, 0.15);
}

.sponsors-section__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(237, 141, 33, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 85% 75%, rgba(53, 22, 56, 0.35) 0%, transparent 45%);
}

.sponsors-section .container {
  position: relative;
  z-index: 1;
}

.sponsors-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.sponsors-header__eyebrow {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.sponsors-header .section__title-exit {
  margin-bottom: 12px;
  color: var(--white);
}

.sponsors-header__desc {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
}

.sponsors-showcase__label {
  font-family: var(--font-alt);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(237, 141, 33, 0.85);
  margin-bottom: 18px;
}

.sponsors-showcase {
  margin-bottom: 44px;
}

.sponsors-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.sponsor-card {
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(237, 141, 33, 0.18);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.sponsor-card:hover {
  border-color: rgba(237, 141, 33, 0.65);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.sponsor-card--featured .sponsor-card__pad {
  min-height: 92px;
  padding: 18px 16px;
}

.sponsor-card--featured img {
  max-height: 68px;
}

.sponsor-card__pad {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 10px;
  background: linear-gradient(180deg, #fffdf8 0%, #f5eedf 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.sponsor-card__pad--dark {
  background: linear-gradient(160deg, var(--purple) 0%, var(--purple-dark) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sponsor-card img {
  display: block;
  max-height: 48px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.sponsor-card:hover img {
  transform: scale(1.05);
}

.sponsors-marquee-wrap {
  margin-top: 8px;
}

.sponsors-marquee {
  overflow: hidden;
  padding: 6px 0 4px;
}

.sponsors-marquee__track {
  display: flex;
  width: max-content;
  animation: sponsors-marquee 38s linear infinite;
}

.sponsors-marquee:hover .sponsors-marquee__track {
  animation-play-state: paused;
}

.sponsors-marquee__set {
  display: flex;
  align-items: stretch;
  gap: 16px;
  padding-right: 16px;
  flex-shrink: 0;
}

.sponsors-marquee__set[aria-hidden="true"] {
  pointer-events: none;
}

.sponsors-marquee .sponsor-card {
  width: 168px;
  flex-shrink: 0;
}

@keyframes sponsors-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   BOARD
   ============================================ */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.board-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.board-card:hover { border-color: var(--gold); }

.board-card__photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
}

.board-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.board-card p {
  font-family: var(--font-alt);
  font-size: 0.8rem;
  color: var(--gold);
}

/* ============================================
   HARDH SHOP
   ============================================ */
.shop-section {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.shop-header {
  text-align: center;
  margin-bottom: 40px;
}

.shop-slogan {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--purple-dark);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.shop-marquee {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 8px 0 28px;
}

.shop-marquee__track {
  display: flex;
  width: max-content;
  animation: shop-marquee 65s linear infinite;
}

.shop-marquee__set {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  flex-shrink: 0;
}

.shop-marquee__set[aria-hidden="true"] {
  pointer-events: none;
}

.shop-marquee__chip {
  flex-shrink: 0;
  font-family: var(--font-alt);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-dark);
  white-space: nowrap;
  padding: 10px 18px;
  border: 2px solid rgba(42, 16, 45, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.shop-marquee__chip--brand {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.08em;
  padding: 12px 24px;
  background: var(--purple-dark);
  color: var(--gold);
  border-color: var(--purple-dark);
}

@keyframes shop-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.shop-grid__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  margin: 0;
  width: 240px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(53, 22, 56, 0.25);
}

.shop-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.shop-grid__item:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .shop-marquee__track {
    animation-duration: 80s;
  }

  .shop-grid__item {
    width: 200px;
    height: 250px;
  }

  .shop-marquee__chip {
    font-size: 0.62rem;
    padding: 8px 14px;
  }

  .shop-marquee__chip--brand {
    font-size: 0.9rem;
    padding: 10px 18px;
  }
}

@media (max-width: 520px) {
  .shop-grid__item {
    width: 170px;
    height: 220px;
  }

  .nav__wordmark {
    height: 36px;
    max-width: min(160px, 48vw);
  }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}

.gallery__item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--dark-2);
  border-radius: 8px;
  transition: box-shadow var(--transition);
}

.gallery__item:hover {
  box-shadow: 0 0 0 2px rgba(237, 141, 33, 0.5), var(--shadow-gold);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item--portrait {
  grid-row: span 3;
}

.gallery__item--portrait img {
  display: block;
  object-fit: contain;
  object-position: center;
}

.gallery__item:not(.gallery__item--portrait):hover img { transform: scale(1.08); }

.gallery__item--large { grid-row: span 2; grid-column: span 2; }
.gallery__item--wide { grid-column: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
  animation: fadeIn 0.3s ease;
}

.lightbox img {
  max-width: min(90vw, 1200px);
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  animation: lightboxIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ============================================
   NEWSLETTER (EXIT)
   ============================================ */
.newsletter {
  background: var(--dark-2);
  border-top: 1px solid rgba(237,141,33,0.15);
  border-bottom: 1px solid rgba(237,141,33,0.15);
  padding: 80px 0;
}

.newsletter__inner {
  text-align: center;
  max-width: 600px;
}

.newsletter__inner p {
  opacity: 0.7;
  margin: 12px 0 28px;
  font-size: 0.95rem;
}

.newsletter__form {
  display: flex;
  gap: 12px;
}

.newsletter__form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter__form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter__form input:focus { outline: none; border-color: var(--gold); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  font-family: var(--font-alt);
  font-size: 1.05rem;
  font-weight: 500;
  transition: var(--transition);
}

.contact-link:hover { color: var(--gold); }

.contact-form {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-family: var(--font-alt);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  opacity: 0.7;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(237, 141, 33, 0.15);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ============================================
   FOOTER (EXIT columns)
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__col h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer__col h5 {
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: var(--gold);
}

.footer__col p {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.6;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  opacity: 0.7;
  margin-bottom: 8px;
  transition: var(--transition);
}

.footer__col a:hover { opacity: 1; color: var(--gold); }

.footer__col .footer-social__link {
  display: inline-flex;
  margin-bottom: 0;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .topbar__track { animation-duration: 54s; }

  .topbar__set {
    gap: 8px;
    padding: 8px 28px;
  }

  .topbar__dates { letter-spacing: 0.06em; }
  .topbar__slogan { letter-spacing: 0.08em; }

  .headliner__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .headliner__desc { margin-left: auto; margin-right: auto; }
  .headliner__meta { justify-content: center; }
  .headliner__poster { margin: 0 auto; max-width: 320px; }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(53, 22, 56, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }

  .nav__links.open { transform: translateY(0); opacity: 1; }
  .nav__links a { font-size: 1.3rem; }
  .nav__burger { display: flex; z-index: 1001; }

  .social-links--nav { display: none; }

  .social-links--menu {
    display: flex;
    width: 100%;
    gap: 20px;
  }

  .social-links--footer {
    justify-content: center;
  }

  .footer-social__link {
    margin-left: auto;
    margin-right: auto;
  }

  .social-links--contact .social-links__btn {
    justify-content: center;
  }

  .hero__frame { padding: 24px 32px; }
  .hero__corner { width: 36px; height: 36px; }
  .hero__corner--tl, .hero__corner--tr { top: 20px; }
  .hero__corner--bl, .hero__corner--br { bottom: 20px; }
  .hero__corner--tl, .hero__corner--bl { left: 20px; }
  .hero__corner--tr, .hero__corner--br { right: 20px; }

  .countdown-strip { padding: 24px 0 20px; }

  .countdown-strip__item { padding: 0 14px; gap: 8px; }

  .countdown-ring {
    --ring-size: clamp(60px, 16vw, 78px);
  }

  .countdown-ring__num {
    font-size: clamp(0.95rem, 3.2vw, 1.2rem);
  }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .newsletter__form { flex-direction: column; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery__item--large,
  .gallery__item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery__item--portrait {
    grid-row: span 3;
  }

  .testimonials-carousel__btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .sponsors-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .sponsors-marquee .sponsor-card {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .topbar__track { animation-duration: 60s; }

  .topbar__set {
    gap: 6px;
    padding: 7px 20px;
  }

  .countdown-strip__item { padding: 0 8px; gap: 6px; }

  .countdown-ring {
    --ring-size: clamp(52px, 18vw, 64px);
  }

  .countdown-ring__num {
    font-size: clamp(0.85rem, 3.8vw, 1rem);
  }

  .countdown-strip__label {
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .countdown-strip__heading {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }
}
