/* =====================================================================
   GLOBAL CHAMPIONS PRAGUE PLAY-OFFS 2027 — Marketing microsite
   Luxusní, minimalistický design · tmavě modrá + zlatá
   ===================================================================== */

/* ---------- Fonts — Google Outfit (geometrický bezpatkový) ---------- */
:root {
  --font-title: "Outfit", "Helvetica Neue", Arial, sans-serif;
  --font-text:  "Outfit", "Helvetica Neue", Arial, sans-serif;

  --navy:        #031f3a;
  --navy-deep:   #021526;
  --navy-soft:   #052a4d;
  --gold:        #ecd6a3;
  --gold-bright: #f6e8c6;
  --gold-deep:   #c9a96a;
  --white:       #ffffff;
  --muted:       rgba(255, 255, 255, 0.62);
  --faint:       rgba(255, 255, 255, 0.12);
  --hairline:    rgba(236, 214, 163, 0.22);

  --container: 100%;
  --pad: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-text);
  background: var(--navy);
  color: var(--white);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}
body.no-scroll { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color 0.4s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--navy-deep); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(80px, 12vh, 170px); position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--font-title); font-weight: 500; line-height: 1.04; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.1rem, 5vw, 4.2rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p { color: var(--muted); }

.eyebrow {
  font-family: var(--font-text);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head { margin-bottom: clamp(40px, 6vw, 70px); max-width: 820px; }
.section-head h2 { margin-top: 22px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow { gap: 0; }
.section-sub { margin-top: 20px; max-width: 560px; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --bg: transparent;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6em;
  font-family: var(--font-text);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 1.05em 2.2em;
  border: 1px solid var(--gold);
  color: var(--navy-deep);
  background: var(--gold);
  border-radius: 100px;
  overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease), transform 0.4s var(--ease);
  white-space: nowrap;
  isolation: isolate;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold-bright);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn--gold:hover { color: var(--navy-deep); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--faint); }
.btn--ghost::before { background: var(--gold); }
.btn--ghost:hover { color: var(--navy-deep); border-color: var(--gold); }
.btn--lg { padding: 1.25em 2.8em; font-size: 0.8rem; }
.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 22px;
  transition: background 0.6s var(--ease), padding 0.5s var(--ease), border-color 0.6s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(3, 21, 38, 0.78);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  padding-block: 12px;
  border-bottom: 1px solid var(--faint);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav__left { display: flex; align-items: center; gap: clamp(18px, 2vw, 36px); flex: 1; justify-content: flex-start; }
.nav__links { list-style: none; display: flex; gap: clamp(18px, 2vw, 36px); align-items: center; }
.nav__links a {
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
  position: relative; padding-block: 4px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__logo {
  position: absolute; left: 50%; top: 6px; transform: translateX(-50%);
  flex-shrink: 0; z-index: 2; line-height: 0;
  transition: top 0.5s var(--ease), transform 0.5s var(--ease);
}
.nav__logo-img { height: auto; transition: width 0.45s var(--ease); filter: drop-shadow(0 8px 22px rgba(0,0,0,0.45)); }
.nav__logo-img--square { width: 215px; max-width: 46vw; }
.nav__logo-img--horizontal { display: none; width: 190px; }
.nav__logo:hover { transform: translateX(-50%) scale(1.04); }
/* scrolled → swap to the horizontal logo, centered in the slim bar */
.header.scrolled .nav__logo { top: 50%; transform: translate(-50%, -50%); }
.header.scrolled .nav__logo:hover { transform: translate(-50%, -50%) scale(1.04); }
.header.scrolled .nav__logo-img--square { display: none; }
.header.scrolled .nav__logo-img--horizontal { display: block; }

.nav__right { display: flex; align-items: center; gap: 18px; flex: 1; justify-content: flex-end; }
.lang { display: flex; align-items: center; gap: 6px; font-size: 0.74rem; letter-spacing: 0.12em; }
.lang__btn { color: var(--muted); transition: color 0.3s; padding: 4px; background: none; }
.lang__btn.is-active { color: var(--gold); }
.lang__btn:hover { color: var(--white); }
.lang__sep { color: var(--faint); }

/* burger — hidden on desktop, shown on the left on mobile */
.nav__burger { display: none; width: 30px; height: 16px; position: relative; flex-shrink: 0; }
.nav__burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--gold); transition: 0.4s var(--ease); }
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { bottom: 0; }

