/* ==========================================================================
   Dubská komunitní zábava — redesign „PANÁK" (retro-paper sticker)
   ========================================================================== */

:root {
  /* barvy panáka */
  --purple: #7d1f8f;
  --blue:   #0d27c9;
  --red:    #d3111f;
  --orange: #f6820c;
  --yellow: #f6c012;
  --green:  #1a9d5c;
  --spring: #29e389;
  --pink:   #f06bb0;
  --sky:    #74c0ee;
  --brown:  #8a4b1e;

  --ink:    #3a2352;   /* hluboká švestková – obrysy & text (jako v ilustracích) */
  --ink-soft: #6b5480;
  --paper:  #f8f0dd;   /* krémový papír */
  --paper-2:#f2e7cd;
  --card:   #fffdf6;

  --maxw: 1180px;
  --radius: 26px;
  --radius-sm: 16px;
  --bd: 3px;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 4px 4px 0 var(--ink);

  --display: "Bricolage Grotesque", ui-sans-serif, system-ui, sans-serif;
  --body: "Nunito", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--purple); }
p { text-wrap: pretty; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* zrnitý papír přes celou stránku */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 2; }

/* ---------- Typografie ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.02; margin: 0; letter-spacing: -.01em; }
.sec-title { font-size: clamp(2rem, 5vw, 3.4rem); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.sec-sub { font-size: 1.12rem; color: var(--ink-soft); margin: 14px 0 0; font-weight: 600; text-wrap: balance; }
.sec-sub--left { text-align: left; }

.section { padding: 92px 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--display); font-weight: 700; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  background: var(--paper-2); border: var(--bd) solid var(--ink);
  padding: 7px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.kicker__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--red); }

/* badge = malý štítek nad nadpisem sekce */
.badge {
  display: inline-block; font-family: var(--display); font-weight: 700;
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  color: #fff; padding: 6px 15px; border-radius: 999px;
  border: var(--bd) solid var(--ink); box-shadow: var(--shadow-sm);
  transform: rotate(-2deg); margin-bottom: 18px;
}
.badge--orange { background: var(--orange); }
.badge--purple { background: var(--purple); }
.badge--green  { background: var(--green); }
.badge--pink   { background: var(--pink); }
.badge--blue   { background: var(--blue); }
.badge--red    { background: var(--red); }

/* ---------- Tlačítka (sticker) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  padding: 13px 24px; border-radius: 999px; text-decoration: none;
  border: var(--bd) solid var(--ink); cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .15s ease;
  box-shadow: var(--shadow-sm);
}
.btn--lg { padding: 16px 32px; font-size: 1.12rem; }
.btn--pop { background: var(--red); color: #fff; }
.btn--pop:hover { background: #ec1f2d; }
.btn--outline { background: var(--card); color: var(--ink); }
.btn--outline:hover { background: var(--paper-2); }
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(248, 240, 221, .88); backdrop-filter: blur(8px);
  border-bottom: var(--bd) solid var(--ink);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { height: 46px; width: auto; filter: drop-shadow(2px 2px 0 rgba(58,35,82,.25)); }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1.06rem; line-height: 1.05; }
.brand__name small { display: block; font-family: var(--body); font-weight: 700; font-size: .74rem; color: var(--ink-soft); }

.nav__links { display: flex; align-items: center; gap: 8px; }
.nav__links a:not(.btn) {
  text-decoration: none; color: var(--ink); font-family: var(--display);
  font-weight: 700; font-size: .98rem; padding: 8px 14px; border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.nav__links a:not(.btn):hover { background: var(--paper-2); color: var(--red); }
.nav__links .btn { margin-left: 8px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: .2s; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 56px 0 0; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 36px; align-items: center; padding-bottom: 40px; }
.hero__text { animation: rise .7s .05s both; }
.hero__text .kicker { margin-bottom: 28px; }
.hero__title { font-size: clamp(2rem, 4.4vw, 3.1rem); line-height: 1.06; }
.hero__title-lead { display: block; white-space: nowrap; }
.hl { position: relative; display: block; margin-top: .06em; color: var(--purple); width: max-content; max-width: 100%; }
.hl__mark { position: absolute; left: 0; bottom: -.2em; width: 100%; height: .34em; overflow: visible; }
.hl__mark path { stroke-dasharray: 460; stroke-dashoffset: 460; animation: draw 1s .7s forwards; }
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 42ch; margin: 22px 0 0; font-weight: 600; text-wrap: pretty; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero__art { position: relative; display: flex; justify-content: center; align-items: flex-end; animation: rise .7s .15s both; }
.hero__disc {
  position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
  width: 92%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, var(--yellow), #f4b300 62%, transparent 63%);
  border: 0; z-index: 0; opacity: .9;
}
.hero__disc::after {
  content: ""; position: absolute; inset: 4%; border-radius: 50%;
  border: var(--bd) dashed var(--ink); opacity: .35;
}
.hero__mascot { position: relative; z-index: 1; width: 90%; max-width: 400px; height: auto;
  filter: drop-shadow(8px 12px 0 rgba(58,35,82,.15)); animation: float 5s ease-in-out infinite; }
.speech {
  position: absolute; top: 8%; right: 4%; z-index: 2;
  font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--ink);
  background: #fff; border: var(--bd) solid var(--ink); box-shadow: var(--shadow-sm);
  padding: 10px 16px; border-radius: 18px 18px 18px 4px; transform: rotate(4deg);
  animation: pop .5s .9s both;
}

/* poletující nálepky */
.sticker { position: absolute; z-index: 1; pointer-events: none; }
.sticker--star1 { width: 58px; top: 8%; left: 50%; animation: spin 14s linear infinite, float 6s ease-in-out infinite; }
.sticker--star2 { width: 42px; left: 1.5%; bottom: 8%; animation: spin 18s linear infinite reverse; }
.sticker--squiggle { width: 108px; left: 50%; bottom: 16%; }

