/* ════════════════════════════════════════════════════
   TANCEM.CZ — STANDALONE STYLESHEET
   Obsahuje VŠECHNY styly potřebné pro web tancem.cz
   včetně design tokenů, base, hero, sekcí, formulářů
   a všech komponent. Lze použít samostatně.
   ════════════════════════════════════════════════════ */

/* ── DESIGN TOKENY ────────────────────────────────── */
:root {
  --gold: #e8a820;
  --gold2: #d99918;
  --dark: #0f0f11;
  --dark2: #0a0a0c;
  --white: #ffffff;
  --muted: rgba(255,255,255,.55);
  --line: rgba(255,255,255,.08);
  --PX: clamp(20px, 4vw, 48px);
  --MAX: 1320px;
}

/* ── RESET & BASE ─────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: inherit; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.85);
  background: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px; /* místo pro fixní header */
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--gold2); }

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
  color: var(--white);
}

h1 em, h2 em, h3 em {
  font-style: normal;
  color: var(--gold);
}

::selection {
  background: var(--gold);
  color: var(--dark);
}

/* Skryjeme custom kurzory (ty z původního webu) */
#cur, #cur2 { display: none; }

/* ── COMING SOON BAR ──────────────────────────────── */
.cs-bar {
  background: rgba(232,168,32,.08);
  border-bottom: 1px solid rgba(232,168,32,.2);
  padding: 10px 20px;
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.cs-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: csPulse 2s ease-in-out infinite;
}
@keyframes csPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}

/* ── GLOBÁLNÍ HORNÍ NAVIGACE ─────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 15, 17, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s ease;
}
.site-header.scrolled {
  background: rgba(15, 15, 17, .95);
}
.site-header-inner {
  max-width: var(--MAX);
  margin: 0 auto;
  padding: 14px var(--PX);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  position: relative;
}
/* Logo skryté — menu zarovnáno na střed */
.site-logo { display: none; }
/* CTA WhatsApp absolutně vpravo, aby nevyhodilo menu z centra */
.site-header-cta {
  position: absolute;
  right: var(--PX);
  top: 50%;
  transform: translateY(-50%);
}
.site-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem;
  letter-spacing: .03em;
  color: var(--white);
}
.site-logo-text em {
  font-style: normal;
  color: var(--gold);
}
.site-logo-sub {
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.site-nav a {
  position: relative;
  padding: 8px 14px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
  border-radius: 4px;
}
.site-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.04);
}
.site-nav a.active {
  color: var(--gold);
}
.site-nav a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1px;
  background: var(--gold);
}
.site-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: rgba(37, 211, 102, .12);
  border: 1px solid rgba(37, 211, 102, .35);
  color: #25d366;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 30px;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.site-header-cta:hover {
  background: rgba(37, 211, 102, .2);
  color: #25d366;
}

/* Burger */
.site-burger {
  display: none;
  width: 38px; height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
}
.site-burger span {
  width: 18px; height: 2px;
  background: var(--white);
  transition: transform .2s, opacity .2s;
}
.site-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-burger.open span:nth-child(2) { opacity: 0; }
.site-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobilní navigace */
.site-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px var(--PX) 24px;
  background: rgba(15,15,17,.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  z-index: 100;
}
.site-nav-mobile.open {
  display: flex;
}
.site-nav-mobile a {
  padding: 14px 16px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  border-radius: 4px;
}
.site-nav-mobile a:hover, .site-nav-mobile a.active {
  background: rgba(255,255,255,.04);
  color: var(--gold);
}
.site-nav-mobile-cta {
  margin-top: 12px;
  padding: 14px 16px;
  background: rgba(37, 211, 102, .12) !important;
  color: #25d366 !important;
  text-align: center;
  border-radius: 4px;
}

@media (max-width: 980px) {
  .site-header-inner { justify-content: flex-start; }
  .site-nav, .site-header-cta { display: none; }
  .site-burger { display: flex; }
  .site-nav-mobile.open { display: flex; }
}

/* ── BREADCRUMB ───────────────────────────────────── */
.breadcrumb {
  background: rgba(0,0,0,.2);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.breadcrumb .wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.45);
}
.breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--gold); }