/* ---------- Mobile menu (full-screen overlay) ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: linear-gradient(165deg, var(--navy-soft) 0%, var(--navy-deep) 72%);
  display: flex; flex-direction: column;
  padding: 18px var(--pad) calc(30px + env(safe-area-inset-bottom));
  opacity: 0; visibility: hidden; transition: opacity 0.55s var(--ease), visibility 0.55s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; height: 56px; flex-shrink: 0; }
.mobile-menu__logo { width: 132px; height: auto; }
.mobile-menu__close { width: 46px; height: 46px; position: relative; border: 1px solid var(--faint); border-radius: 50%; transition: border-color 0.4s var(--ease), transform 0.5s var(--ease); }
.mobile-menu__close span { position: absolute; left: 50%; top: 50%; width: 17px; height: 1.5px; background: var(--gold); }
.mobile-menu__close span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.mobile-menu__close span:nth-child(2) { transform: translate(-50%, -50%) rotate(-45deg); }
.mobile-menu__close:hover { border-color: var(--gold); transform: rotate(90deg); }
.mobile-menu__nav { flex: 1; display: flex; align-items: center; }
.mobile-menu__nav ul { list-style: none; counter-reset: m; display: flex; flex-direction: column; gap: 2px; width: 100%; }
.mobile-menu__nav li { counter-increment: m; opacity: 0; transform: translateY(24px); }
.mobile-menu.open .mobile-menu__nav li { animation: menuItem 0.6s var(--ease) forwards; }
.mobile-menu.open .mobile-menu__nav li:nth-child(1) { animation-delay: 0.10s; }
.mobile-menu.open .mobile-menu__nav li:nth-child(2) { animation-delay: 0.16s; }
.mobile-menu.open .mobile-menu__nav li:nth-child(3) { animation-delay: 0.22s; }
.mobile-menu.open .mobile-menu__nav li:nth-child(4) { animation-delay: 0.28s; }
.mobile-menu.open .mobile-menu__nav li:nth-child(5) { animation-delay: 0.34s; }
.mobile-menu.open .mobile-menu__nav li:nth-child(6) { animation-delay: 0.40s; }
.mobile-menu__nav a {
  font-family: var(--font-title); font-size: clamp(2rem, 9vw, 2.9rem); font-weight: 500;
  color: var(--white); display: flex; align-items: baseline; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.35s var(--ease), padding-left 0.4s var(--ease);
}
.mobile-menu__nav a::before { content: counter(m, decimal-leading-zero); font-family: var(--font-text); font-size: 0.78rem; font-weight: 400; color: var(--gold); opacity: 0.7; }
.mobile-menu__nav a:hover, .mobile-menu__nav a:active { color: var(--gold); padding-left: 12px; }
.mobile-menu__footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding-top: 24px; border-top: 1px solid var(--faint); flex-shrink: 0; }
.lang--menu { font-size: 0.95rem; gap: 10px; }
.lang--menu .lang__btn { padding: 8px 4px; font-size: 0.95rem; letter-spacing: 0.14em; }
.mobile-menu__footer .btn { flex: 0 0 auto; }

/* ---------- Grain & scroll progress ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9998; pointer-events: none; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%; z-index: 101;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s var(--ease) 0.2s;
}
.preloader.done { transform: translateY(-100%); }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.preloader__logo { height: 90px; opacity: 0; animation: fadeUp 1s var(--ease) forwards; }
.preloader__bar { width: 180px; height: 1px; background: var(--faint); overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0%; background: var(--gold); transition: width 0.2s linear; }
.preloader__num { font-size: 0.78rem; letter-spacing: 0.3em; color: var(--gold); }
.preloader__num i { font-style: normal; opacity: 0.6; }

/* ---------- HERO ---------- */
.hero { position: relative; height: 100svh; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 28%;
  opacity: 0; visibility: hidden; transition: opacity 1.4s ease 0.3s; pointer-events: none;
}
.hero__video.ready { opacity: 1; visibility: visible; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--navy) 2%, rgba(3,21,38,0.35) 45%, rgba(3,21,38,0.55) 100%),
    radial-gradient(120% 80% at 50% 100%, rgba(3,21,38,0.5), transparent 60%);
}
.hero__content { position: relative; z-index: 2; padding-bottom: clamp(70px, 12vh, 130px); }
.hero__title { font-size: 88px; font-weight: 600; margin: 22px 0; line-height: 0.92; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span { display: block; transform: translateY(110%); }
.hero.in .hero__title .line span { animation: heroLine 1.1s var(--ease) forwards; }
.hero.in .hero__title .line:nth-child(2) span { animation-delay: 0.12s; }
.hero__title .line:nth-child(2) { color: var(--gold); font-weight: 400; }

.hero__meta { display: flex; align-items: center; gap: 18px; font-size: 0.92rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); }
.hero__meta .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.hero__tag { max-width: 480px; margin-top: 18px; font-size: 1.05rem; color: var(--muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.hero__scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll i { width: 1px; height: 46px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--white); animation: scrollLine 2s var(--ease) infinite; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--faint); padding-block: 22px; background: var(--navy-deep); }
.marquee--big { border: none; background: transparent; padding-block: clamp(20px, 4vw, 44px); }
.marquee__track { display: flex; gap: 0; width: max-content; animation: marquee 38s linear infinite; will-change: transform; }
.marquee__track span {
  display: inline-flex; align-items: center; gap: 28px;
  padding-inline: 28px;
  font-family: var(--font-title); font-size: clamp(1.1rem, 2vw, 1.6rem);
  color: var(--muted); white-space: nowrap;
}
.marquee--big .marquee__track { animation-duration: 30s; }
.marquee--big .marquee__track span { font-size: clamp(2rem, 6vw, 5rem); color: transparent; -webkit-text-stroke: 1px var(--hairline); }
.marquee__track span::after { content: "✦"; color: var(--gold); font-size: 0.5em; -webkit-text-stroke: 0; }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- EVENT ---------- */
.event__lead { font-size: clamp(1.2rem, 2vw, 1.6rem); font-family: var(--font-title); color: var(--white); max-width: 900px; line-height: 1.4; margin-bottom: clamp(50px, 7vw, 90px); font-weight: 300; }
.event__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); padding-top: 44px; border-top: 1px solid var(--faint); }
.event__col-tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.25em; color: var(--gold); border: 1px solid var(--hairline); padding: 6px 14px; border-radius: 100px; margin-bottom: 22px; }
.event__col h3 { margin-bottom: 16px; }

