@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=Russo+One&display=swap');

:root {
  --bg: #08080a;
  --bg-2: #0f0f12;
  --bg-card: #141418;
  --bg-glass: rgba(20, 20, 24, 0.75);
  --border: rgba(255, 255, 255, 0.07);
  --text: #f5f2ed;
  --text-muted: #9c9791;
  --text-dim: #5e5a55;
  --red: #e11d48;
  --red-bright: #fb7185;
  --amber: #f59e0b;
  --amber-bright: #fbbf24;
  --glow-red: rgba(225, 29, 72, 0.4);
  --glow-amber: rgba(245, 158, 11, 0.35);
  --nav-bg: rgba(8, 8, 10, 0.88);
  --nav-mobile-bg: rgba(8, 8, 10, 0.98);
  --shadow-soft: rgba(0, 0, 0, 0.35);
  --shadow-float: 0 10px 32px rgba(0, 0, 0, 0.35);
  --font-display: 'Russo One', 'Bebas Neue', sans-serif;
  --font-title: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-h: 76px;
  --radius: 14px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --layout-max: 1600px;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #f3f0eb;
  --bg-2: #e8e4dd;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.88);
  --border: rgba(0, 0, 0, 0.09);
  --text: #1c1917;
  --text-muted: #57534e;
  --text-dim: #78716c;
  --glow-red: rgba(225, 29, 72, 0.2);
  --glow-amber: rgba(245, 158, 11, 0.25);
  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-mobile-bg: rgba(255, 255, 255, 0.98);
  --shadow-soft: rgba(0, 0, 0, 0.1);
  --shadow-float: 0 10px 32px rgba(0, 0, 0, 0.12);
  color-scheme: light;
}

[data-theme="light"] body::after { opacity: 0.12; }
[data-theme="light"] .nav.scrolled { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08); }
[data-theme="light"] .hero__overlay,
[data-theme="light"] .hero__bg {
  filter: brightness(1.05);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--amber-bright); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--red-bright); }

.container { max-width: var(--layout-max); margin: 0 auto; padding: 0 32px; }

/* grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
}

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav.scrolled { box-shadow: 0 8px 40px var(--shadow-soft); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  line-height: 1;
  flex-shrink: 0;
}
.nav__brand-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.nav__brand-text {
  display: flex;
  flex-direction: column;
}
.nav__brand-top {
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  color: var(--amber-bright);
}
.nav__brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.nav__links a {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 10px;
  border-radius: 8px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
  background: rgba(225, 29, 72, 0.12);
}

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

.nav__lang {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.25s var(--ease);
}
.nav__lang:hover {
  color: var(--text);
  border-color: var(--text-muted);
}

.nav__cta {
  display: none;
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--red), var(--amber));
  color: #fff !important;
  border-radius: 100px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 4px 16px var(--glow-red);
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--glow-amber);
  color: #fff !important;
}

@media (min-width: 1100px) {
  .nav__cta { display: inline-flex; }
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav__burger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: 0.25s var(--ease);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* full-width backdrop layer */
.hero__backdrop {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  pointer-events: none;
  contain: strict;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 8, 10, 0.82) 0%,
      rgba(8, 8, 10, 0.45) 35%,
      rgba(8, 8, 10, 0.55) 65%,
      rgba(8, 8, 10, 0.88) 100%
    ),
    linear-gradient(90deg,
      rgba(8, 8, 10, 0.75) 0%,
      rgba(8, 8, 10, 0.2) 45%,
      rgba(8, 8, 10, 0.5) 100%
    ),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(245, 158, 11, 0.12) 0%, transparent 60%),
    url('../images/hero-bg.jpg') center center / cover no-repeat;
}

/* ─── HERO SLIDER ─── */
.hero__slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  contain: strict;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
  filter: brightness(0.82) saturate(1.08);
  will-change: transform;
  backface-visibility: hidden;
}
.hero__slide.is-active img {
  animation: ken-burns 8s linear forwards;
}