.blob { position: absolute; z-index: 0; border-radius: 50%; filter: blur(60px); opacity: .5; }
.blob--1 { width: 360px; height: 360px; background: var(--sky); top: -40px; right: -40px; }
.blob--2 { width: 300px; height: 300px; background: var(--pink); bottom: 90px; left: -90px; opacity: .32; }

/* marquee pás */
.marquee { position: relative; width: 112%; margin: 30px 0 30px -6%;
  border-top: var(--bd) solid var(--ink); border-bottom: var(--bd) solid var(--ink);
  background: var(--purple); overflow: hidden; padding: 13px 0; transform: rotate(-1.2deg); }
.marquee__track { display: flex; width: max-content; gap: 40px; padding-right: 40px; white-space: nowrap; animation: scroll 30s linear infinite; }
.marquee__track span { font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: #fff; letter-spacing: .04em; flex-shrink: 0; }

/* ---------- Akce ---------- */
.events { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; }
.event {
  background: var(--card); border: var(--bd) solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; display: flex;
  transition: transform .18s ease, box-shadow .18s ease;
}
.event:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.event--feature { flex-direction: row; }
.event__media { position: relative; flex: 0 0 44%; overflow: hidden; border-right: var(--bd) solid var(--ink); }
.event__media img { width: 100%; height: 100%; object-fit: cover; }
.event__pill {
  position: absolute; top: 14px; left: 14px; font-family: var(--display); font-weight: 800;
  font-size: .82rem; color: var(--ink); background: var(--yellow);
  border: var(--bd) solid var(--ink); box-shadow: var(--shadow-sm);
  padding: 6px 13px; border-radius: 999px; transform: rotate(-3deg);
}
.event__body { padding: 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.event__title { font-size: 1.7rem; }
.event__desc { color: var(--ink-soft); margin: 0; font-weight: 600; }
.event__body .btn { margin-top: auto; }

.event--soon { flex-direction: column; position: relative; }
.event--soon .event__body { justify-content: center; min-height: 260px; }
.soon__socials { display: flex; gap: 12px; margin-top: 4px; }
.soon__doodle { position: absolute; right: 18px; bottom: 14px; width: 84px; opacity: .5; z-index: 0; }

.icon-chip {
  width: 48px; height: 48px; display: inline-grid; place-items: center; border-radius: 50%;
  color: #fff; border: var(--bd) solid var(--ink); box-shadow: var(--shadow-sm);
  text-decoration: none; transition: transform .12s ease, box-shadow .12s ease;
}
.icon-chip:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }
.icon-chip svg { width: 24px; height: 24px; fill: currentColor; }
.icon-chip--fb { background: #1877f2; }
.icon-chip--ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }

/* ---------- Hra ---------- */
.section--game { background: var(--paper-2); border-top: var(--bd) solid var(--ink); border-bottom: var(--bd) solid var(--ink); }
.game__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.game__hint { font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-top: 20px;
  background: var(--card); border: var(--bd) solid var(--ink); box-shadow: var(--shadow-sm);
  padding: 12px 18px; border-radius: 16px; display: inline-block; }
.game__hint b { color: var(--red); }
.hs-replay { margin-left: 10px; border: var(--bd) solid var(--ink); background: var(--green); color: #fff;
  font-family: var(--display); font-weight: 700; padding: 6px 14px; border-radius: 999px; cursor: pointer; font-size: .9rem; box-shadow: var(--shadow-sm); }
.hs-replay:hover { transform: translate(2px,2px); box-shadow: 1px 1px 0 var(--ink); }

.game__board { display: flex; justify-content: center; }
.hs-board { width: 100%; max-width: 320px; height: auto; overflow: visible;
  filter: drop-shadow(7px 7px 0 var(--ink)); }
.hs-cell { cursor: pointer; }
.hs-cell rect { transition: filter .18s ease; transform-box: fill-box; transform-origin: center; }
.hs-cell text { pointer-events: none; user-select: none; }
.hs-cell:hover rect { filter: brightness(1.08); }
.hs-cell:focus-visible { outline: none; }
.hs-cell:focus-visible rect { stroke: var(--ink); stroke-width: 4; }
.hs-cell.is-next rect { animation: hs-pulse 1.1s ease-in-out infinite; }
.hs-cell.lit rect { filter: brightness(1.12) saturate(1.12); }
.hs-cell.bounce rect { animation: hs-hop .45s ease; }
.hs-cell.wrong rect { animation: hs-shake .4s ease; }
.hs-token { transition: cx .4s cubic-bezier(.34,1.56,.64,1), cy .4s cubic-bezier(.34,1.56,.64,1), opacity .2s ease; pointer-events: none; }

@keyframes hs-pulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.05);} }
@keyframes hs-hop { 0%{transform:scale(1);} 40%{transform:scale(1.18);} 100%{transform:scale(1);} }
@keyframes hs-shake { 0%,100%{transform:translateX(0);} 25%{transform:translateX(-5px);} 75%{transform:translateX(5px);} }