.facts { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: clamp(60px, 8vw, 100px); padding-top: clamp(50px, 6vw, 80px); border-top: 1px solid var(--faint); }
.facts li { display: flex; flex-direction: column; gap: 10px; }
.facts__num { font-family: var(--font-title); font-size: clamp(2.6rem, 5vw, 4.4rem); color: var(--gold); line-height: 1; font-weight: 500; }
.facts__label { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }

/* ---------- Showcase (celá fotka, bez parallaxu) ---------- */
.showcase { position: relative; overflow: hidden; }
.showcase__img { position: relative; width: 100%; line-height: 0; }
.showcase__img img { width: 100%; height: auto; display: block; object-fit: contain; filter: saturate(1.05); }
.showcase::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, var(--navy) 0%, rgba(3,21,38,0.55) 16%, transparent 44%); }
.showcase__caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding-bottom: clamp(34px, 5vw, 70px); }
.showcase__caption h2 { margin-top: 18px; max-width: 700px; }

/* ---------- Numbers ---------- */
.numbers { background: var(--navy-deep); }
.numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--faint); border: 1px solid var(--faint); }
.numbers__item { background: var(--navy-deep); padding: clamp(34px, 4vw, 56px) clamp(24px, 3vw, 40px); display: flex; flex-direction: column; gap: 14px; transition: background 0.5s var(--ease); }
.numbers__item:hover { background: var(--navy-soft); }
.numbers__val { font-family: var(--font-title); font-size: clamp(2.8rem, 5vw, 4.6rem); color: var(--gold); line-height: 1; font-weight: 500; }
.numbers__lab { font-size: 0.86rem; color: var(--muted); line-height: 1.45; }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--faint); border: 1px solid var(--faint); }
.why__card { background: var(--navy); padding: clamp(34px, 4vw, 56px); position: relative; transition: background 0.5s var(--ease); overflow: hidden; }
.why__card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(236,214,163,0.06), transparent 50%); opacity: 0; transition: opacity 0.5s var(--ease); }
.why__card:hover { background: var(--navy-soft); }
.why__card:hover::before { opacity: 1; }
.why__idx { font-family: var(--font-title); font-size: 1rem; color: var(--gold); letter-spacing: 0.1em; }
.why__card h3 { margin: 20px 0 14px; }