@keyframes ken-burns {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.hero.is-paused .hero__slide.is-active img,
.hero.is-offscreen .hero__slide.is-active img {
  animation-play-state: paused;
}
.hero.is-paused .hero__wheel-spoke,
.hero.is-offscreen .hero__wheel-spoke {
  animation-play-state: paused;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(8, 8, 10, 0.78) 0%,
      rgba(8, 8, 10, 0.35) 38%,
      rgba(8, 8, 10, 0.5) 68%,
      rgba(8, 8, 10, 0.9) 100%
    ),
    linear-gradient(90deg,
      rgba(8, 8, 10, 0.72) 0%,
      rgba(8, 8, 10, 0.15) 42%,
      rgba(8, 8, 10, 0.55) 100%
    ),
    radial-gradient(ellipse 55% 45% at 78% 28%, rgba(245, 158, 11, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(225, 29, 72, 0.1) 0%, transparent 55%);
}

.hero__slider-ui {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(320px, 80vw);
  pointer-events: all;
}

.hero__slider-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}
.hero__slider-progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--amber-bright), var(--red));
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
  transition: width 0.1s linear;
}

.hero__slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero__slider-dot {
  width: 32px;
  height: 3px;
  padding: 0;
  border: none;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.hero__slider-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--red-bright), var(--amber-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  border-radius: 3px;
}
.hero__slider-dot.is-active {
  width: 48px;
  background: rgba(245, 158, 11, 0.25);
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.45);
}
.hero__slider-dot.is-active::after {
  transform: scaleX(1);
}
.hero__slider-dot:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.35);
}

.hero__stripes {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 80px,
    rgba(255,255,255,0.02) 80px,
    rgba(255,255,255,0.02) 81px
  );
}

/* ─── HERO FX: ash, embers, ambient glow ─── */
.hero__ambient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 65% 55% at 72% 55%, rgba(245, 158, 11, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 18% 75%, rgba(225, 29, 72, 0.08) 0%, transparent 60%);
  animation: hero-glow 9s ease-in-out infinite alternate;
}
@keyframes hero-glow {
  0%   { opacity: 0.55; }
  100% { opacity: 1; }
}

.hero__streak {
  position: absolute;
  top: 38%;
  left: -30%;
  width: 35%;
  height: 1px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(254, 243, 199, 0.5), rgba(245, 158, 11, 0.35), transparent);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.25);
  opacity: 0;
  animation: hero-streak 14s ease-in-out infinite;
}
@keyframes hero-streak {
  0%, 78%, 100% { opacity: 0; transform: translateX(0); }
  42%           { opacity: 0.7; transform: translateX(380%); }
}

.hero__ash,
.hero__embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.hero-ash {
  position: absolute;
  border-radius: 50%;
  background: rgba(185, 175, 165, 0.55);
  box-shadow: 0 0 3px rgba(180, 170, 160, 0.3);
  opacity: 0;
  animation: hero-ash-drift linear infinite;
  will-change: transform, opacity;
}
.hero-ash--warm {
  background: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 5px rgba(245, 158, 11, 0.35);
}
@keyframes hero-ash-drift {
  0%   { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  12%  { opacity: var(--ash-o, 0.4); }
  88%  { opacity: calc(var(--ash-o, 0.4) * 0.5); }
  100% { opacity: 0; transform: translate(var(--ash-dx, 80px), var(--ash-dy, -30px)) rotate(160deg); }
}

.hero-ember {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #fde68a 0%, #f59e0b 55%, transparent 100%);
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.7), 0 0 12px rgba(239, 68, 68, 0.3);
  opacity: 0;
  animation: hero-ember-rise ease-out infinite;
  will-change: transform, opacity;
}
@keyframes hero-ember-rise {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(1); }
  15%  { opacity: 0.9; }
  100% { opacity: 0; transform: translateY(-90px) translateX(var(--ember-drift, 0px)) scale(0.2); }
}

.hero {
  cursor: default;
  contain: layout style;
}

html.is-scrolling .hero-ash,
html.is-scrolling .hero-ember,
html.is-scrolling .hero__ambient,
html.is-scrolling .hero__streak,
.hero.is-offscreen .hero-ash,
.hero.is-offscreen .hero-ember,
.hero.is-offscreen .hero__ambient,
.hero.is-offscreen .hero__streak {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .hero-ash,
  .hero-ember,
  .hero__ambient,
  .hero__streak {
    animation: none !important;
    opacity: 0 !important;
  }
}

