/* ============================================================
   RESET & CUSTOM PROPERTIES
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #080808;
  --surface:   #111111;
  --surface-2: #1c1c1c;
  --gold:      #60a5fa;
  --gold-light:#bfdbfe;
  --blue:      #3b82f6;
  --blue-light:#93c5fd;
  --amber:     #f59e0b;
  --text:      #f0f0f0;
  --muted:     #9a9a9a;
  --border:    rgba(255,255,255,0.08);
  --nav-h:     68px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ============================================================
   FOCUS
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  font-weight: 900;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 100ms ease, filter 100ms ease, background 100ms ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: scale(1.02); filter: brightness(1.12); }

.btn--gold {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--blue);
}
.btn--ghost:hover { background: rgba(59,130,246,0.12); filter: none; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease;
}
.nav.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__wordmark {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
  color: #f0f0f0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}
.nav__vol {
  color: var(--blue-light);
  font-size: 0.75em;
  margin-left: 0.35em;
}

.nav__links {
  display: flex;
  gap: 1.5rem;
  margin: 0 auto;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(240,240,240,0.65);
  position: relative;
  padding-bottom: 2px;
  transition: color 150ms;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 200ms ease;
}
.nav__links a:hover,
.nav__links a.active { color: #f0f0f0; }
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }

.nav__cta { flex-shrink: 0; padding: 0.55rem 1.25rem; font-size: 0.9rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #f0f0f0;
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 99;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 200ms ease, opacity 200ms ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  padding: 0.5rem 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel {
  position: absolute;
  inset: 0;
}
.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel__slide.active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.58) 0%,
    rgba(0,0,0,0.48) 30%,
    rgba(0,0,0,0.68) 65%,
    rgba(0,0,0,0.90) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-top: var(--nav-h);
}

.hero__vol {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: var(--blue-light);
  letter-spacing: 0.18em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}
.hero__title {
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.03em;
  color: var(--text);
  line-height: 0.95;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.hero__date {
  font-size: clamp(0.9rem, 1.8vw, 1.25rem);
  color: rgba(240,240,240,0.90);
  letter-spacing: 0.06em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.55);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.55rem 1rem;
  min-width: 70px;
}
.countdown__val {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--amber);
  line-height: 1;
}
.countdown__label {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-top: 3px;
}
.countdown__sep {
  color: var(--amber);
  font-size: 1.4rem;
  font-weight: 900;
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__btns .btn--ghost {
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Carousel dots */
.carousel__dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}
.carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 200ms, transform 200ms;
}
.carousel__dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  padding: 1.25rem 0.9rem;
  opacity: 0;
  transition: opacity 200ms ease, color 150ms ease;
  pointer-events: none;
}
.carousel__arrow--prev { left: 0.5rem; }
.carousel__arrow--next { right: 0.5rem; }
.hero:hover .carousel__arrow {
  opacity: 1;
  pointer-events: auto;
}
.carousel__arrow:hover { color: rgba(255,255,255,0.95); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-strip__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
}
.stat__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--amber);
  line-height: 1;
}
.stat__label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 3px;
}
.stat__divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS (general)
   ============================================================ */
.section { padding: clamp(3rem, 8vw, 6rem) 0; }
.section--surface { background: var(--surface); }

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 2.5rem;
}
.section__subtitle {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.section__note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}
.section__cta { margin-top: 2rem; text-align: center; }