/* ---------- Gallery — vodorovný slider ---------- */
.gallery__slider { position: relative; margin-top: clamp(24px, 3vw, 44px); }
.gallery__slider::before,
.gallery__slider::after { content: ""; position: absolute; top: 0; bottom: 0; width: clamp(20px, 5vw, 90px); z-index: 2; pointer-events: none; }
.gallery__slider::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.gallery__slider::after { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.gallery__track {
  display: flex; gap: 14px; cursor: grab;
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory; scroll-padding-inline: var(--pad);
  padding-inline: var(--pad); padding-block: 2px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.gallery__track:focus-visible { outline: 1px solid var(--hairline); outline-offset: 4px; }
.gallery__slide {
  position: relative; overflow: hidden; background: var(--navy-deep);
  flex: 0 0 clamp(280px, 38vw, 620px); height: clamp(280px, 46vh, 520px);
  scroll-snap-align: start;
}
.gallery__link { display: block; width: 100%; height: 100%; cursor: zoom-in; }
.gallery__link:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.gallery__track.is-dragging .gallery__link { cursor: grabbing; }
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02); transition: transform 1.2s var(--ease); }
.gallery__slide:hover img { transform: scale(1.05); }
.gallery__slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,21,38,0.45), transparent 55%); opacity: 0.5; pointer-events: none; }

.gallery__controls { display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 4vw, 60px); margin-top: 30px; }
.gallery__progress { position: relative; flex: 1; height: 1px; background: var(--faint); }
.gallery__progress span { position: absolute; top: -1px; left: 0; width: 30%; height: 3px; background: var(--gold); transition: left 0.25s linear, width 0.3s var(--ease); }
.gallery__nav { display: flex; align-items: center; gap: 18px; }
.gallery__btn { width: 50px; height: 50px; border: 1px solid var(--faint); border-radius: 50%; color: var(--gold); font-size: 1.1rem; line-height: 1; transition: 0.4s var(--ease); }
.gallery__btn:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.gallery__btn.is-off { opacity: 0.28; pointer-events: none; }
.gallery__counter { min-width: 66px; text-align: center; font-size: 0.78rem; letter-spacing: 0.18em; color: var(--muted); }
.gallery__counter b { color: var(--gold); font-weight: 400; }
.gallery__counter i { font-style: normal; opacity: 0.5; margin: 0 6px; }

/* ---------- Exclusive Title Partner (banner nad balíčky) ---------- */
.pkg__hero { margin-bottom: 18px; }
.excl {
  position: relative; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 70px);
  padding: clamp(32px, 3.4vw, 58px) clamp(24px, 3vw, 52px);
  border: 1px solid var(--gold-deep); border-radius: 4px; overflow: hidden;
  background: linear-gradient(135deg, rgba(236,214,163,0.12), rgba(3,21,38,0.25) 55%);
}
.excl::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(80% 120% at 0% 0%, rgba(236,214,163,0.14), transparent 62%); }
.excl > * { position: relative; }
.excl__badge { position: absolute; top: 0; right: 0; z-index: 2; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy-deep); background: var(--gold); padding: 6px 14px; border-bottom-left-radius: 6px; }
.excl__name { display: block; font-family: var(--font-title); font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; color: var(--gold); }
.excl__lead { margin-top: 18px; max-width: 46ch; font-size: 0.95rem; color: var(--muted); }
.excl__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; margin-top: clamp(24px, 3vw, 38px); }
.excl__price { font-family: var(--font-title); font-size: 1.05rem; letter-spacing: 0.06em; color: var(--white); }
.excl__items-title { display: block; margin-bottom: 22px; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.excl__items { list-style: none; columns: 2; column-gap: clamp(24px, 3vw, 48px); }
.excl__items > li { break-inside: avoid; position: relative; padding-left: 24px; margin-bottom: 16px; font-size: 0.9rem; line-height: 1.5; color: var(--white); }
.excl__items > li::before { content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border: 1px solid var(--gold); transform: rotate(45deg); }
.excl__sub { list-style: none; margin-top: 8px; }
.excl__sub li { position: relative; padding-left: 16px; font-size: 0.82rem; line-height: 1.55; color: var(--muted); }
.excl__sub li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 1px; background: var(--hairline); }

