:root{
  --bg: #0b1020;
  --panel: rgba(255,255,255,.06);
  --card: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --line: rgba(255,255,255,.12);

  --brand: #ffd24a;     /* zlatá/žltá */
  --brand2: #8b0000;    /* bordová */
  --accent: #47d18c;

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --shadow-soft: 0 12px 35px rgba(0,0,0,.22);

  --container: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 650px at 10% -10%, rgba(255,210,74,.28), transparent 55%),
    radial-gradient(900px 600px at 110% 15%, rgba(139,0,0,.28), transparent 52%),
    radial-gradient(900px 600px at 50% 120%, rgba(71,209,140,.16), transparent 55%),
    var(--bg);
  line-height: 1.45;
}

a{ color: inherit; }
a.link{ color: var(--brand); text-decoration: none; }
a.link:hover{ text-decoration: underline; }

.skiplink{
  position:absolute;
  left:-9999px; top:auto;
  width:1px; height:1px;
  overflow:hidden;
}
.skiplink:focus{
  left: 14px; top: 14px;
  width:auto; height:auto;
  padding: 10px 12px;
  background: #111830;
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 9999;
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(11,16,32,.9), rgba(11,16,32,.5));
  border-bottom: 1px solid var(--line);
  z-index: 20;
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 240px;
}
.brand-mark{
  width: 40px; height: 40px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-weight: 800;
  letter-spacing: .5px;
  background: linear-gradient(135deg, rgba(255,210,74,.95), rgba(139,0,0,.85));
  color: rgba(0,0,0,.86);
  box-shadow: var(--shadow-soft);
}
.brand-title{
  font-weight: 800;
  font-size: 14px;
}
.brand-subtitle{
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.header-actions{
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .2px;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, box-shadow .12s ease;
  user-select: none;
}
.btn:active{ transform: translateY(1px); }
.btn-lg{ padding: 12px 16px; border-radius: 16px; }
.btn-primary{
  background: linear-gradient(135deg, rgba(255,210,74,.95), rgba(255,180,45,.92));
  color: rgba(0,0,0,.88);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover{ box-shadow: var(--shadow); }
.btn-outline{
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.18);
}
.btn-outline:hover{ background: rgba(255,255,255,.06); }
.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,.14);
}
.btn-ghost:hover{ background: rgba(255,255,255,.05); }
.w100{ width: 100%; }

/* Hero */
.hero{
  padding: 34px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items: start;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}
.hero h1{
  margin: 12px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.8px;
}
.accent{
  background: linear-gradient(135deg, rgba(255,210,74,.95), rgba(71,209,140,.92));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
  max-width: 60ch;
}
.cta-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 18px;
}
.hero-notes{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.note{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.note-k{
  font-size: 12px;
  color: var(--muted);
}
.note-v{
  font-weight: 800;
  margin-top: 3px;
}

/* Card */
.card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.hero-card .card{ position: sticky; top: 78px; }
.card-head h2{
  margin: 0 0 6px;
  font-size: 18px;
}
.card-head p{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}
.card-actions{
  display:grid;
  gap: 10px;
}
.divider{
  height: 1px;
  background: rgba(255,255,255,.12);
  margin: 16px 0;
}

.mini-faq__item{ margin-bottom: 10px; }
.mini-faq__q{
  font-weight: 800;
  font-size: 13px;
}
.mini-faq__a{
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
}

/* Sections */
.section{
  padding: 28px 0;
}
.section-soft{
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section-head{
  margin-bottom: 14px;
}
.section-head h2{
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -0.3px;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  max-width: 80ch;
}
.section-head.row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
}
.section-head__actions{ flex: 0 0 auto; }

/* Grids */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature, .info, .list-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
}
.feature-icon{
  width: 34px; height: 34px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 900;
  background: rgba(255,210,74,.18);
  border: 1px solid rgba(255,210,74,.28);
  color: rgba(255,210,74,.95);
  margin-bottom: 10px;
}
.feature h3, .info h3, .list-card h3{
  margin: 0 0 6px;
  font-size: 15px;
}
.feature p, .info p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.checklist{
  margin: 10px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}
.checklist li{ margin: 8px 0; }

/* Schedule */
.schedule{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 12px;
}
.schedule-row{
  display:grid;
  grid-template-columns: 1.1fr 1fr 1.3fr;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
}
.schedule-row + .schedule-row{ margin-top: 8px; }
.schedule-row{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.schedule-day{ font-weight: 900; }
.schedule-time{ color: var(--muted); font-weight: 700; }
.schedule-place{ color: var(--muted); }
.schedule-note{
  margin: 10px 6px 0;
  color: var(--muted);
  font-size: 12.5px;
}

/* Contact */
.contact-card{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow-soft);
}
.contact-copy h2{
  margin: 0 0 6px;
  font-size: 20px;
}
.contact-copy p{
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13.5px;
}
.contact-items{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.contact-item{
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.contact-k{ font-size: 12px; color: var(--muted); }
.contact-v{ font-weight: 800; margin-top: 3px; }
.contact-actions{
  display:grid;
  gap: 10px;
  align-content:start;
}

/* Footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 16px 0 22px;
  margin-top: 14px;
}
.footer-row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.muted{ color: var(--muted); }

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-card .card{ position: relative; top: 0; }
  .contact-card{ grid-template-columns: 1fr; }
  .contact-items{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .hero-notes{ grid-template-columns: 1fr; }
  .schedule-row{ grid-template-columns: 1fr; }
}
.cookie-banner{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9999;
}

.cookie-banner__inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text{
  min-width: 240px;
}

.cookie-banner__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-banner a{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