/* ---------- O nás ---------- */
.section--about { }
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 48px; align-items: center; }
.about__art { position: relative; }
.about__art img { width: 100%; border: var(--bd) solid var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); transform: rotate(-2deg); }
.about__lead { font-size: 1.2rem; margin: 4px 0 0; font-weight: 700; }
.about__body { color: var(--ink-soft); margin: 16px 0 0; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 26px 0 0; }
.chip { font-family: var(--display); font-weight: 700; font-size: .95rem; color: #fff;
  padding: 8px 16px; border-radius: 999px; border: var(--bd) solid var(--ink); box-shadow: var(--shadow-sm); }
.chip--purple { background: var(--purple); }
.chip--green  { background: var(--green); }
.chip--pink   { background: var(--pink); }
.chip--blue   { background: var(--blue); }

/* ---------- Kontakt ---------- */
.socials { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 42px; }
.social { display: inline-flex; align-items: center; gap: 11px; text-decoration: none;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem; color: #fff;
  padding: 13px 24px; border-radius: 999px; border: var(--bd) solid var(--ink); box-shadow: var(--shadow-sm);
  transition: transform .12s ease, box-shadow .12s ease; }
.social:hover { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.social svg { width: 22px; height: 22px; fill: currentColor; }
.social--fb { background: #1877f2; }
.social--ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { background: var(--card); border: var(--bd) solid var(--ink); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px; transition: transform .18s ease, box-shadow .18s ease; }
.info-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0 var(--ink); }
.info-card__ico { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.info-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.info-card p { margin: 0; color: var(--ink-soft); font-weight: 600; overflow-wrap: anywhere; }
.info-card a { color: var(--purple); font-weight: 700; text-decoration: none; }
.info-card a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--paper); border-top: var(--bd) solid var(--ink); padding: 56px 0 26px; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 36px; }
.footer__brand { display: flex; align-items: center; gap: 16px; max-width: 380px; }
.footer__mascot { width: 74px; height: auto; flex-shrink: 0; }
.footer__brand strong { font-family: var(--display); font-size: 1.15rem; color: #fff; }
.footer__brand p { margin: 4px 0 0; color: #d9cdea; font-weight: 600; }
.footer__cols { display: flex; gap: 60px; }
.footer__cols h4 { font-size: 1rem; color: #fff; margin-bottom: 12px; }
.footer__cols a { display: block; color: #d9cdea; text-decoration: none; padding: 4px 0; font-weight: 600; }
.footer__cols a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  margin-top: 40px; padding-top: 22px; border-top: 2px solid rgba(255,255,255,.15); font-size: .9rem; color: #b6a8c9; font-weight: 600; }

/* ---------- Animace ---------- */
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: scale(.6) rotate(4deg); } to { opacity: 1; transform: scale(1) rotate(4deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes scroll { to { transform: translateX(-50%); } }

/* konfety */
.confetti-layer { position: fixed; inset: 0; pointer-events: none; z-index: 9999; overflow: hidden; }
.confetti-piece { position: absolute; top: -16px; width: 11px; height: 15px; border-radius: 2px; opacity: .95;
  animation: confetti-fall linear forwards; }
@keyframes confetti-fall { to { transform: translateY(110vh) rotate(720deg); } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .hl__mark path { stroke-dashoffset: 0; }
  .confetti-piece { display: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .speech { display: none; }
}

@media (max-width: 900px) {
  .events { grid-template-columns: 1fr; }
  .event--feature { flex-direction: column; }
  .event__media { flex-basis: auto; height: 320px; border-right: 0; border-bottom: var(--bd) solid var(--ink); }
  .game__grid, .about__grid { grid-template-columns: 1fr; gap: 34px; }
  .about__art { order: 2; }
  .about__art img { transform: none; max-width: 460px; margin: 0 auto; }
  .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 66px 0; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__text { order: 1; }
  .hero__art { order: 2; margin-top: 40px; }
  .hero__disc { width: min(84%, 300px); }
  .hero__mascot { max-width: 280px; }
  .hero__title .hl { margin-inline: auto; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .sticker--squiggle, .sticker--star1 { display: none; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--paper); border-bottom: var(--bd) solid var(--ink); padding: 10px 16px 16px;
    box-shadow: var(--shadow); display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a:not(.btn) { padding: 13px 14px; border-radius: 14px; }
  .nav__links .btn { margin: 10px 0 0; }
  .footer__inner { flex-direction: column; }
  .footer__cols { gap: 44px; }
}

/* ==========================================================================
   Halloween na Rudolfce — tmavá strašidelná varianta
   ========================================================================== */
:root {
  --night: #150e26;
  --night-2: #1c1333;
  --hw-panel: #241a3d;
  --hw-outline: #0c0718;
  --hw-text: #efe8fb;
  --hw-muted: #b3a4d3;
  --hw-orange: #ff7a18;
  --hw-purple: #9a5cf0;
  --hw-green: #35d07f;
  --hw-red: #ff4d4d;
  --hw-shadow: 6px 6px 0 var(--hw-outline);
  --hw-shadow-sm: 4px 4px 0 var(--hw-outline);
}

body.hw { background: var(--night); color: var(--hw-text); }
.hw .grain { opacity: .35; }

/* barevné texty na tmavém */
.hw .sec-title { color: #fff; }
.hw .sec-sub { color: var(--hw-muted); }
.hw .sec-sub strong, .hw .hw-hero__lead strong { color: #fff; }
.hw a { color: var(--hw-orange); }

/* header */
.hw .site-header { background: rgba(21,14,38,.86); border-bottom-color: var(--hw-outline); }
.hw .brand__name { color: #fff; }
.hw .brand__name small { color: var(--hw-muted); }
.hw .brand img { filter: drop-shadow(2px 2px 0 rgba(0,0,0,.4)); }
.hw .nav__links a:not(.btn) { color: var(--hw-text); }
.hw .nav__links a:not(.btn):hover { background: rgba(255,255,255,.08); color: var(--hw-orange); }
.hw .nav__toggle span { background: #fff; }

/* kicker + tlačítka na tmavém */
.hw .kicker { background: rgba(255,255,255,.06); color: var(--hw-text); border-color: var(--hw-outline); box-shadow: var(--hw-shadow-sm); }
.hw .kicker__dot { background: var(--hw-orange); }
.hw .btn { border-color: var(--hw-outline); box-shadow: var(--hw-shadow-sm); }
.hw .btn:hover { box-shadow: 2px 2px 0 var(--hw-outline); }
.hw .btn:active { box-shadow: 0 0 0 var(--hw-outline); }
.hw .btn--pop { background: var(--hw-orange); color: #241206; }
.hw .btn--pop:hover { background: #ff8c34; }
.btn--ghost-dark { background: rgba(255,255,255,.07); color: #fff; }
.hw .btn--ghost-dark:hover { background: rgba(255,255,255,.14); }
.hw .badge { border-color: var(--hw-outline); box-shadow: var(--hw-shadow-sm); }

/* ---- HERO ---- */
.hw-hero { position: relative; overflow: clip; padding: 40px 0 70px; }
.hw-hero__bg { position: absolute; inset: -40px; z-index: 0;
  background: url("img/halloween-plakat.jpg") center / cover no-repeat;
  filter: blur(30px) brightness(.4) saturate(1.2); transform: scale(1.15); }
.hw-hero::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(21,14,38,.72), rgba(21,14,38,.82) 60%, var(--night)); }
.hw-hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.hw-hero__content { animation: rise .7s .05s both; }
.hw-hero__content .kicker { margin-bottom: 24px; }
.hw-hero__title { font-size: clamp(2.4rem, 5.6vw, 4.2rem); color: #fff; line-height: 1.04; text-shadow: 0 4px 26px rgba(0,0,0,.5); }
.hw-hero__title .accent { color: var(--hw-orange); }
.hw-hero__title .year { display: inline-block; color: var(--hw-purple); }
.hw-hero__lead { font-size: 1.16rem; color: #ded3f2; max-width: 46ch; margin: 22px 0 0; font-weight: 600; text-wrap: pretty; }

.hw-dates { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 0; }
.hw-date { display: flex; align-items: flex-start; gap: 11px; background: rgba(255,255,255,.06);
  border: var(--bd) solid var(--hw-outline); box-shadow: var(--hw-shadow-sm); border-radius: 16px; padding: 13px 18px; }
.hw-date__ico { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; color: var(--hw-orange); }
.hw-date strong { display: block; font-family: var(--display); font-weight: 800; color: #fff; font-size: 1.02rem; }
.hw-date span { font-size: .88rem; color: var(--hw-muted); }
.hw-hero .hero__cta { margin-top: 30px; }

.hw-hero__art { position: relative; display: flex; justify-content: center; animation: rise .7s .15s both; }
.hw-hero__poster { width: 100%; max-width: 400px; border-radius: 18px; border: var(--bd) solid var(--hw-outline);
  box-shadow: 10px 10px 0 var(--hw-outline), 0 0 60px rgba(255,122,24,.18); transform: rotate(1.6deg); }
.hw-hero__mascot { position: absolute; left: -6%; bottom: -8%; width: 46%; max-width: 220px; height: auto; z-index: 3;
  filter: drop-shadow(6px 8px 0 rgba(0,0,0,.35)); animation: float 5.5s ease-in-out infinite; }

/* létající netopýři + měsíc */
.bat { position: absolute; z-index: 1; width: 54px; opacity: .85; }
.bat--1 { top: 16%; left: 40%; animation: float 5s ease-in-out infinite; }
.bat--2 { top: 30%; left: 52%; width: 38px; animation: float 6.5s ease-in-out infinite reverse; }
.moon { position: absolute; top: 8%; right: 6%; z-index: 1; width: 90px; height: 90px; border-radius: 50%;
  background: radial-gradient(circle at 38% 36%, #fff5cf, #f4d97a 70%); box-shadow: 0 0 60px rgba(244,217,122,.35); opacity: .55; }

/* ---- sekce ---- */
.hw-section { padding: 82px 0; position: relative; z-index: 2; }
.hw-section--alt { background: var(--night-2); border-top: var(--bd) solid var(--hw-outline); border-bottom: var(--bd) solid var(--hw-outline); }

/* facts */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fact { background: var(--hw-panel); border: var(--bd) solid var(--hw-outline); box-shadow: var(--hw-shadow);
  border-radius: var(--radius-sm); padding: 24px; text-align: center; }
.fact__ico { font-size: 1.9rem; display: block; margin-bottom: 8px; }
.fact strong { display: block; font-family: var(--display); color: #fff; font-size: 1.1rem; }
.fact span { color: var(--hw-muted); font-size: .9rem; }

/* tickets */
.tickets { display: grid; grid-template-columns: repeat(2, minmax(220px, 320px)); gap: 24px; justify-content: center; }
.ticket { background: var(--hw-panel); border: var(--bd) solid var(--hw-outline); box-shadow: var(--hw-shadow);
  border-radius: var(--radius); padding: 32px 26px; text-align: center; }
.ticket--adult { background: linear-gradient(165deg, #2b1d49, #201636); }
.ticket__ico { font-size: 2.2rem; display: block; }
.ticket h3 { color: #fff; font-size: 1.2rem; margin: 8px 0 2px; }
.ticket__price { font-family: var(--display); font-size: 2.8rem; font-weight: 800; color: var(--hw-orange); margin: 8px 0 4px; }
.ticket__price .ph { opacity: .5; }
.ticket small { color: var(--hw-muted); }
.hw-note { max-width: 640px; margin: 26px auto 0; text-align: center; color: var(--hw-muted); font-size: .95rem; }

/* reserve callout */
.reserve { max-width: 780px; margin: 0 auto; text-align: center; background: var(--night-2);
  border: var(--bd) solid var(--hw-orange); border-radius: 26px; padding: 48px 32px;
  box-shadow: 0 0 0 4px rgba(255,122,24,.12), var(--hw-shadow); }
.reserve__lead { color: #ded3f2; max-width: 60ch; margin: 6px auto 26px; text-wrap: pretty; }
.reserve__steps { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-top: 28px; color: var(--hw-muted); font-size: .92rem; }
.reserve__steps span { display: inline-flex; align-items: center; gap: 8px; }
.reserve__steps b { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%;
  background: var(--hw-orange); color: #241206; font-family: var(--display); }

/* warnings */
.warns { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.warn { background: var(--hw-panel); border: var(--bd) solid var(--hw-outline); border-left-width: 7px; border-left-color: var(--hw-orange);
  box-shadow: var(--hw-shadow); border-radius: var(--radius-sm); padding: 22px 24px; }
.warn h3 { color: #fff; font-size: 1.08rem; margin-bottom: 6px; }
.warn p { color: var(--hw-muted); margin: 0; font-size: .96rem; }
.warn--danger { border-left-color: var(--hw-red); background: linear-gradient(165deg, #3a1526, #241a3d); }
.warn--danger h3 { color: #ff7b7b; }

/* sponsors */
.sponsors { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.sponsor-slot { width: 190px; height: 96px; border: var(--bd) dashed rgba(255,255,255,.22); border-radius: 16px;
  display: grid; place-items: center; color: var(--hw-muted); font-family: var(--display); font-size: .9rem; }

/* footer na tmavém */
.hw .site-footer { background: #0f0a1c; border-top-color: var(--hw-outline); }
.hw .footer__brand strong { color: #fff; }
.hw .footer__brand p { color: var(--hw-muted); }
.hw .footer__cols a, .hw .footer__cols h4 { color: var(--hw-muted); }
.hw .footer__cols h4 { color: #fff; }
.hw .footer__cols a:hover { color: #fff; }
.hw .footer__mascot { width: 84px; }
.hw .footer__bottom { border-top-color: rgba(255,255,255,.12); color: #8f7fb0; }

@media (max-width: 900px) {
  .facts { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .hw .nav__links { background: var(--night-2); border-bottom-color: var(--hw-outline); box-shadow: var(--hw-shadow); }
  .hw-section { padding: 60px 0; }
  .hw-hero__grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
  .hw-hero__content { order: 2; }
  .hw-hero__art { order: 1; }
  .hw-hero__poster { max-width: 300px; }
  .hw-hero__mascot { max-width: 150px; left: 0; }
  .hw-dates { justify-content: center; text-align: left; }
  .hw-hero .hero__cta { justify-content: center; }
  .tickets { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}