.hero__wheel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(50vw, 560px);
  height: min(50vw, 560px);
  border: 3px solid rgba(245, 158, 11, 0.12);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}
.hero__wheel::before,
.hero__wheel::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(225, 29, 72, 0.2);
}
.hero__wheel::before { inset: 18%; }
.hero__wheel::after { inset: 38%; }
.hero__wheel-spoke {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(245,158,11,0.08) 30deg, transparent 60deg);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 80px 0 100px;
  width: 100%;
}

.hero__main {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero__countdown-wrap {
  text-align: center;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  position: relative;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
}

.hero__edition {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--red-bright);
  margin-bottom: 12px;
  padding: 6px 16px;
  border-left: 3px solid var(--red);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 12vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero__title span {
  display: block;
  background: linear-gradient(90deg, #fff 0%, var(--amber-bright) 50%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
}

.hero__dates {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  letter-spacing: 0.08em;
  color: var(--amber-bright);
  margin-bottom: 20px;
}

.hero__place {
  font-size: 1.05rem;
  color: rgba(245, 242, 237, 0.88);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn--fire {
  background: linear-gradient(135deg, var(--red) 0%, var(--amber) 100%);
  color: #fff;
  box-shadow: 0 6px 28px var(--glow-red);
}
.btn--fire:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px var(--glow-amber);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber-bright);
  background: rgba(245, 158, 11, 0.06);
}

/* countdown */
.countdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.countdown--fire {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(4px, 1vw, 12px);
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

.countdown--fire .countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  min-width: auto;
}
.countdown--fire .countdown__unit::before { display: none; }

.countdown__sep {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1;
  background: linear-gradient(180deg, #fde68a 0%, #f59e0b 50%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(245, 158, 11, 0.7));
  animation: sep-blink 3s ease-in-out infinite;
  user-select: none;
  padding: 0;
  margin-bottom: 1.6rem;
}
@keyframes sep-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.countdown--fire .countdown__num {
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 7.5vw, 5.8rem);
  line-height: 1;
  display: inline-block;
  min-width: 1.15em;
  text-align: center;
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fef3c7 12%,
    #fde68a 25%,
    #fbbf24 42%,
    #f59e0b 58%,
    #ef4444 78%,
    #dc2626 92%,
    #991b1b 100%
  );
  background-size: 100% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7))
          drop-shadow(0 0 16px rgba(245, 158, 11, 0.55));
  animation: fire-rise 6s ease-in-out infinite alternate,
             fire-wobble 8s ease-in-out infinite;
  position: relative;
  will-change: transform;
}
.countdown--fire .countdown__unit:nth-of-type(1) .countdown__num { animation-delay: 0s, 0s; }
.countdown--fire .countdown__unit:nth-of-type(2) .countdown__num { animation-delay: 0.6s, 1s; }
.countdown--fire .countdown__unit:nth-of-type(3) .countdown__num { animation-delay: 1.2s, 2s; }
.countdown--fire .countdown__unit:nth-of-type(4) .countdown__num { animation-delay: 1.8s, 3s; }

@keyframes fire-rise {
  0% { background-position: 50% 0%; }
  100% { background-position: 50% 100%; }
}
@keyframes fire-wobble {
  0%, 100% { transform: translateY(0) scaleY(1); }
  50% { transform: translateY(-2px) scaleY(1.015); }
}

html.is-scrolling .countdown--fire .countdown__num,
html.is-scrolling .countdown__sep,
html.is-scrolling .hero__slide.is-active img,
html.is-scrolling .hero__wheel-spoke {
  animation-play-state: paused;
}