/* ============================================================
   CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: 2px solid transparent;
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  transition: transform 100ms ease, box-shadow 100ms ease;
}
.card:hover { transform: translateY(-4px); }

.card--gold { border-top-color: var(--gold); }
.card--gold:hover { box-shadow: 0 8px 32px rgba(59,130,246,0.2); }
.card--blue { border-top-color: var(--blue); }
.card--blue:hover { box-shadow: 0 8px 32px rgba(59,130,246,0.15); }

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.card--gold .card__icon { background: rgba(245,158,11,0.1); color: var(--amber); }
.card--blue .card__icon { background: rgba(59,130,246,0.12); color: var(--blue-light); }
.card__title {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.card--gold .card__title { color: var(--amber); }
.card--blue .card__title { color: var(--blue-light); }
.card__desc { font-size: 0.9rem; color: var(--muted); line-height: 1.5; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.price-table th,
.price-table td {
  padding: 0.85rem 1.1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.price-table thead th {
  background: var(--surface-2);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--text);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover td { background: rgba(255,255,255,0.04); }
.price-table tbody tr:hover td.col-active { background: rgba(59,130,246,0.18); }

.deadline-date {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin-top: 2px;
}

.sticky-col {
  position: sticky;
  left: 0;
  background: var(--bg);
  text-align: left !important;
  font-weight: 500;
  z-index: 1;
  border-right: 1px solid var(--border);
}
.section--surface .sticky-col { background: var(--surface); }
.price-table thead .sticky-col { background: var(--surface-2); }

/* Active price column */
.price-table th.col-active {
  background: rgba(59,130,246,0.12);
  color: var(--gold);
  position: relative;
}
.price-table th.col-active::before {
  content: 'AKTUÁLNÍ CENA';
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 2px;
}
.price-table td.col-active { background: rgba(59,130,246,0.06); }

/* ============================================================
   SCHEDULE
   ============================================================ */
.schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.schedule__date {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.schedule__list { display: flex; flex-direction: column; gap: 0.65rem; }
.schedule__list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}
.schedule__time {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue-light);
  min-width: 44px;
  flex-shrink: 0;
}
.schedule__event { font-size: 0.92rem; color: var(--muted); }

/* ============================================================
   RULES
   ============================================================ */
.rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.rules__block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
}
.rules__block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}
.rules__block ul { display: flex; flex-direction: column; gap: 0.4rem; }
.rules__block li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.1rem;
  position: relative;
}
.rules__block li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.rules__block p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.rules__subheading {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
}

.rules__block__disciplines {
  font-size: 1rem;
  line-height: 1.45;
}

.rules__note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.6rem;
  font-style: italic;
}

.rules__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.75rem 0;
}

/* Categories grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cat-block {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.cat-block__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--amber);
  line-height: 1.3;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.cat-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
}
.cat-row:last-child { border-bottom: none; }

.cat-row__label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.cat-row__vals {
  font-size: 0.875rem;
  color: var(--text);
}

.cat-row--age .cat-row__vals { color: var(--muted); }

/* ============================================================
   VENUE
   ============================================================ */
.venue__map {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.venue__btn { margin-top: 1.25rem; }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  max-width: 680px;
  margin: 0 auto;
}
.partner {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 150px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: border-color 200ms;
}
.partner img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
}
[data-theme="light"] .partner-logo--bw {
  filter: invert(1);
}
.partner:hover { border-color: rgba(255,255,255,0.2); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}
.footer__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}
.footer__cta p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer__email {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 150ms;
}
.footer__email:hover { color: var(--text); }
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social a {
  color: var(--muted);
  transition: color 150ms;
  display: flex;
  align-items: center;
}
.footer__social a:hover { color: var(--gold); }
.footer__copy {
  color: var(--muted);
  font-size: 0.78rem;
}