/* ── WRAP & SECTION ───────────────────────────────── */
.wrap {
  max-width: var(--MAX);
  margin: 0 auto;
  padding: 0 var(--PX);
}

main { display: block; }

.sec {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}
.sec-dark {
  background: var(--dark2);
}

.sec-head {
  margin-bottom: clamp(36px, 5vw, 60px);
}
.sec-head-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}
@media (max-width: 720px) {
  .sec-head-row { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 12px;
  background: rgba(232,168,32,.08);
  border: 1px solid rgba(232,168,32,.2);
  border-radius: 20px;
}

.sec h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
}

.sec-note {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  max-width: 420px;
  line-height: 1.7;
}

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 800px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: clamp(80px, 10vw, 120px) var(--PX);
  overflow: hidden;
  isolation: isolate;
}
.hero-photo {
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  margin: 0;
  padding: 0;
}
.hero-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  opacity: .55;
  filter: grayscale(.15) contrast(1.05);
  display: block;
  position: absolute;
  top: 0; left: 0;
}
.hero-photo::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg,
    rgba(15,15,17,.5) 0%,
    rgba(15,15,17,.6) 40%,
    rgba(15,15,17,.85) 90%,
    rgba(15,15,17,.95) 100%);
  z-index: 1;
}
.hero > *:not(.hero-photo):not(.hero-glow):not(.hero-grid) {
  position: relative;
  z-index: 3;
}
.hero-glow {
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(232,168,32,.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 2;
}
.hero-grid {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 2;
  opacity: .35;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding: 8px 16px;
  background: rgba(232,168,32,.08);
  border: 1px solid rgba(232,168,32,.25);
  border-radius: 30px;
}
.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: .95;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
.hero-h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  font-style: italic;
}
.hero-sub {
  max-width: 640px;
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.hero-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 700px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 30px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}
.hero-chip-ico { font-size: 1rem; }

/* Hero sub-elements (původní web) */
.hero-eyebrow br + span, .hero-eyebrow span { display: inline; }

.hero-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
  max-width: 720px;
  width: 100%;
}
.hero-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: all .2s;
}
.hero-nav-item:hover {
  background: rgba(232,168,32,.08);
  border-color: rgba(232,168,32,.3);
  color: var(--gold);
}
.hero-nav-ico {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 720px) { .hero-nav { grid-template-columns: 1fr; } }

.hero h3 {
  margin-top: 36px;
  margin-bottom: 16px;
  font-size: 1.1rem;
  letter-spacing: .12em;
  color: rgba(255,255,255,.6);
}

/* Countdown */
.hero-cd {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.cd-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  padding: 14px 12px;
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(232,168,32,.2);
  border-radius: 4px;
}
.cd-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: .03em;
  color: var(--gold);
  line-height: 1;
}
.cd-l {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn-gold, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold2);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(232,168,32,.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn-outline:hover {
  background: rgba(255,255,255,.04);
  border-color: var(--white);
  color: var(--white);
}
.btn-full { width: 100%; }

/* ── PROCES (number cards) ─────────────────────── */
.proces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 880px) { .proces-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .proces-grid { grid-template-columns: 1fr; } }
.proces-card {
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  position: relative;
  transition: transform .25s, border-color .2s;
}
.proces-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,168,32,.25);
}
.proces-card.highlight {
  background: linear-gradient(180deg, rgba(232,168,32,.08), rgba(232,168,32,.02));
  border-color: rgba(232,168,32,.3);
}
.proces-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: .03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.proces-title {
  font-size: 1.4rem;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 10px;
}
.proces-text {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
}

/* ── STYLY (4-up cards) ──────────────────────────── */
.styly-grid, .prokoho-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
@media (max-width: 880px) { .styly-grid, .prokoho-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .styly-grid, .prokoho-grid { grid-template-columns: 1fr; } }
.styl-card, .prokoho-card {
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  position: relative;
  transition: transform .25s, border-color .2s;
  overflow: hidden;
}
.styl-card:hover, .prokoho-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,168,32,.3);
}
.styl-card-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.styl-ico, .prokoho-ico {
  font-size: 2rem;
  margin-bottom: 14px;
}
.styl-title, .prokoho-title {
  font-size: 1.3rem;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 10px;
}
.styl-desc, .prokoho-text {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
}