/* ---------- Packages ---------- */
.pkg__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pkg {
  position: relative; display: flex; flex-direction: column;
  padding: clamp(28px, 2.4vw, 40px) clamp(22px, 2vw, 32px);
  border: 1px solid var(--faint); border-radius: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  transition: transform 0.6s var(--ease), border-color 0.6s var(--ease), box-shadow 0.6s var(--ease);
  overflow: hidden;
}
.pkg::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 60% at 50% 0%, rgba(236,214,163,0.10), transparent 60%); opacity: 0; transition: opacity 0.6s var(--ease); pointer-events: none; }
.pkg:hover { transform: translateY(-10px); border-color: var(--hairline); box-shadow: 0 30px 70px -40px rgba(0,0,0,0.8); }
.pkg:hover::before { opacity: 1; }
.pkg--featured { border-color: var(--gold-deep); background: linear-gradient(180deg, rgba(236,214,163,0.08), rgba(3,21,38,0.2)); }
.pkg__badge { position: absolute; top: 0; right: 0; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy-deep); background: var(--gold); padding: 6px 14px; border-bottom-left-radius: 6px; }
.pkg__name { font-family: var(--font-title); font-size: 1.9rem; color: var(--white); }
.pkg--featured .pkg__name { color: var(--gold); }
.pkg__price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.pkg__price b { font-family: var(--font-title); font-size: clamp(1.8rem, 2.4vw, 2.5rem); font-weight: 500; color: var(--white); }
.pkg__price small { font-size: 0.78rem; color: var(--gold); letter-spacing: 0.06em; }
.pkg__vat { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; }
.pkg__line { height: 1px; background: var(--faint); margin: 24px 0; }
.pkg__items { list-style: none; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.pkg__items li { position: relative; padding-left: 24px; font-size: 0.88rem; color: var(--muted); line-height: 1.45; }
.pkg__items li::before { content: ""; position: absolute; left: 0; top: 9px; width: 9px; height: 9px; border: 1px solid var(--gold); transform: rotate(45deg); }
.pkg__cta { margin-top: 28px; }
.pkg__cta .btn { width: 100%; background: transparent; color: var(--gold); border-color: var(--hairline); }
.pkg__cta .btn::before { background: var(--gold); }
.pkg__cta .btn:hover { color: var(--navy-deep); border-color: var(--gold); }
.pkg--featured .pkg__cta .btn { background: var(--gold); color: var(--navy-deep); }

/* ---------- Segments ---------- */
.segments { padding-block: clamp(60px, 9vw, 120px); }
.segments .container { margin-bottom: 30px; }

/* ---------- Partners (rotující loga) ---------- */
.partners { padding-block: clamp(60px, 9vw, 130px); }
.partners__strip { position: relative; overflow: hidden; margin-top: clamp(30px, 4vw, 56px); border-block: 1px solid var(--faint); }
.partners__strip::before,
.partners__strip::after { content: ""; position: absolute; top: 0; bottom: 0; width: clamp(40px, 10vw, 170px); z-index: 2; pointer-events: none; }
.partners__strip::before { left: 0; background: linear-gradient(to right, var(--navy), transparent); }
.partners__strip::after { right: 0; background: linear-gradient(to left, var(--navy), transparent); }
.partners__track { display: flex; width: max-content; animation: marquee 46s linear infinite; will-change: transform; }
.partners__set { display: flex; align-items: center; }
.partners__strip:hover .partners__track { animation-play-state: paused; }
.partner {
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto; height: 78px; width: clamp(158px, 13.5vw, 205px);
  margin: 16px clamp(7px, 0.7vw, 12px);
  background: #fff; border-radius: 12px; padding: 7px 12px; box-sizing: border-box;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.partner span { font-family: var(--font-title); font-size: clamp(0.82rem, 1.1vw, 1rem); letter-spacing: 0.03em; text-align: center; color: var(--navy); }
.partner img { max-width: 100%; max-height: 100%; width: auto; object-fit: contain; opacity: 1; filter: none; }
.partner:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(0, 0, 0, 0.32); }


/* ---------- Voices ---------- */
.voices__stage { position: relative; }
.voices__track { position: relative; min-height: 240px; }
.voice {
  position: absolute; inset: 0; opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  pointer-events: none;
}
.voice.active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.voice__q { font-family: var(--font-title); font-size: clamp(1.5rem, 3.4vw, 2.8rem); font-weight: 400; line-height: 1.3; color: var(--white); max-width: 1000px; }
.voice__q::before { content: "“"; color: var(--gold); margin-right: 8px; }
.voice__a { margin-top: 30px; display: flex; align-items: center; gap: 16px; }
.voice__a strong { font-family: var(--font-text); font-size: 0.95rem; letter-spacing: 0.06em; color: var(--gold); font-weight: 500; }
.voice__a span { font-size: 0.82rem; color: var(--muted); }
.voice__a i { width: 30px; height: 1px; background: var(--hairline); }
.voices__nav { display: flex; align-items: center; gap: 24px; margin-top: 50px; }
.voices__nav button { width: 50px; height: 50px; border: 1px solid var(--faint); border-radius: 50%; color: var(--gold); font-size: 1.1rem; transition: 0.4s var(--ease); }
.voices__nav button:hover { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.voices__dots { display: flex; gap: 10px; }
.voices__dots button { width: 28px; height: 2px; background: var(--faint); border-radius: 0; padding: 0; transition: background 0.4s; }
.voices__dots button.active { background: var(--gold); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; padding-block: clamp(90px, 14vw, 180px); overflow: hidden; text-align: center; }
.cta-banner__bg { position: absolute; inset: -12% 0; will-change: transform; }
.cta-banner__bg img { width: 100%; height: 124%; object-fit: cover; object-position: center; }
.cta-banner__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--navy) 0%, rgba(3,21,38,0.78) 40%, var(--navy) 100%); }
.cta-banner__inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.cta-banner h2 { margin: 20px 0 22px; max-width: 800px; }
.cta-banner__inner > p { max-width: 600px; margin-bottom: 38px; }
.contact-card { margin-top: 56px; display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(30px, 6vw, 80px); padding-top: 40px; border-top: 1px solid var(--faint); width: 100%; max-width: 800px; }
.contact-card > div { display: flex; flex-direction: column; gap: 6px; }
.contact-card__lab { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.contact-card strong, .contact-card a { font-family: var(--font-title); font-size: 1.3rem; color: var(--white); font-weight: 400; }
.contact-card a:hover { color: var(--gold); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); padding-block: clamp(60px, 8vw, 90px) 30px; border-top: 1px solid var(--faint); }
.footer__inner { display: grid; grid-template-columns: 1fr 2fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.footer__brand img { width: 230px; height: auto; max-width: 100%; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__lab { display: block; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer__cols p { font-size: 0.9rem; color: var(--muted); line-height: 1.9; }
.footer__cols a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: clamp(40px, 6vw, 70px); padding-top: 26px; border-top: 1px solid var(--faint); font-size: 0.76rem; color: var(--muted); letter-spacing: 0.04em; }

/* ---------- Modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease), visibility 0.5s; }
.modal.open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(2,12,22,0.7); backdrop-filter: blur(8px); }
.modal__panel { position: relative; width: 100%; max-width: 880px; background: var(--navy); border: 1px solid var(--hairline); border-radius: 6px; overflow: hidden; transform: translateY(30px) scale(0.98); transition: transform 0.6s var(--ease); max-height: 92vh; overflow-y: auto; }
.modal.open .modal__panel { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 18px; right: 22px; z-index: 3; font-size: 1.8rem; color: var(--muted); line-height: 1; transition: color 0.3s; }
.modal__close:hover { color: var(--gold); }
.modal__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; }
.modal__aside { background: linear-gradient(160deg, var(--navy-soft), var(--navy-deep)); padding: clamp(30px, 4vw, 50px); display: flex; flex-direction: column; gap: 16px; }
.modal__logo { height: 64px; width: auto; margin-bottom: 10px; }
.modal__aside h3 { margin-top: 6px; }
.modal__sub { font-size: 0.9rem; }
.modal__contact { margin-top: auto; display: flex; flex-direction: column; gap: 6px; padding-top: 24px; }
.modal__contact a { color: var(--gold); font-size: 0.92rem; }
.modal__form { padding: clamp(30px, 4vw, 50px); display: grid; grid-template-columns: 1fr 1fr; gap: 22px 18px; align-content: start; }
.field { position: relative; grid-column: 1 / -1; }
.field--half { grid-column: span 1; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--faint);
  color: var(--white); font-family: var(--font-text); font-size: 0.95rem; padding: 12px 0 10px; transition: border-color 0.4s;
}
.field select { color: var(--muted); }
.field select option { background: var(--navy-deep); color: var(--white); }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field label { position: absolute; left: 0; top: 12px; color: var(--muted); font-size: 0.95rem; pointer-events: none; transition: 0.3s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: -12px; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.modal__form .btn { grid-column: 1 / -1; }
.form__success { grid-column: 1 / -1; color: var(--gold); font-size: 0.9rem; text-align: center; opacity: 0; height: 0; transition: opacity 0.4s; }
.form__success.show { opacity: 1; height: auto; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Keyframes ---------- */
@keyframes heroLine { to { transform: translateY(0); } }
@keyframes menuItem { to { opacity: 1; transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 100%; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .nav__right { display: none; }            /* jazyk + CTA se přesouvají do menu */
  .excl { grid-template-columns: 1fr; }
  .pkg__grid { grid-template-columns: repeat(2, 1fr); }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
}
@media (max-width: 720px) {
  :root { --pad: 22px; }
  .nav__logo-img--square { width: 138px; }
  .header.scrolled .nav__logo-img--horizontal { width: 150px; }
  .hero__title { font-size: 52px; }
  .event__cols { grid-template-columns: 1fr; gap: 40px; }
  .why__grid { grid-template-columns: 1fr; }
  .gallery__slide { flex-basis: 84vw; height: 58vh; }
  .gallery__controls { flex-direction: column; align-items: stretch; gap: 22px; }
  .gallery__nav { justify-content: space-between; }
  .gallery__btn { width: 44px; height: 44px; }
  .excl__items { columns: 1; }
  .partner { height: 64px; width: clamp(132px, 40vw, 170px); margin: 12px 7px; }
  .pkg__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .modal__grid { grid-template-columns: 1fr; }
  .modal__aside { display: none; }
  .modal__form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .hero__meta { flex-wrap: wrap; gap: 10px; font-size: 0.78rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line span { transform: none; }
  .marquee__track, .partners__track { animation: none; }
}


/* ---------- Fancybox — sladeni s paletou webu ---------- */
.fancybox__container {
  --f-backdrop-bg: rgba(2, 21, 38, 0.94);
  --f-button-color: var(--gold);
  --f-button-hover-color: var(--gold-bright);
  --f-button-active-color: var(--gold-bright);
  --f-button-bg: rgba(255, 255, 255, 0.06);
  --f-button-hover-bg: rgba(236, 214, 163, 0.16);
  --f-button-active-bg: rgba(236, 214, 163, 0.24);
  --f-arrow-color: var(--gold);
  --f-arrow-hover-color: var(--gold-bright);
  --f-arrow-bg: rgba(255, 255, 255, 0.06);
  --f-arrow-hover-bg: rgba(236, 214, 163, 0.16);
  --f-caption-color: #f2f5f8;
  --f-caption-font: 400 0.95rem/1.5 var(--font-body, inherit);
  --f-thumb-active-border: var(--gold);
  --f-spinner-color-2: var(--gold);
  --f-progressbar-color: var(--gold);
}
.fancybox__caption { letter-spacing: 0.01em; }

/* ---------- Formulář — chyba + honeypot ---------- */
.form__error { color: #ff9c8a; font-size: 0.86rem; margin-top: 10px; min-height: 1.2em; }
.field--hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.modal__form button[disabled] { opacity: 0.55; pointer-events: none; }