.countdown__unit {
  min-width: 76px;
  padding: 16px 12px;
  text-align: center;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.countdown__num {
  font-family: var(--font-title);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--amber-bright);
  display: block;
  transition: transform 0.2s var(--ease);
}
.countdown__num--tick {
  animation: num-tick 0.35s ease;
}
@keyframes num-tick {
  0% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.countdown--fire .countdown__lbl {
  font-size: clamp(0.58rem, 1.2vw, 0.72rem);
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(245, 158, 11, 0.85);
  letter-spacing: 0.16em;
  text-shadow: 0 0 10px rgba(239, 68, 68, 0.35);
  position: relative;
  z-index: 1;
}

.countdown__lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-top: 4px;
  display: block;
}

.countdown--fire + .countdown__note,
.hero__countdown-wrap .countdown__note {
  position: relative;
  z-index: 1;
  color: rgba(245, 158, 11, 0.65);
  text-shadow: 0 0 12px rgba(239, 68, 68, 0.3);
}

.countdown__note {
  text-align: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ─── MARQUEE ─── */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--bg-2);
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  gap: 48px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee__track span {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.marquee__track span strong { color: var(--red-bright); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTIONS ─── */
.section { padding: 96px 0; }
.section--dark { background: var(--bg-2); }

.section__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 16px;
}
.section__lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
}

.section__head {
  margin-bottom: 56px;
}
.section__head--center { text-align: center; }
.section__head--center .section__lead { margin: 0 auto; }

/* cards grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s var(--ease);
}
.card:hover {
  border-color: rgba(225, 29, 72, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.card__icon {
  margin-bottom: 14px;
}
.card__icon.icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(225, 29, 72, 0.08));
  border: 1px solid rgba(245, 158, 11, 0.22);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  color: var(--amber-bright);
  transition: all 0.3s var(--ease);
}
.card__icon.icon svg {
  width: 26px;
  height: 26px;
}
.card:hover .card__icon.icon {
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.18);
  transform: translateY(-2px);
  color: #fde68a;
}
.card__icon.icon--lg {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 16px;
}
.card__icon.icon--lg svg {
  width: 34px;
  height: 34px;
}
.card h3 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.card p, .card li {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.card ul {
  list-style: none;
  margin-top: 10px;
}
.card li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 14px;
  position: relative;
}
.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  margin-top: -2px;
  border-right: 1.5px solid var(--amber);
  border-bottom: 1.5px solid var(--amber);
  transform: rotate(-45deg);
}
.card li:last-child { border-bottom: none; }

/* highlight strip */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.strip__item {
  background: var(--bg-card);
  padding: 28px 20px;
  text-align: center;
}
.strip__val {
  font-family: var(--font-title);
  font-size: 2.2rem;
  color: var(--amber-bright);
  line-height: 1;
}
.strip__lbl {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* gallery */
.gallery-albums {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.gallery-album {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.gallery-album:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.gallery-album__cover {
  aspect-ratio: 16/10;
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-album__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.gallery-album:hover .gallery-album__cover img { transform: scale(1.05); }
.gallery-album__cover .icon {
  width: 56px;
  height: 56px;
  opacity: 0.4;
}
.gallery-album__body {
  padding: 18px 20px;
}
.gallery-album__body h3 {
  font-family: var(--font-title);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.gallery-album__year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-bright);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.gallery-album__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gallery-album__count {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.gallery-filter {
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.gallery-filter:hover {
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--text);
}
.gallery-filter.is-active {
  background: rgba(245, 158, 11, 0.12);
  border-color: var(--amber);
  color: var(--amber-bright);
}
.gallery-empty {
  text-align: center;
  color: var(--text-dim);
  padding: 48px 20px;
  grid-column: 1 / -1;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.gallery-tile {
  padding: 0;
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--bg-2);
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-tile:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.gallery-tile img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox img {
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}
.gallery-lightbox__close:hover { background: rgba(245, 158, 11, 0.3); }
.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-lightbox__nav:hover { background: rgba(245, 158, 11, 0.35); }
.gallery-lightbox__nav--prev { left: 20px; }
.gallery-lightbox__nav--next { right: 20px; }
.gallery-lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  text-align: center;
  max-width: 80vw;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* posters */
.posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.poster {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease);
}
.poster:hover { transform: scale(1.03); }
.poster img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

/* nav cards for structure */
.site-map {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.site-map__card {
  display: block;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.site-map__card::after {
  content: '→';
  position: absolute;
  right: 24px;
  top: 28px;
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: transform 0.3s var(--ease);
}
.site-map__card:hover {
  border-color: var(--amber);
  background: rgba(245, 158, 11, 0.04);
  color: var(--text);
}
.site-map__card:hover::after {
  transform: translateX(4px);
  color: var(--amber-bright);
}
.site-map__num {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: rgba(225, 29, 72, 0.25);
  line-height: 1;
  margin-bottom: 12px;
}
.site-map__card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.site-map__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* alert */
.alert {
  padding: 22px 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(225, 29, 72, 0.3);
  background: rgba(225, 29, 72, 0.08);
  margin-top: 32px;
}
.alert h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-bright);
  margin-bottom: 10px;
}
.alert p, .alert li {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.alert ul { list-style: none; margin-top: 8px; }
.alert li { padding: 4px 0; }

/* social */
.socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.25s var(--ease);
}
.socials a .icon--sm {
  color: var(--text-dim);
  transition: color 0.25s var(--ease);
}
.socials a:hover {
  border-color: var(--red);
  color: var(--red-bright);
  background: rgba(225, 29, 72, 0.08);
}
.socials a:hover .icon--sm {
  color: var(--amber-bright);
}

/* page hero */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 56px) 0 56px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}

.page-hero__backdrop {
  position: absolute;
  inset: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
  pointer-events: none;
}

.page-hero__bg-photo {
  position: absolute;
  inset: 0;
  background: url('/images/hero-bg.jpg') right center / cover no-repeat;
  opacity: 0.45;
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 35%, transparent 75%);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 35%, transparent 75%);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg-2) 0%, var(--bg-2) 50%, rgba(15, 15, 18, 0.75) 75%, rgba(15, 15, 18, 0.4) 100%),
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(245, 158, 11, 0.06) 0%, transparent 60%);
}