/* ── KURZY CARDS (begin/advanced) ────────────────── */
.kurzy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
}
@media (max-width: 880px) { .kurzy-grid { grid-template-columns: 1fr; } }

.kurz-card {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .25s, border-color .2s;
}
.kurz-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232,168,32,.25);
}
.kurz-card.pokrocily { border-top: 3px solid var(--gold); }
.kurz-card-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.kurz-card-body {
  padding: clamp(28px, 3.5vw, 40px);
}
.kurz-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 16px;
}
.kurz-status.running {
  background: rgba(76,175,80,.1);
  border: 1px solid rgba(76,175,80,.3);
  color: #66bb6a;
}
.kurz-status-dot {
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
  animation: csPulse 2s ease-in-out infinite;
}
.kurz-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: .03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.kurz-desc {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
}
.kurz-content {
  margin: 16px 0 8px;
  padding: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 4px;
  font-size: .85rem;
}
.kurz-content strong {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.kurz-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kurz-list li {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.kurz-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.kurz-autumn {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(232,168,32,.05);
  border: 1px solid rgba(232,168,32,.15);
  border-radius: 4px;
}
.kurz-autumn-ico { font-size: 1.4rem; flex-shrink: 0; }
.kurz-autumn-text { font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,.7); }
.kurz-autumn-text strong {
  display: block;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ── CENÍK ────────────────────────────────────────── */
.cenik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.cenik-grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .cenik-grid-2 { grid-template-columns: 1fr; } }
.cenik-card {
  position: relative;
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 32px);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}
.cenik-card.hot {
  background: linear-gradient(180deg, rgba(232,168,32,.08), rgba(232,168,32,.02));
  border-color: rgba(232,168,32,.3);
}
.cenik-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--gold);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}
.cenik-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}
.cenik-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.cenik-sub {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
  font-style: italic;
}
.cenik-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.cenik-list li {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.cenik-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
}
.cenik-foot {
  margin-top: 28px;
  padding: 18px 24px;
  background: rgba(255,255,255,.03);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.65);
}
.cenik-foot strong { color: var(--white); }

/* Original price-card (z původního webu) */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.price-cards-top { grid-template-columns: 1fr; }
.price-card {
  position: relative;
  padding: 22px 24px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
}
.price-card.hot {
  background: linear-gradient(180deg, rgba(232,168,32,.08), rgba(232,168,32,.02));
  border-color: rgba(232,168,32,.3);
}
.price-card-badge {
  position: absolute;
  top: -10px; left: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
.price-card-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.price-card-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: .03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.price-card-sub {
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}
.pkg-steps {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-step {
  display: flex;
  gap: 10px;
  font-size: .78rem;
  line-height: 1.5;
  color: rgba(255,255,255,.7);
}
.pkg-step-num {
  flex-shrink: 0;
  width: 30px;
  font-weight: 700;
  color: var(--gold);
}

/* ── SVC (Service detail) ────────────────────────── */
.svc-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}
.svc-wrap.reverse { grid-template-columns: 1fr 1.1fr; }
.svc-wrap.reverse .svc-text { order: 1; }
.svc-wrap.reverse .svc-visual { order: 2; }
.svc-visual {
  display: flex;
  align-items: stretch;
  min-height: 100%;
}
@media (max-width: 880px) {
  .svc-wrap, .svc-wrap.reverse { grid-template-columns: 1fr; align-items: start; }
  .svc-wrap.reverse .svc-text { order: 1; }
  .svc-wrap.reverse .svc-visual { order: 2; }
  .svc-visual { min-height: auto; }
}
.svc-text h2 { font-size: clamp(2rem, 4vw, 3rem); }
.svc-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.svc-lead {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.svc-item-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  width: 100%;
  height: 100%;
  min-height: 480px;
}
.svc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
@media (max-width: 880px) {
  .svc-photo { min-height: 360px; }
}
.svc-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(15,15,17,.9));
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--white);
  text-transform: uppercase;
}