/* ============================================================
   FADE-IN
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: 768–1023px */
@media (max-width: 1023px) {
  .nav__inner { gap: 0.75rem; padding: 0 1rem; }
  .nav__wordmark { margin-right: auto; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .mobile-menu { display: block; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile L: 480–767px */
@media (max-width: 767px) {
  .hero__title { font-size: clamp(3.5rem, 10vw, 6rem); }
  .cards { grid-template-columns: 1fr; }
  .schedule { grid-template-columns: 1fr; }
  .rules { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .partners { gap: 1rem; }
  .nav__cta { padding: 0.45rem 1rem; font-size: 0.82rem; }

  /* ── Pricing table → card layout ── */
  .table-wrap {
    border: none;
    border-radius: 0;
    overflow-x: visible;
    background: transparent;
  }

  .price-table,
  .price-table tbody {
    display: block;
  }

  .price-table thead { display: none; }

  .price-table tbody {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }

  .price-table tbody tr {
    display: block;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--surface-2);
  }

  /* Discipline name = card header */
  .price-table td.sticky-col {
    position: static;
    display: block;
    background: transparent;
    border-right: none;
    border-bottom: 1px solid var(--border);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
    text-align: left;
    padding: 0.85rem 1rem;
  }

  /* Price tier rows: label on left, price on right */
  .price-table td:not(.sticky-col) {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
  }

  .price-table tbody tr td:last-child { border-bottom: none; }

  /* Inject tier label from data-label attribute */
  .price-table td:not(.sticky-col)::before {
    content: attr(data-label);
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 500;
  }

  /* Active tier: blue highlight */
  .price-table td.col-active {
    background: rgba(59,130,246,0.14);
    border-left: 2px solid var(--gold);
    padding-left: calc(0.75rem - 2px);
  }
  .price-table td.col-active::before {
    color: var(--gold);
    font-weight: 700;
  }

  /* Remove min-width constraint */
  .price-table { min-width: 0; }
}

/* Stats strip: compact single row on narrow viewports */
@media (max-width: 600px) {
  .stats-strip__inner {
    padding: 1rem;
  }
  .stat {
    padding: 0.4rem 0.5rem;
  }
  .stat__label {
    font-size: 0.72rem;
  }
  .stat__divider {
    height: 28px;
  }
}

/* Mobile S: < 480px */
@media (max-width: 479px) {
  .hero__title { font-size: clamp(3.4rem, 14vw, 5rem); }
  .hero__vol   { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
  .hero__btns  { flex-direction: column; align-items: center; }
  .hero__btns .btn { text-align: center; }
  .countdown {
    flex-wrap: nowrap;
    gap: 0.4rem;
  }
  .countdown__block {
    flex: 1;
    min-width: 0;
    padding: 0.45rem 0.35rem;
  }
  .countdown__sep { display: none; }
  .partner { width: 100%; }
  .stat__num { font-size: clamp(1.3rem, 6vw, 1.8rem); }
}

/* Desktop: 1024px+ */
@media (min-width: 1024px) {
  .hero__title { font-size: clamp(5rem, 8vw, 10rem); }
}

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  color: rgba(240,240,240,0.65);
  flex-shrink: 0;
  transition: background 150ms, color 150ms, border-color 150ms;
}
.theme-toggle:hover {
  background: rgba(255,255,255,0.12);
  color: #f0f0f0;
  border-color: rgba(255,255,255,0.4);
}
.theme-toggle__moon { display: none; }
[data-theme="light"] .theme-toggle__sun  { display: none; }
[data-theme="light"] .theme-toggle__moon { display: block; }

/* ============================================================
   LIGHT MODE
   ============================================================ */

/* Color tokens — blue-focused light mode, contrast verified:
     blue #1d4ed8 on bg #f4f4f5  → 6.1:1  ✓ AA
     blue #1a56db on surface #fff → 5.6:1  ✓ AA
     muted #4b5563 on bg         → 6.7:1  ✓ AA+
     text #111111 on bg          → 18:1   ✓ AAA         */
[data-theme="light"] {
  --bg:        #f4f4f5;
  --surface:   #ffffff;
  --surface-2: #e8e8ea;
  --gold:      #1d4ed8;
  --gold-light:#3b82f6;
  --blue:      #1a56db;
  --blue-light:#2563eb;
  --amber:     #c07810;
  --text:      #111111;
  --muted:     #4b5563;
  --border:    rgba(0,0,0,0.1);
}

/* Smooth cross-fade between themes */
[data-theme="light"],
[data-theme="dark"] {
  transition:
    background-color 250ms ease,
    color 250ms ease,
    border-color 250ms ease;
}

/* Light mode: nav is transparent over hero, only gets light background when scrolled */
[data-theme="light"] .nav.scrolled {
  background: rgba(245,245,245,0.95);
  border-bottom-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .nav.scrolled .nav__wordmark { color: #111111; text-shadow: none; }
[data-theme="light"] .nav.scrolled .nav__vol      { color: var(--gold); }
[data-theme="light"] .nav.scrolled .nav__links a  { color: #4b5563; text-shadow: none; }
[data-theme="light"] .nav.scrolled .nav__links a:hover,
[data-theme="light"] .nav.scrolled .nav__links a.active { color: #111111; }
[data-theme="light"] .nav.scrolled .nav__links a::after { background: var(--gold); }
[data-theme="light"] .nav.scrolled .nav__hamburger span { background: #111111; }
[data-theme="light"] .nav.scrolled .theme-toggle {
  color: #4b5563;
  border-color: rgba(0,0,0,0.18);
}
[data-theme="light"] .nav.scrolled .theme-toggle:hover {
  background: rgba(0,0,0,0.06);
  color: #111111;
  border-color: rgba(0,0,0,0.3);
}
[data-theme="light"] .mobile-menu {
  background: rgba(245,245,245,0.97);
  border-bottom-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .mobile-menu a { color: #111111; }

/* Hero overlay stays dark in all themes — photos need consistent contrast */

/* Hero text: always light — photos are always dark regardless of theme */
[data-theme="light"] .hero__title        { color: #f0f0f0; }
[data-theme="light"] .hero__date         { color: rgba(240,240,240,0.75); }
[data-theme="light"] .hero__vol          { color: #93c5fd; }
[data-theme="light"] .countdown__val,
[data-theme="light"] .countdown__sep     { color: #f59e0b; }
[data-theme="light"] .countdown__label   { color: rgba(240,240,240,0.6); }
[data-theme="light"] .countdown__block   { border-color: rgba(255,255,255,0.15); }

/* Amber cards in light mode: use dark amber for contrast on light bg */
[data-theme="light"] .card--gold .card__icon  { color: var(--amber); background: rgba(192,120,16,0.12); }
[data-theme="light"] .card--gold .card__title { color: var(--amber); }
/* Blue cards in light mode: use darker blue for contrast on light bg */
[data-theme="light"] .card--blue .card__icon { color: var(--blue); background: rgba(26,86,219,0.1); }
[data-theme="light"] .card--blue .card__title { color: var(--blue); }

/* Section dividers — clear visual separation in light mode */
[data-theme="light"] .section,
[data-theme="light"] .section--surface,
[data-theme="light"] .stats-strip,
[data-theme="light"] .footer {
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Table row hover on light bg */
[data-theme="light"] .price-table tbody tr:hover td {
  background: rgba(0,0,0,0.04);
}
[data-theme="light"] .price-table tbody tr:hover td.col-active {
  background: rgba(59,130,246,0.22);
}

/* Smooth background/color transitions on key elements during theme switch */
body,
.nav,
.mobile-menu,
.stats-strip,
.section,
.section--surface,
.footer,
.price-table th,
.price-table td,
.rules__block,
.cat-block,
.partner,
.schedule__day {
  transition: background-color 250ms ease, color 250ms ease, border-color 250ms ease;
}
/* Cards already have transform/shadow transitions — extend them */
.card { transition: transform 100ms ease, box-shadow 100ms ease, background-color 250ms ease, border-color 250ms ease; }

/* Gold CTA button stays amber+black in both modes — keep as-is ✓ */

/* Ghost button on light: white text+border when inside dark hero; default elsewhere */
[data-theme="light"] .hero__btns .btn--ghost {
  color: #f0f0f0;
  border-color: rgba(255,255,255,0.45);
}
[data-theme="light"] .hero__btns .btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  filter: none;
}
[data-theme="light"] .btn--ghost:hover {
  background: rgba(26,86,219,0.08);
}

/* ============================================================
   KONTAKT / ORGANIZER
   ============================================================ */
.organizer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: clamp(2rem, 5vw, 3rem);
}
.organizer__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.organizer__logo {
  width: clamp(120px, 14vw, 200px);
  height: auto;
  display: block;
}
[data-theme="light"] .organizer__logo {
  filter: invert(1);
}
.organizer__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.organizer__desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 55ch;
}
.organizer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  color: var(--text);
  transition: border-color 150ms, background 150ms, color 150ms;
  white-space: nowrap;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(59,130,246,0.06);
}
.social-btn--email {
  color: var(--muted);
}

@media (max-width: 767px) {
  .organizer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
  .organizer__desc {
    max-width: none;
  }
  .organizer__socials {
    justify-content: center;
  }
}