.page-hero__ash-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-transform: uppercase;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
}
.page-hero p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1.05rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

/* floating ash particles (CSS fallback layer) */
.page-hero__ash {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.ash-particle {
  position: absolute;
  top: -10px;
  border-radius: 50%;
  background: rgba(200, 190, 180, 0.6);
  box-shadow: 0 0 4px rgba(245, 158, 11, 0.3);
  animation: ashFall linear infinite;
  opacity: 0;
}
@keyframes ashFall {
  0%   { opacity: 0; transform: translateY(0) translateX(0) rotate(0deg); }
  10%  { opacity: 0.8; }
  90%  { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(110vh) translateX(var(--ash-drift, 30px)) rotate(360deg); }
}

/* placeholder */
.placeholder {
  text-align: center;
  padding: 80px 24px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-dim);
}
.placeholder__icon { margin-bottom: 16px; }
.placeholder__icon.icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(225, 29, 72, 0.06));
  border: 1px solid rgba(245, 158, 11, 0.2);
  margin: 0 auto 20px;
  color: var(--amber-bright);
  opacity: 1;
}
.placeholder__icon.icon svg {
  width: 32px;
  height: 32px;
}

/* icons */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber-bright);
}
.icon svg {
  width: 100%;
  height: 100%;
}
.icon--inline {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -2px;
}
.icon--inline svg {
  width: 18px;
  height: 18px;
}
.icon--sm {
  width: 18px;
  height: 18px;
}
.icon--sm svg {
  width: 18px;
  height: 18px;
}
h3 .icon--inline {
  display: inline-flex;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--amber-bright); font-size: 1.4rem; font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item__body { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.95rem; }

/* camp map */
.camp-map {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
.camp-map__zoom {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  cursor: zoom-in;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.camp-map__zoom:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}
.camp-map__zoom img {
  width: 100%;
  height: auto;
  display: block;
}
.camp-map__hint {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.camp-map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.camp-map-legend__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.camp-map-legend__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber-bright);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
  flex-shrink: 0;
}
.camp-map-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: zoom-out;
}
.camp-map-lightbox[hidden] { display: none !important; }
.camp-map-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}
.camp-map-lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.camp-map-lightbox__close:hover {
  border-color: var(--amber);
  color: var(--amber-bright);
}