/* ── REC (recenze) ───────────────────────────────── */
.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.rec-card {
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
}
.rec-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .15em;
  margin-bottom: 14px;
}
.rec-text {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  margin-bottom: 18px;
  font-style: italic;
  border: none;
  padding: 0;
}
.rec-author {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.rec-author strong {
  display: block;
  color: var(--white);
  font-size: .92rem;
  margin-bottom: 3px;
}
.rec-author span {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 880px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .2s, background .2s;
}
.faq-item:hover { border-color: rgba(255,255,255,.15); }
.faq-item.open {
  border-color: rgba(232,168,32,.3);
  background: rgba(232,168,32,.02);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: .94rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
}
.faq-q:hover { color: var(--gold); }
.faq-ico {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  transition: max-height .3s ease, padding .25s ease;
}
.faq-item.open .faq-a {
  max-height: 600px;
  padding: 0 22px 22px;
}
.faq-a a { color: var(--gold); }

/* ── KDY (timeline) ──────────────────────────────── */
.kdy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.kdy-card {
  padding: clamp(20px, 2.5vw, 28px);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
}
.kdy-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .03em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.kdy-title {
  font-size: 1.1rem;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 8px;
}
.kdy-text {
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
}

/* ── OBLASTI ─────────────────────────────────────── */
.oblasti-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}
@media (max-width: 880px) { .oblasti-grid { grid-template-columns: 1fr; align-items: start; } }
.oblasti-grid h2 { font-size: clamp(2rem, 4vw, 3rem); }
.oblasti-text {
  font-size: .92rem;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  margin: 16px 0;
}
.oblasti-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.oblasti-list li {
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
}
.oblasti-list li span {
  font-weight: 400;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
}
.oblasti-photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.oblasti-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}
@media (max-width: 880px) {
  .oblasti-photo { min-height: 360px; }
}

/* ── CONTACT ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.ci-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ci {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.ci-whatsapp {
  background: rgba(37,211,102,.06);
  border-color: rgba(37,211,102,.25);
}
.ci-alert {
  background: rgba(232,168,32,.04);
  border-color: rgba(232,168,32,.15);
}
.ci-ico {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.04);
  border-radius: 4px;
}
.ci-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}
.ci-val {
  font-size: .94rem;
  color: var(--white);
  font-weight: 600;
}
.ci-val a { color: var(--white); }
.ci-val a:hover { color: var(--gold); }
.ci-val-muted { color: rgba(255,255,255,.5); }
.ci-hint {
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
  font-style: italic;
  line-height: 1.55;
}
.ci-badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-left: 6px;
}
.ci-badge-pref {
  background: rgba(37,211,102,.12);
  color: #25d366;
}
.ci-badge-full {
  background: rgba(232,168,32,.12);
  color: var(--gold);
}

/* ── FORM ────────────────────────────────────────── */
.fwrap {
  padding: clamp(24px, 3vw, 36px);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.f-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 4px;
}
.f-sub {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
  font-style: italic;
}
.fgr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) { .fgr { grid-template-columns: 1fr; } }
.fg { margin-bottom: 16px; }
.fl {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.fi, .fsel, .fta {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0,0,0,.3);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--white);
  font-size: .92rem;
  font-family: inherit;
  transition: border-color .2s, background .2s;
}
.fi:focus, .fsel:focus, .fta:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0,0,0,.5);
}
.fta { resize: vertical; min-height: 90px; }
.fi::placeholder, .fta::placeholder {
  color: rgba(255,255,255,.3);
}
.fsel {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path d="M3 4.5l3 3 3-3" stroke="%23e8a820" stroke-width="1.5" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.gdpr-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0;
  cursor: pointer;
}
.gdpr-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.gdpr-box {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all .2s;
}
.gdpr-check input:checked + .gdpr-box {
  background: var(--gold);
  border-color: var(--gold);
}
.gdpr-check input:checked + .gdpr-box::after {
  content: '✓';
  position: absolute;
  top: -1px; left: 3px;
  color: var(--dark);
  font-size: .9rem;
  font-weight: 700;
}
.gdpr-text {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
.gdpr-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

.btn-send {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s;
}
.btn-send:hover {
  background: var(--gold2);
  transform: translateY(-1px);
}
.form-ok {
  display: none;
  margin-top: 14px;
  padding: 12px;
  background: rgba(76,175,80,.1);
  border: 1px solid rgba(76,175,80,.3);
  color: #66bb6a;
  text-align: center;
  font-size: .85rem;
  border-radius: 4px;
}
.form-ok.show { display: block; }

/* ── VICE (cross-link) ───────────────────────────── */
.vice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.vice-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  transition: transform .25s, border-color .2s, background .2s;
}
.vice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,168,32,.3);
  background: rgba(232,168,32,.03);
}
.vice-ico { font-size: 2rem; margin-bottom: 14px; }
.vice-title {
  font-size: 1.3rem;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 10px;
}
.vice-text {
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  flex: 1;
  margin-bottom: 14px;
}
.vice-link {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
}

/* ── WS (workshop) cards ─────────────────────────── */
.ws-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: clamp(16px, 2vw, 24px);
}
.ws-static {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(28px, 4vw, 40px);
}
.ws-static-card {
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s, border-color .2s;
}
.ws-static-card:hover {
  transform: translateY(-2px);
  border-color: rgba(232,168,32,.3);
}
.ws-static-date {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.ws-static-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: .03em;
  color: var(--white);
  line-height: 1.1;
}
.ws-static-meta {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  font-style: italic;
}
.ws-static-desc {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  flex: 1;
}
.ws-static-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.ws-static-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .03em;
  color: var(--gold);
}
@media (max-width: 720px) { .ws-static { grid-template-columns: 1fr; } }
.ws-noscript {
  padding: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 6px;
}

/* ── LEKTOR & KONTAKT CARDS ──────────────────────── */
.lektori-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(28px, 4vw, 48px);
}
.lektor-card {
  padding: clamp(28px, 3.5vw, 40px);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.lektor-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  letter-spacing: .03em;
  color: var(--gold);
  margin-bottom: 8px;
}
.lektor-role {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.lektor-text {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}
.lektor-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.lektor-meta-row {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.lektor-meta-row strong { color: var(--white); margin-right: 6px; }
@media (max-width: 880px) { .lektori-grid { grid-template-columns: 1fr; } }

.kontakt-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(28px, 4vw, 48px);
}
.kontakt-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3vw, 30px);
  background: rgba(255,255,255,.025);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  transition: all .25s;
  text-align: center;
}
.kontakt-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,168,32,.3);
  background: rgba(232,168,32,.03);
}
.kontakt-card-pref {
  background: linear-gradient(180deg, rgba(232,168,32,.08), rgba(232,168,32,.02));
  border-color: rgba(232,168,32,.3);
}
.kontakt-card-ico { font-size: 2rem; margin-bottom: 6px; }
.kontakt-card-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.kontakt-card-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  letter-spacing: .03em;
  color: var(--white);
}
.kontakt-card-pref .kontakt-card-value { color: var(--gold); }
.kontakt-card-hint {
  font-size: .76rem;
  color: rgba(255,255,255,.45);
  font-style: italic;
}
@media (max-width: 720px) { .kontakt-cards-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }

/* ── FOOTER ──────────────────────────────────────── */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  margin-bottom: clamp(36px, 5vw, 60px);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1;
}
.footer-logo em { font-style: normal; color: var(--gold); }
.footer-tagline {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 18px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(255,255,255,.65);
  transition: all .25s;
}
.footer-social a:hover {
  background: rgba(232,168,32,.1);
  border-color: rgba(232,168,32,.3);
  color: var(--gold);
}
.footer-col-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}
.footer-list a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.footer-list a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: .74rem;
  color: rgba(255,255,255,.4);
}
@media (max-width: 720px) {
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── STICKY CTA (mobil) ──────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 95;
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(15,15,17,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232,168,32,.3);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(0,0,0,.4);
  transform: translateY(150%);
  transition: transform .35s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sticky-cta-text strong {
  font-size: .85rem;
  color: var(--white);
}
.sticky-cta-text span {
  font-size: .72rem;
  color: rgba(255,255,255,.55);
}
.sticky-cta-btn {
  padding: 10px 18px;
  font-size: .76rem;
}
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* ── COOKIE BAR ──────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 95;
  max-width: 420px;
  padding: 18px 20px;
  background: rgba(15,15,17,.97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.cookie-bar.show { display: block; }
.cookie-bar.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cookie-ico { font-size: 1.4rem; flex-shrink: 0; }
.cookie-text p {
  font-size: .82rem;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
}
.cookie-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.cookie-btn-reject, .cookie-btn-accept {
  padding: 8px 16px;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: all .2s;
}
.cookie-btn-reject:hover { background: rgba(255,255,255,.06); }
.cookie-btn-accept {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.cookie-btn-accept:hover { background: var(--gold2); }
@media (max-width: 540px) {
  .cookie-bar { left: 16px; right: 16px; max-width: none; }
}

/* ── TOAST ───────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 12px 24px;
  background: var(--gold);
  color: var(--dark);
  font-size: .85rem;
  font-weight: 600;
  border-radius: 30px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── ANIMACE ─────────────────────────────────────── */
.r {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.r.in {
  opacity: 1;
  transform: translateY(0);
}
.d1 { transition-delay: .05s; }
.d2 { transition-delay: .12s; }
.d3 { transition-delay: .19s; }
.d4 { transition-delay: .26s; }
.d5 { transition-delay: .33s; }
.d6 { transition-delay: .4s; }

/* ── ABOUT (lektoři) ─────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: stretch;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; align-items: start; } }
.about-photo-wrap {
  display: flex;
  align-items: stretch;
}
.about-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  width: 100%;
  min-height: 540px;
}
.about-photo video, .about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
@media (max-width: 880px) {
  .about-photo { aspect-ratio: 4/5; min-height: auto; }
}
.about-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(15,15,17,.9));
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--white);
}
.about-lead {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
}
.about-lead strong { color: var(--gold); }
.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 28px;
}
.about-feat {
  display: flex;
  gap: 14px;
}
.about-feat-ico {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232,168,32,.08);
  border: 1px solid rgba(232,168,32,.2);
  border-radius: 6px;
}
.about-feat strong {
  display: block;
  font-size: .98rem;
  color: var(--white);
  margin-bottom: 4px;
}
.about-feat p {
  font-size: .85rem;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
}
.about-bottom {
  font-size: .9rem;
  line-height: 1.8;
  color: rgba(255,255,255,.7);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

/* Lektoři video wrapper */
.lektori-video {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 9;
}
.lektori-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── INSTAGRAM KANÁL & TEASER (z původní hp) ─────── */
.sec-teaser, .sec-igkanal { padding: clamp(48px, 6vw, 80px) 0; }
.teaser-grid, .igkanal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
@media (max-width: 880px) {
  .teaser-grid, .igkanal-grid { grid-template-columns: 1fr; }
}
.teaser-photo, .igkanal-qr {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.teaser-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.teaser-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.teaser-title em { font-style: normal; color: var(--gold); }
.teaser-desc {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
}
.teaser-hints {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.teaser-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
}
.teaser-hint-ico { font-size: 1rem; }
.teaser-ig { display: flex; flex-wrap: wrap; gap: 10px; }
.teaser-cta-btn, .teaser-ig-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  transition: all .2s;
}
.teaser-cta-btn {
  background: var(--gold);
  color: var(--dark);
}
.teaser-cta-btn:hover { background: var(--gold2); color: var(--dark); }
.teaser-ig-btn {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1px solid var(--line);
}
.teaser-ig-btn:hover { border-color: var(--gold); color: var(--gold); }
.igkanal-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: 16px;
}
.igkanal-desc {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  margin-bottom: 22px;
}
.igkanal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--gold);
  color: var(--dark);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 4px;
  text-decoration: none;
  transition: all .2s;
}
.igkanal-btn:hover { background: var(--gold2); color: var(--dark); }
.igkanal-hint {
  font-size: .76rem;
  color: rgba(255,255,255,.5);
  margin-top: 14px;
  font-style: italic;
}
.igkanal-qr-wrap img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.igkanal-qr-label {
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border-top: 1px solid var(--line);
  text-align: center;
}
.igkanal-qr-label strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
  margin-bottom: 2px;
}
.igkanal-qr-label span {
  font-size: .76rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
}