/* merch grid */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.merch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.merch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.merch-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 180px;
  background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(225,29,72,0.05));
  border-bottom: 1px solid var(--border);
  color: var(--amber-bright);
  overflow: hidden;
}
.merch-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merch-card__img .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(245,158,11,0.2);
}
.merch-card__img .icon svg {
  width: 26px;
  height: 26px;
}
.merch-card__name {
  padding: 14px 16px 6px;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}
.merch-card__price {
  padding: 0 16px 16px;
  text-align: center;
  color: var(--amber-bright);
  font-weight: 700;
  font-family: var(--font-title);
}

/* merch modal */
.merch-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.merch-modal[hidden] { display: none !important; }
.merch-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.merch-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}
.merch-modal__close:hover { background: rgba(245, 158, 11, 0.4); }
.merch-modal__gallery {
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.merch-modal__main {
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 1;
}
.merch-modal__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.merch-modal__thumbs {
  display: flex;
  gap: 8px;
}
.merch-modal__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: none;
  opacity: 0.65;
  transition: opacity 0.2s, border-color 0.2s;
}
.merch-modal__thumb.is-active,
.merch-modal__thumb:hover {
  opacity: 1;
  border-color: var(--amber);
}
.merch-modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.merch-modal__noimg {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber-bright);
}
.merch-modal__noimg .icon { width: 64px; height: 64px; }
.merch-modal__body {
  padding: 28px 28px 32px;
}
.merch-modal__title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding-right: 36px;
}
.merch-modal__price {
  font-family: var(--font-title);
  font-size: 1.4rem;
  color: var(--amber-bright);
  margin-bottom: 16px;
}
.merch-modal__desc {
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.merch-order {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.merch-order__title {
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--amber-bright);
  margin-bottom: 16px;
}
.merch-order__field {
  margin-bottom: 14px;
}
.merch-order__field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 5px;
}
.merch-order__field input,
.merch-order__field textarea {
  width: 100%;
  padding: 11px 13px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.92rem;
}
.merch-order__field input:focus,
.merch-order__field textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.merch-order__submit {
  width: 100%;
  margin-top: 8px;
}
.merch-order__msg {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.merch-order__msg--ok {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}
.merch-order__msg--err {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

@media (max-width: 768px) {
  .merch-modal__dialog {
    grid-template-columns: 1fr;
  }
  .merch-modal__gallery {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}


/* footer */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 56px 0 28px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand-block p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin-top: 10px;
  line-height: 1.6;
}
.footer__logo-link {
  display: inline-block;
  margin-bottom: 12px;
}
.footer__logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  transition: opacity 0.25s var(--ease);
}
.footer__logo-link:hover .footer__logo { opacity: 1; }
.footer__logo-link:hover { color: inherit; }
.footer__socials { justify-content: flex-start; margin-top: 20px; }
.footer__socials a { padding: 8px 14px; font-size: 0.75rem; }
.footer__col h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text-muted);
}
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 8px; }
.footer__col a { color: var(--text-dim); font-size: 0.88rem; }
.footer__col a:hover { color: var(--amber-bright); }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--amber-bright);
}
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer__lang {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted) !important;
}
.footer__lang:hover { color: var(--amber-bright) !important; }
.footer__motto {
  font-family: var(--font-title);
  color: var(--amber);
  letter-spacing: 0.08em;
}
.footer__club { color: var(--red-bright); font-weight: 600; }

/* news */
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.news-item:first-child { padding-top: 0; }
.news-item:last-child { border-bottom: none; }
a.news-item { color: inherit; }
a.news-item:hover .news-item__title { color: var(--amber-bright); }
.news-item__date {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-weight: 600;
}
.news-item__title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.news-item__excerpt { font-size: 0.9rem; color: var(--text-muted); }

/* news slider (home) */
.news-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-slider__viewport {
  flex: 1;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.news-slider__viewport::-webkit-scrollbar { display: none; }
.news-slider__track {
  display: flex;
  gap: 20px;
  padding: 4px 2px 12px;
}
.news-card {
  flex: 0 0 min(340px, 85vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 200px;
}
.news-card:hover {
  border-color: rgba(245, 158, 11, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}
.news-card:hover .news-card__title { color: var(--amber-bright); }
.news-card__date {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 10px;
}
.news-card__title {
  font-family: var(--font-title);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  transition: color 0.2s;
  line-height: 1.3;
}
.news-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}
.news-card__more {
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--amber);
}
.news-slider__btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.news-slider__btn:hover {
  border-color: var(--amber);
  color: var(--amber-bright);
  background: rgba(245, 158, 11, 0.08);
}

/* fest intro */
.fest-intro {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.fest-intro__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}
.fest-intro__icon.icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  flex-shrink: 0;
}
.fest-intro__icon.icon svg { width: 20px; height: 20px; }

/* program */
.program-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.program-day__title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--amber-bright);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.program-day__list { display: flex; flex-direction: column; gap: 8px; }
.program-event {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  font-size: 0.88rem;
}
.program-event.card {
  margin-bottom: 8px;
  padding: 14px 16px;
}
.program-event__time {
  font-family: var(--font-title);
  color: var(--amber);
  min-width: 52px;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.program-event__body strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text);
}
.program-event__body span {
  color: var(--text-dim);
  font-size: 0.82rem;
}
.program-day__more {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 8px;
  padding-left: 12px;
}
.program-day--full { margin-bottom: 36px; }

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

/* responsive */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .grid-3, .grid-2, .strip, .posters, .footer__top { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; gap: 8px; }
  .nav__brand-text { display: none; }
  .nav__brand-logo { height: 44px; }
  .hero__wheel { display: none; }
  .hero__layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .hero__main { display: flex; flex-direction: column; align-items: center; }
  .hero__place { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__countdown-wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow-x: auto;
  }
  .countdown--fire {
    gap: clamp(2px, 0.5vw, 6px);
  }
  .countdown__sep {
    margin-bottom: 1.2rem;
  }
  .hero__slider-ui {
    bottom: 16px;
    width: min(260px, 70vw);
  }
  .float-dock {
    left: 14px;
    bottom: 14px;
  }
  .float-dock__btn {
    width: 48px;
    height: 48px;
  }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    background: var(--nav-mobile-bg);
    padding: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
  }
  .nav__links.open {
    transform: none;
    opacity: 1;
    pointer-events: all;
  }
  .nav__burger { display: flex; }
}

/* ─── FLOAT DOCK (theme + contacts) ─── */
.float-dock {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9000;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 12px;
  pointer-events: none;
}
.float-dock > * { pointer-events: auto; }

.float-dock__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-dock__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--amber);
  box-shadow: var(--shadow-float);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease), border-color 0.25s, color 0.25s, background 0.25s;
}
.float-dock__btn .icon {
  width: 22px;
  height: 22px;
}
.float-dock__btn:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.45);
  color: var(--amber-bright);
}
.float-dock__btn.is-active {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.5);
  color: var(--amber-bright);
}

.float-dock__panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 220px;
  padding: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-float);
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s var(--ease), opacity 0.32s var(--ease), visibility 0.32s;
  transform-origin: left bottom;
}
.float-dock__panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.float-dock__panel-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 4px 10px 8px;
}

.float-dock__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.float-dock__link:hover {
  background: rgba(245, 158, 11, 0.1);
  color: var(--amber-bright);
}
.float-dock__link .icon {
  width: 20px;
  height: 20px;
  color: var(--amber);
  flex-shrink: 0;
}
.float-dock__link small {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  margin-top: 1px;
}

.float-dock__socials {
  display: flex;
  gap: 8px;
  padding: 6px 8px 4px;
  flex-wrap: wrap;
}
.float-dock__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
}
.float-dock__social .icon {
  width: 18px;
  height: 18px;
}
.float-dock__social:hover {
  border-color: var(--amber);
  color: var(--amber-bright);
  background: rgba(245, 158, 11, 0.1);
  transform: translateY(-2px);
}