/* ── CAROUSEL (recenze homepage) ─────────────────── */
.carousel-controls { text-align: right; }
.carousel-nav-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.carousel-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  transition: all .2s;
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.carousel-dots {
  display: flex;
  gap: 6px;
}
.carousel-dots > span {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  transition: background .2s;
}
.carousel-dots > span.active { background: var(--gold); }
.carousel-outer {
  overflow: hidden;
  border-radius: 6px;
}
.carousel-track {
  display: flex;
  transition: transform .5s ease;
}

/* ── ORIGINAL footer (tanecni-vecer.html) ────────── */
.footer {
  background: var(--dark2);
  padding: clamp(40px, 5vw, 60px) 0 24px;
  border-top: 1px solid var(--line);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  font-size: .8rem;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-back-link { color: var(--gold) !important; font-weight: 700; }
.footer-copy {
  text-align: center;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

/* ════════════════════════════════════════════════════
   AKCE — rozšíření (Krok 3): filtr měst,
   badge spolupořadatele, místo na kartě
   ════════════════════════════════════════════════════ */

/* ── Filtr měst (chip tlačítka) ─────────────────────── */
.city-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 clamp(20px, 3vw, 32px);
  padding-bottom: clamp(16px, 2vw, 22px);
  border-bottom: 1px solid var(--line);
}
.city-filter-lbl {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.city-chip {
  font: inherit;
  cursor: pointer;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  color: rgba(255,255,255,.8);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 500;
  transition: all .15s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .02em;
}
.city-chip:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(232,168,32,.4);
  color: #fff;
}
.city-chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0f0f11;
}
.city-chip-cnt {
  font-size: .68rem;
  font-weight: 400;
  opacity: .65;
  background: rgba(255,255,255,.08);
  padding: 1px 7px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}
.city-chip.is-active .city-chip-cnt {
  background: rgba(0,0,0,.18);
  color: #0f0f11;
  opacity: .8;
}

/* ── Badge spolupořadatele ─────────────────────────── */
.ws-spol-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: linear-gradient(135deg, rgba(232,168,32,.12), rgba(232,168,32,.04));
  border: 1px solid rgba(232,168,32,.28);
  color: rgba(255,255,255,.9);
  font-size: .72rem;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: .02em;
  line-height: 1.3;
  text-decoration: none;
  margin-bottom: 2px;
  transition: all .15s ease;
}
a.ws-spol-badge:hover {
  background: rgba(232,168,32,.18);
  border-color: rgba(232,168,32,.5);
  color: #fff;
}
.ws-spol-badge strong {
  color: var(--gold);
  font-weight: 600;
}
.ws-spol-ico {
  font-size: .85rem;
  filter: grayscale(.3);
}

/* ── Místo na kartě ────────────────────────────────── */
.ws-static-mesto-row {
  margin-top: -4px;
}
.ws-static-mesto {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}

/* ── Tag typu akce (kromě barvy z DB) ─────────────── */
.ws-static-tag {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 2px;
  /* color: nastavuje se inline z e.typ_barva */
}

/* ── Loading / Empty stavy ─────────────────────────── */
.ws-loading,
.ws-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(30px, 5vw, 60px) 20px;
  background: rgba(255,255,255,.025);
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  line-height: 1.6;
}
.ws-empty a {
  color: var(--gold);
  text-decoration: none;
}
.ws-empty a:hover {
  text-decoration: underline;
}
.ws-static-kapacita {
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: .04em;
  font-weight: 600;
}

/* ── Responsive úpravy filtru ──────────────────────── */
@media (max-width: 600px) {
  .city-filter {
    gap: 8px;
  }
  .city-chip {
    padding: 6px 12px;
    font-size: .78rem;
  }
  .city-filter-lbl {
    width: 100%;
    margin-bottom: 4px;
  }
}
