@font-face {
    font-family: 'Bricolage Grotesque';
    src: url('fonts/BricolageGrotesque-Variable.ttf') format('truetype');
    font-weight: 200 800;
    font-display: swap;
}

:root {
    --pink: #ff369c;
    --pink-light: #ff63b5;
    --pink-dark: #e92589;
    --pink-bg: #fef0f6;
    --purple: #4b1040;
    --purple-light: #642073;
    --cream: #f5e6c8;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;
    --font: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-w: 1200px;
    --section-py: 100px;
    --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--gray-800); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--gray-900); }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-family: var(--font); font-size: 15px;
    font-weight: 600; text-decoration: none; cursor: pointer; transition: all .25s var(--ease);
    border: 2px solid transparent;
}
.btn-primary { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn-primary:hover { background: var(--pink-dark); border-color: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,54,156,.35); }
.btn-ghost { background: rgba(255,255,255,.15); color: var(--white); border-color: rgba(255,255,255,.4); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.7); }
.btn-outline { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn-outline:hover { background: var(--pink); color: var(--white); }

/* NAV */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--pink); transition: all .3s var(--ease);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(75,16,64,.2); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 44px; width: auto; }
.nav-menu { display: flex; list-style: none; gap: 8px; align-items: center; }
.nav-menu a {
    text-decoration: none; font-weight: 600; font-size: 14px; color: var(--purple);
    padding: 6px 12px; border-radius: 0; transition: all .2s var(--ease);
}
.nav-menu a:hover { background: var(--cream); color: var(--purple); }
.nav-cta { background: var(--purple); color: var(--white) !important; padding: 8px 20px; border-radius: 50px; }
.nav-cta:hover { background: var(--cream); color: var(--purple) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--purple); transition: all .3s; border-radius: 1px; }

/* HERO */
.hero {
    position: relative;
    padding: 100px 0 20px;
    min-height: 0;
    background: var(--pink); color: var(--purple);
    overflow: hidden;
}
.hero .container {
    max-width: 1400px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
}
.hero-title {
    color: var(--purple); margin: 0;
    font-weight: 800; letter-spacing: -.03em;
    align-self: flex-start;
    margin-top: 180px;
    flex: 0 1 auto;
    min-width: 0;
}
.hero-line1 {
    display: block; font-size: clamp(3rem, 7.5vw, 9rem); line-height: .92;
    white-space: nowrap;
}
.hero-line2 {
    display: block; font-size: clamp(2rem, 4.5vw, 5.5rem); line-height: 1.0; margin-top: 8px;
    white-space: nowrap;
}
.hero-symbol {
    flex: 0 0 auto;
    width: clamp(500px, 60vw, 1000px);
    height: auto;
    margin-top: 80px;
    margin-right: -200px;
    pointer-events: none;
    align-self: flex-start;
}

/* INTRO SECTION */
.section-intro {
    background: var(--gray-50);
}
.intro-lead {
    text-align: center; font-size: 17px; line-height: 1.8; color: var(--purple);
    max-width: 680px; margin: 0 auto 48px; opacity: .7;
}
.intro-quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.hero-quote {
    background: var(--white); border-radius: 16px;
    border-left: 4px solid var(--pink); overflow: hidden;
    box-shadow: 0 2px 12px rgba(75,16,64,.06);
}
.hero-quote[open] { background: var(--white); box-shadow: 0 4px 20px rgba(75,16,64,.1); }
.hero-quote-summary {
    list-style: none; cursor: pointer; padding: 24px 28px 22px;
    display: flex; flex-direction: column; gap: 18px;
}
.hero-quote-summary::-webkit-details-marker { display: none; }
.hero-quote-summary::marker { display: none; }
.hero-quote-preview {
    display: block;
    font-size: 14px; line-height: 1.75; color: var(--purple);
    opacity: .82; margin: 0; font-style: italic;
}
.hero-quote-meta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
}
.hero-quote-author {
    font-style: normal; font-weight: 700; font-size: 13px; color: var(--purple); opacity: .9;
}
.hero-quote-toggle {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--pink); background: rgba(255,54,156,.08); border-radius: 999px; padding: 8px 12px;
}
.hero-quote-toggle::after {
    content: '+'; width: 18px; height: 18px; border-radius: 50%;
    border: 1px solid currentColor; display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; line-height: 1;
}
.hero-quote-body { padding: 0 28px 24px; }
.hero-quote-body p {
    font-size: 14px; line-height: 1.75; color: var(--purple);
    opacity: .82; margin: 0; font-style: italic;
}
.hero-quote[open] .hero-quote-preview { display: none; }
.hero-quote[open] .hero-quote-summary { padding-bottom: 16px; }
.hero-quote[open] .hero-quote-toggle::after { content: '−'; }

/* SECTIONS */
.section { padding: var(--section-py) 0; }
.section.section-intro { padding: 32px 0 72px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: rgba(75,16,64,.6); font-size: 17px; line-height: 1.6; max-width: 640px; margin: 0 auto; }
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.7); }

/* LUKÁŠ */
.section-lukas { background: var(--gray-50); }
.lukas-grid { display: grid; grid-template-columns: 400px 1fr; gap: 56px; align-items: stretch; }
.lukas-left { display: flex; flex-direction: column; }
.lukas-photo { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,.12); flex: 1; min-height: 400px; }
.lukas-photo img {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 60% 15%;
    display: block;
}
.lukas-content h2 { color: var(--purple); margin-bottom: 24px; font-size: clamp(2rem,3.5vw,2.8rem); }
.lukas-countdown {
    display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.countdown-item {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background: var(--white); border-radius: 12px; padding: 16px 12px; min-width: 100px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06); flex: 1;
}
.countdown-num { font-size: 2rem; font-weight: 800; color: var(--pink); line-height: 1; }
.countdown-label { font-size: 12px; color: var(--gray-500); margin-top: 6px; line-height: 1.35; }
.lukas-social {
    display: flex; align-items: center; gap: 12px; margin-top: 28px; flex-wrap: wrap;
}
.lukas-social-label {
    font-size: 13px; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .08em;
}
.lukas-social-link {
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    color: var(--white); font-size: 14px; font-weight: 600;
    padding: 10px 20px; border-radius: 28px; background: var(--pink);
    box-shadow: 0 3px 12px rgba(255,54,156,.3); transition: all .2s;
}
.lukas-social-link:hover { background: var(--purple); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(75,16,64,.3); }
.lukas-social-link svg { flex-shrink: 0; }
.lukas-quote {
    font-size: 16px; line-height: 1.8; color: var(--gray-700); border-left: 3px solid var(--pink);
    padding-left: 24px; margin-bottom: 16px; font-style: italic;
}
.lukas-formal { font-weight: 600; color: var(--purple); }

/* CV LINK */
.lukas-cv-link { margin-top: 16px; text-align: center; }

/* VIDEO */
.section-video { background: var(--gray-50); }
.video-wrap {
    max-width: 800px; margin: 0 auto; aspect-ratio: 16/9;
    border-radius: 20px; overflow: hidden; position: relative;
}
.video-wrap iframe { width: 100%; height: 100%; border: none; }
.video-placeholder {
    width: 100%; height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px;
    background: var(--white); border: 2px dashed var(--gray-200);
    border-radius: 20px; color: var(--purple); opacity: .5;
}
.video-placeholder svg { opacity: .4; }
.video-placeholder p { font-size: 15px; font-weight: 600; }

/* TABS (shared) */
.tab-btn {
    padding: 10px 20px; border-radius: 50px; border: 1px solid var(--gray-200);
    background: var(--white); font-family: var(--font); font-size: 13px; font-weight: 600;
    color: var(--gray-600); cursor: pointer; transition: all .2s var(--ease);
    display: inline-flex; align-items: center; gap: 6px;
}
.tab-btn:hover { border-color: var(--pink); color: var(--pink); }
.tab-btn.active { background: var(--pink); border-color: var(--pink); color: var(--white); }
.tab-btn-badge {
    font-size: 11px; background: rgba(255,255,255,.25); padding: 2px 6px;
    border-radius: 10px; font-weight: 700;
}
.tab-btn.active .tab-btn-badge { background: rgba(255,255,255,.3); }

/* CAMPAIGN COUNTDOWN */
.kampan-countdown {
    margin-top: 32px; text-align: center;
    background: linear-gradient(135deg, var(--pink), #d1206e);
    border-radius: 20px; padding: 28px 24px 20px;
    box-shadow: 0 8px 32px rgba(255,54,156,.25);
}
.kampan-hook {
    font-size: clamp(1rem, 2vw, 1.2rem); font-weight: 700;
    color: var(--white); margin-bottom: 20px; line-height: 1.3;
    letter-spacing: -.01em;
}
.kampan-timer {
    display: flex; align-items: center; justify-content: center; gap: 6px;
}
.kampan-unit {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.kampan-num {
    font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800;
    color: var(--white); line-height: 1;
    font-variant-numeric: tabular-nums;
    background: rgba(255,255,255,.15); border-radius: 12px;
    min-width: 64px; padding: 10px 8px;
}
.kampan-label {
    font-size: 10px; font-weight: 600; text-transform: uppercase;
    letter-spacing: .08em; color: rgba(255,255,255,.65);
}
.kampan-sep {
    font-size: 1.8rem; font-weight: 700; color: rgba(255,255,255,.4);
    margin: 0 2px; padding-bottom: 20px;
}
.kampan-date {
    margin-top: 16px; font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,.5); letter-spacing: .02em;
}
.kampan-social {
    display: flex; justify-content: center; gap: 12px;
    margin-top: 14px; padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.kampan-social a {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,.15); color: var(--white);
    transition: all .2s var(--ease);
}
.kampan-social a:hover {
    background: var(--white); color: var(--pink);
    transform: scale(1.1);
}

/* NAŠI LIDÉ */
.section-lide { background: var(--gray-50); }
.lide-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.lide-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.lide-card {
    position: relative; background: var(--gray-50); border-radius: 16px;
    display: grid; grid-template-columns: 130px 1fr; overflow: hidden;
    transition: all .3s var(--ease); border: 1px solid var(--gray-100);
}
.lide-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.lide-num {
    position: absolute; top: 8px; right: 12px; font-size: 2.8rem; font-weight: 800;
    color: var(--pink); opacity: .35; line-height: 1;
    -webkit-text-stroke: 1px rgba(255,54,156,.15);
}
.lide-photo { width: 130px; min-height: 160px; overflow: hidden; flex-shrink: 0; }
.lide-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lide-photo--empty {
    display: flex; align-items: center; justify-content: center;
    background: var(--gray-200); color: var(--gray-400); font-size: 28px; font-weight: 700;
}
.lide-info { padding: 20px 22px; display: flex; flex-direction: column; justify-content: center; position: relative; }
.lide-card h3 { font-size: 17px; margin-bottom: 4px; color: var(--gray-900); }
.lide-role {
    font-size: 11px; color: var(--pink); font-weight: 700; margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: .08em;
}
.lide-quote { font-size: 13px; color: var(--gray-500); line-height: 1.6; font-style: italic; text-wrap: pretty; }
.lide-quote cite { display: block; font-style: normal; font-size: 11px; color: var(--gray-400); margin-top: 2px; }
.lide-card--placeholder { opacity: .5; }
.lide-card--clickable { cursor: pointer; }

/* PROGRAM 2026 */
.section-program2026 { background: var(--gray-50); }
.section-program2026 .section-header h2 { color: var(--gray-900); }
.section-program2026 .section-header p { color: var(--gray-500); }
.program26-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.program26-chapter {
    background: var(--white); border-radius: 10px; border: 1px solid var(--gray-200);
    overflow: hidden; transition: all .25s var(--ease);
}
.program26-chapter[open] {
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border-color: var(--pink); grid-column: 1 / -1;
}
.program26-summary {
    list-style: none; cursor: pointer; padding: 14px 18px;
    display: flex; align-items: center; gap: 10px; font-weight: 600;
    user-select: none;
}
.program26-summary::-webkit-details-marker { display: none; }
.program26-summary::marker { display: none; }
.program26-icon { font-size: 1.15rem; flex-shrink: 0; }
.program26-title { flex: 1; font-size: 15px; color: var(--gray-800); }
.program26-count {
    font-size: 11px; font-weight: 700; color: var(--pink);
    background: var(--pink-bg); border-radius: 50px; padding: 3px 10px;
    white-space: nowrap;
}
.program26-chevron {
    flex-shrink: 0; transition: transform .25s var(--ease); color: var(--gray-400);
    width: 16px; height: 16px;
}
.program26-chapter[open] .program26-chevron { transform: rotate(180deg); }
.program26-body {
    padding: 0 24px 28px;
    display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px;
}
.program26-intro {
    font-size: 14px; line-height: 1.75; color: var(--gray-600);
    border-left: 3px solid var(--pink); padding-left: 16px; margin-bottom: 24px;
    grid-column: 1 / -1;
}
.program26-group { min-width: 0; }
.program26-sub {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; color: var(--purple); margin: 0 0 8px;
}
.program26-items {
    list-style: none; padding: 0; display: flex; flex-direction: column; gap: 5px;
}
.program26-items li {
    font-size: 13.5px; line-height: 1.65; color: var(--gray-700);
    padding-left: 16px; position: relative;
}
.program26-items li::before {
    content: ''; position: absolute; left: 0; top: 9px;
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--pink); opacity: .45;
}
.program26-body--cols3 { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 1024px) {
    .program26-body--cols3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .program26-grid { grid-template-columns: 1fr; }
    .program26-body, .program26-body--cols3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .program26-summary { padding: 12px 14px; gap: 8px; }
    .program26-title { font-size: 14px; }
    .program26-body { padding: 0 16px 20px; }
}

/* EMBEDDED CHAT in program section */
.program26-chat-embed {
    margin-top: 48px; border-radius: 16px; overflow: hidden;
    background: var(--white); border: 1px solid var(--gray-200);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.program26-chat-header {
    display: flex; gap: 14px; align-items: center; padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}
.program26-chat-avatar {
    width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
    object-fit: cover; object-position: center top;
    border: 2px solid var(--pink);
}
.program26-chat-header h3 { font-size: 16px; color: var(--gray-900); margin-bottom: 2px; }
.program26-chat-header p { font-size: 13px; color: var(--gray-500); margin: 0; line-height: 1.4; }
.program26-chat-embed .chat-messages {
    padding: 16px 24px; display: flex; flex-direction: column; gap: 10px;
    max-height: 340px; overflow-y: auto; min-height: 100px;
}
.program26-chat-embed .chat-msg {
    padding: 10px 14px; border-radius: 14px; font-size: 14px;
    line-height: 1.55; max-width: 85%; word-wrap: break-word;
}
.program26-chat-embed .chat-msg--bot {
    background: var(--gray-50); color: var(--gray-800);
    align-self: flex-start; border-bottom-left-radius: 4px;
}
.program26-chat-embed .chat-msg--user {
    background: var(--pink); color: var(--white);
    align-self: flex-end; border-bottom-right-radius: 4px;
}
.program26-chat-embed .chat-msg--loading { opacity: .5; }
.program26-chat-embed .chat-input {
    display: flex; gap: 8px; padding: 14px 24px 20px;
    border-top: 1px solid var(--gray-100);
}
.program26-chat-embed .chat-input input {
    flex: 1; border: 1px solid var(--gray-200); border-radius: 50px;
    padding: 11px 18px; font-size: 14px; font-family: var(--font);
    background: var(--gray-50); color: var(--gray-800);
    outline: none; transition: border-color .2s;
}
.program26-chat-embed .chat-input input::placeholder { color: var(--gray-400); }
.program26-chat-embed .chat-input input:focus { border-color: var(--pink); background: var(--white); }
.program26-chat-embed .chat-input button {
    width: 42px; height: 42px; border-radius: 50%; border: none;
    background: var(--pink); color: var(--white); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background .2s;
}
.program26-chat-embed .chat-input button:hover { background: var(--pink-dark); }
.chat-avatar {
    width: 28px; height: 28px; border-radius: 50%; object-fit: cover;
    object-position: center top; flex-shrink: 0; margin-right: 8px;
    margin-top: 2px;
}
.chat-msg--bot { display: flex; align-items: flex-start; gap: 0; }
.chat-msg--bot span { flex: 1; }
.chat-msg--bot p { margin: 0 0 6px; }
.chat-msg--bot p:last-child { margin-bottom: 0; }
.chat-msg--bot strong { color: var(--pink); font-weight: 700; }
.chat-msg--bot ol { margin: 4px 0; padding-left: 20px; }
.chat-msg--bot li { margin-bottom: 3px; }
.chat-msg--bot a { color: var(--pink); text-decoration: underline; text-underline-offset: 2px; }
.chat-msg--bot a:hover { color: var(--pink-dark); }

/* FLOATING CHATBOT */
#chatWidget {
    position: fixed; bottom: 24px; right: 24px; z-index: 9000;
    transition: opacity .3s, transform .3s;
}
#chatWidget.chat-fab-hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.chat-fab {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 20px 12px 12px; border-radius: 50px; border: none;
    background: var(--pink); color: var(--white); cursor: pointer;
    box-shadow: 0 8px 32px rgba(255,54,156,.4);
    font-family: var(--font); font-size: 15px; font-weight: 700;
    transition: all .3s var(--ease);
    animation: fabPulse 3s ease-in-out infinite;
}
.chat-fab-avatar {
    width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
    border: 3px solid rgba(255,255,255,.6); flex-shrink: 0;
}
.chat-fab-label {
    max-width: 0; overflow: hidden; white-space: nowrap;
    transition: max-width .4s var(--ease), opacity .3s;
    opacity: 0;
}
.chat-fab--show-label .chat-fab-label { max-width: 160px; opacity: 1; }
.chat-fab:hover { transform: scale(1.08); box-shadow: 0 10px 40px rgba(255,54,156,.55); }
.chat-fab.active { opacity: 0; pointer-events: none; transform: scale(.8); }
@keyframes fabPulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(255,54,156,.4); }
    50% { box-shadow: 0 8px 32px rgba(255,54,156,.6), 0 0 0 10px rgba(255,54,156,.15); }
}
.chat-window {
    display: none; position: absolute; bottom: 68px; right: 0;
    width: 380px; max-height: 520px; background: var(--white);
    border-radius: 16px; box-shadow: 0 12px 48px rgba(75,16,64,.2);
    flex-direction: column; overflow: hidden;
    animation: chatSlideUp .3s var(--ease);
}
.chat-window.active { display: flex; }
@keyframes chatSlideUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.chat-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; background: var(--purple); color: var(--white);
    font-weight: 700; font-size: 14px;
}
.chat-header-info {
    display: flex; align-items: center; gap: 10px;
}
.chat-header-avatar {
    width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--pink);
}
.chat-header-info strong { display: block; font-size: 14px; }
.chat-header-info small { font-size: 11px; font-weight: 400; opacity: .7; }
.chat-close {
    background: none; border: none; color: var(--white); font-size: 22px;
    cursor: pointer; padding: 0 4px; line-height: 1;
}
.chat-window .chat-messages {
    flex: 1; overflow-y: auto; padding: 16px; display: flex;
    flex-direction: column; gap: 10px; min-height: 280px; max-height: 380px;
}
.chat-window .chat-msg {
    padding: 10px 14px; border-radius: 14px; font-size: 14px;
    line-height: 1.55; max-width: 85%; word-wrap: break-word;
}
.chat-window .chat-msg--bot {
    background: var(--gray-100); color: var(--gray-800);
    align-self: flex-start; border-bottom-left-radius: 4px;
}
.chat-window .chat-msg--user {
    background: var(--pink); color: var(--white);
    align-self: flex-end; border-bottom-right-radius: 4px;
}
.chat-window .chat-msg--loading { opacity: .5; }
.chat-cursor {
    display: inline-block; width: 2px; height: 1em;
    background: var(--pink); margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink .6s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.chat-window .chat-input {
    display: flex; gap: 8px; padding: 12px 14px;
    border-top: 1px solid var(--gray-100);
}
.chat-window .chat-input input {
    flex: 1; border: 1px solid var(--gray-200); border-radius: 50px;
    padding: 10px 16px; font-size: 14px; font-family: var(--font);
    outline: none; transition: border-color .2s;
}
.chat-window .chat-input input:focus { border-color: var(--pink); }
.chat-window .chat-input button {
    width: 40px; height: 40px; border-radius: 50%; border: none;
    background: var(--pink); color: var(--white); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background .2s;
}
.chat-window .chat-input button:hover { background: var(--pink-dark); }
@media (max-width: 600px) {
    .program26-chat-header { padding: 20px 20px 0; gap: 12px; }
    .program26-chat-embed .chat-messages { padding: 16px 20px; }
    .program26-chat-embed .chat-input { padding: 12px 20px 18px; }
}
@media (max-width: 480px) {
    #chatWidget { bottom: 16px; right: 16px; }
    .chat-window { width: calc(100vw - 32px); right: 0; bottom: 64px; }
}

/* KANDIDÁT MODAL */
.kandidat-modal {
    display: none; position: fixed; inset: 0; z-index: 9999;
    align-items: center; justify-content: center;
}
.kandidat-modal.active { display: flex; }
.kandidat-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(75,16,64,.65); backdrop-filter: blur(6px);
}
.kandidat-modal-content {
    position: relative; background: var(--white); border-radius: 20px;
    max-width: 720px; width: 92%; max-height: 90vh; overflow-y: auto;
    box-shadow: 0 32px 80px rgba(75,16,64,.3);
    animation: modalSlideUp .35s var(--ease);
}
@keyframes modalSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.kandidat-modal-close {
    position: sticky; top: 12px; float: right; margin: 12px 12px 0 0;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gray-100); border: none; font-size: 24px;
    cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center;
    color: var(--gray-600); transition: all .2s;
}
.kandidat-modal-close:hover { background: var(--pink); color: var(--white); }
.kandidat-modal-body { padding: 40px 40px 32px; }
.kandidat-modal-header {
    display: flex; gap: 28px; align-items: flex-start; margin-bottom: 32px;
}
.kandidat-modal-photo {
    width: 180px; min-height: 220px; flex-shrink: 0;
    border-radius: 14px; overflow: hidden; background: var(--gray-100);
}
.kandidat-modal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kandidat-modal-intro { flex: 1; }
.kandidat-modal-num {
    font-size: 3rem; font-weight: 800; color: var(--pink); opacity: .3; line-height: 1;
}
.kandidat-modal-intro h2 { font-size: 1.5rem; margin: 4px 0 6px; color: var(--gray-900); }
.kandidat-modal-role {
    font-size: 12px; color: var(--pink); font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
}
.kandidat-modal-quote {
    font-size: 15px; font-style: italic; color: var(--gray-600);
    border-left: 3px solid var(--pink); padding-left: 14px; margin: 0; line-height: 1.6;
    text-wrap: pretty;
}
.kandidat-modal-quote cite { display: block; font-style: normal; font-size: 13px; color: var(--gray-400); margin-top: 4px; }
.kandidat-modal-section {
    margin-bottom: 28px; padding: 20px 24px; border-radius: 12px;
    background: var(--gray-50); border-left: 3px solid var(--pink);
}
.kandidat-modal-section h3 {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; color: var(--pink); margin-bottom: 10px;
}
.kandidat-modal-section p {
    font-size: 15px; line-height: 1.8; color: var(--gray-700); margin: 0;
    text-wrap: pretty;
}
@media (max-width: 600px) {
    .kandidat-modal-body { padding: 24px 20px 20px; }
    .kandidat-modal-header { flex-direction: column; gap: 16px; }
    .kandidat-modal-photo { width: 100%; min-height: 0; aspect-ratio: 3/4; max-width: 280px; }
}

/* SECTION EMPHASIS */
.section-header--accent { position: relative; }
.text-highlight {
    background-color: var(--cream); padding: 0 .12em; line-height: 1;
    -webkit-box-decoration-break: clone; box-decoration-break: clone;
}

/* INVESTICE */
.section-investice { background: var(--white); padding-bottom: 80px; }
.investice-summary {
    display: flex; justify-content: center; gap: 32px; margin-bottom: 40px; flex-wrap: wrap;
}
.investice-stat {
    display: flex; flex-direction: column; align-items: center; text-align: center;
}
.investice-stat-num { font-size: 2.5rem; font-weight: 800; color: var(--pink); line-height: 1; }
.investice-stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }
.investice-map-wrap {
    width: 100%; max-width: 1400px; margin: 0 auto 40px; padding: 0 24px;
}
#investiceMap {
    width: 100%; height: 520px; border-radius: 20px; overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,.1); border: 1px solid var(--gray-200);
    z-index: 1;
}
.investice-legend {
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 32px;
}
.legend-item {
    display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600);
}
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.investice-cta { text-align: center; margin-bottom: 56px; }
.investice-cta .btn { background: var(--pink); color: #fff; border-color: var(--pink); font-weight: 700; font-size: 15px; padding: 14px 32px; }
.investice-cta .btn:hover { background: var(--purple); border-color: var(--purple); }

.map-marker {
    border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 8px rgba(0,0,0,.3); border: 2.5px solid #fff;
}
.map-marker::after {
    content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%;
}
.leaflet-marker-icon { background: transparent !important; border: none !important; }
.leaflet-popup-content-wrapper { border-radius: 12px !important; box-shadow: 0 8px 24px rgba(0,0,0,.15) !important; }
.leaflet-popup-content { margin: 0 !important; padding: 16px !important; font-family: var(--font) !important; font-size: 13px !important; line-height: 1.5 !important; }
.leaflet-popup-content .popup-title { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; display: block; }
.leaflet-popup-content .popup-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.leaflet-popup-content .popup-badge { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 20px; display: inline-block; }
.leaflet-popup-content .popup-budget { font-size: 14px; font-weight: 700; color: var(--gray-800); }
.leaflet-popup-content .popup-district { font-size: 12px; color: var(--gray-500); }
.leaflet-popup-content .popup-detail-link {
    display: block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--pink);
    text-decoration: none;
}
.leaflet-popup-content .popup-detail-link:hover { text-decoration: underline; }

/* VIZE */
.section-vize { background: var(--pink); color: var(--purple); padding: var(--section-py) 0; position: relative; overflow: hidden; }
.section-vize::before {
    content: ''; position: absolute; bottom: -10%; left: -5%; width: 45%; aspect-ratio: 28/22;
    background: url('../img/prvek_slk.svg') no-repeat center/contain;
    opacity: .06; pointer-events: none;
}
.vize-main-quote { text-align: center; margin-bottom: 64px; }
.vize-main-quote p { font-size: clamp(1.3rem, 2.5vw, 2rem); line-height: 1.5; font-weight: 600; }
.vize-main-quote strong { color: var(--purple); background-color: var(--cream); padding: 0 4px; line-height: 1; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.vize-main-quote cite { display: block; margin-top: 20px; font-style: normal; font-size: 15px; opacity: .7; }
.vize-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.vize-col h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--purple); }
.vize-col p { color: rgba(75,16,64,.85); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }

/* PROGRAM */
.section-program { background: var(--white); }
.program-intro { text-align: center; margin-bottom: 48px; font-size: 17px; color: rgba(75,16,64,.6); }
.program-intro strong { color: var(--pink); }

.program-stats {
    display: flex; justify-content: center; gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.stat-card {
    display: flex; flex-direction: column; align-items: center; padding: 24px 32px;
    border-radius: 16px; min-width: 140px; text-align: center;
}
.stat-card--splneno { background: #ecfdf5; }
.stat-card--castecne { background: #fffbeb; }
.stat-card--nesplneno { background: #fef2f2; }
.stat-card--neznamo { background: var(--gray-100); }
.stat-num { font-size: 2.2rem; font-weight: 800; line-height: 1; }
.stat-card--splneno .stat-num { color: #16a34a; }
.stat-card--castecne .stat-num { color: #d97706; }
.stat-card--nesplneno .stat-num { color: #dc2626; }
.stat-card--neznamo .stat-num { color: var(--gray-400); }
.stat-label { font-size: 13px; color: var(--gray-500); margin-top: 6px; }

.program-tabs {
    display: flex; justify-content: center; gap: 6px; margin-bottom: 40px; flex-wrap: wrap;
}
.program-tabs .tab-btn { font-size: 12px; padding: 8px 14px; }
.program-tabs .tab-btn-name { white-space: nowrap; }

.program-list { max-width: 900px; margin: 0 auto 40px; }
.program-category { margin-bottom: 32px; }
.program-category-title {
    font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    color: var(--purple); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-100);
}
.program-item {
    display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
    border-bottom: 1px solid var(--gray-50); font-size: 14px; line-height: 1.6;
}
.program-item:last-child { border-bottom: none; }
.program-status {
    flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 2px;
}
.status-splneno { background: #dcfce7; color: #16a34a; }
.status-castecne { background: #fef3c7; color: #d97706; }
.status-nesplneno { background: #fee2e2; color: #dc2626; }
.status-neznamo { background: var(--gray-100); color: var(--gray-400); }
.program-text { color: var(--gray-700); }

/* KALENDÁŘ */
.section-calendar { background: var(--gray-50); }

.cal-events { max-width: 800px; margin: 0 auto; }
.cal-loading, .cal-empty {
    text-align: center; padding: 48px 24px; color: var(--gray-400); font-size: 16px;
}
.cal-empty p:first-child { font-weight: 600; font-size: 17px; color: var(--gray-500); margin-bottom: 4px; }

.cal-month-group { margin-bottom: 12px; }
.cal-month-title {
    font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    color: #fff; padding: 0 0 10px; margin-bottom: 12px;
    border-bottom: 2px solid rgba(255,255,255,.3);
}

.cal-event {
    display: flex; gap: 20px; align-items: flex-start;
    background: var(--white); border-radius: 16px; padding: 20px 24px;
    margin-bottom: 10px; transition: box-shadow .2s var(--ease), transform .2s var(--ease);
    border: 1px solid var(--gray-100); position: relative;
}
.cal-event:hover { box-shadow: 0 8px 24px rgba(75,16,64,.08); transform: translateY(-2px); }
.cal-event:has(.cal-add-menu.open) { z-index: 30; }

.cal-event-date {
    flex-shrink: 0; width: 56px; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 2px;
    padding-top: 2px;
}
.cal-event-day {
    font-size: 2rem; font-weight: 800; line-height: 1; color: var(--pink);
}
.cal-event-dow {
    font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
    color: var(--gray-400);
}

.cal-event-body { flex: 1; min-width: 0; }
.cal-event-title {
    font-size: 17px; font-weight: 700; color: var(--purple); margin-bottom: 6px;
    line-height: 1.3;
}
.cal-event-meta {
    display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: var(--gray-500);
}
.cal-event-meta span {
    display: inline-flex; align-items: center; gap: 5px;
}
.cal-event-meta svg { opacity: .5; flex-shrink: 0; }
.cal-event-desc {
    margin-top: 8px; font-size: 14px; line-height: 1.5; color: var(--gray-500);
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.cal-add {
    margin-top: 10px;
    position: relative;
}
.cal-add-btn {
    display: inline-flex; align-items: center; gap: 5px;
    background: none; border: 1px solid var(--gray-200); border-radius: 8px;
    padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--pink);
    cursor: pointer; font-family: var(--font); transition: all .2s var(--ease);
}
.cal-add-btn:hover {
    background: var(--pink); color: var(--white); border-color: var(--pink);
}
.cal-add-btn svg { flex-shrink: 0; }
.cal-add-menu {
    display: none; position: absolute; left: 0; bottom: calc(100% + 6px);
    background: var(--white); border: 1px solid var(--gray-100); border-radius: 12px;
    box-shadow: 0 12px 40px rgba(75,16,64,.18); z-index: 40;
    min-width: 210px; overflow: hidden;
}
.cal-add-menu.open { display: block; }
.cal-add-menu a {
    display: flex; align-items: center; gap: 8px;
    padding: 12px 18px; font-size: 14px; color: var(--gray-700);
    text-decoration: none; transition: background .15s;
    border-bottom: 1px solid var(--gray-50);
}
.cal-add-menu a:last-child { border-bottom: none; }
.cal-add-menu a:hover { background: var(--pink-bg); color: var(--pink); }

/* CALENDAR VIEW TOGGLE */
.cal-view-toggle {
    display: flex; justify-content: center; gap: 4px; margin-bottom: 28px;
    background: rgba(75,16,64,.15); border-radius: 10px; padding: 4px;
    max-width: 260px; margin-left: auto; margin-right: auto;
}
.cal-toggle-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px; border: none; border-radius: 8px;
    font-size: 13px; font-weight: 600; color: rgba(75,16,64,.5);
    background: transparent; cursor: pointer; font-family: var(--font);
    transition: all .2s var(--ease); flex: 1; justify-content: center;
}
.cal-toggle-btn.active {
    background: var(--white); color: var(--purple);
    box-shadow: 0 2px 8px rgba(75,16,64,.15);
}
.cal-toggle-btn:hover:not(.active) { color: var(--purple); }

/* CALENDAR GRID VIEW */
.cal-grid-wrap {
    max-width: 640px; margin: 0 auto; position: relative;
    background: var(--white); border-radius: 20px;
    padding: 32px; box-shadow: 0 8px 40px rgba(75,16,64,.12);
}
.cal-grid-nav {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px;
}
.cal-grid-nav h3 {
    font-size: 20px; font-weight: 800; color: var(--purple);
    text-transform: capitalize;
}
.cal-grid-nav button {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border: 1px solid var(--gray-200);
    border-radius: 10px; background: var(--white); cursor: pointer;
    color: var(--purple); transition: all .2s var(--ease);
}
.cal-grid-nav button:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }
.cal-grid-header {
    display: grid; grid-template-columns: repeat(7, 1fr); text-align: center;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
    color: var(--gray-400); margin-bottom: 8px; padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-100);
}
.cal-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px;
}
.cal-grid-cell {
    border-radius: 12px; padding: 8px 4px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 52px;
    font-size: 15px; font-weight: 600; color: var(--gray-300);
    position: relative; cursor: default; transition: all .15s var(--ease);
}
.cal-grid-cell.current-month { color: var(--purple); }
.cal-grid-cell.today {
    background: var(--gray-50); font-weight: 800;
    box-shadow: inset 0 0 0 2px var(--gray-200);
}
.cal-grid-cell.has-event {
    background: linear-gradient(135deg, rgba(255,54,156,.08), rgba(255,54,156,.15));
    cursor: pointer; border: 1.5px solid rgba(255,54,156,.25);
}
.cal-grid-cell.has-event.today {
    background: linear-gradient(135deg, rgba(255,54,156,.12), rgba(255,54,156,.22));
    box-shadow: inset 0 0 0 2px var(--pink);
}
.cal-grid-cell.has-event:hover,
.cal-grid-cell.has-event.active {
    background: var(--pink); color: var(--white);
    border-color: var(--pink); transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(255,54,156,.3);
}
.cal-grid-cell.has-event:hover .cal-grid-dot,
.cal-grid-cell.has-event.active .cal-grid-dot { background: var(--white); }
.cal-grid-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--pink); margin-top: 3px;
    transition: background .15s;
}
.cal-grid-popup {
    display: none; position: absolute; z-index: 50;
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: 14px; box-shadow: 0 12px 40px rgba(75,16,64,.2);
    padding: 16px 20px; width: 280px; text-align: left;
}
.cal-grid-popup.open { display: block; }
.cal-grid-popup-close {
    position: absolute; top: 8px; right: 10px; background: none; border: none;
    font-size: 18px; color: var(--gray-400); cursor: pointer; line-height: 1;
    padding: 4px;
}
.cal-grid-popup-close:hover { color: var(--purple); }
.cal-grid-popup-event { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-100); }
.cal-grid-popup-event:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.cal-grid-popup-title {
    font-size: 15px; font-weight: 700; color: var(--purple); margin-bottom: 4px; line-height: 1.3;
}
.cal-grid-popup-time {
    font-size: 12px; color: var(--gray-500); margin-bottom: 8px;
}
.cal-grid-popup-add {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 11px; font-weight: 600; color: var(--pink);
    text-decoration: none; padding: 4px 10px;
    border: 1px solid rgba(255,54,156,.25); border-radius: 6px;
    transition: all .15s var(--ease);
}
.cal-grid-popup-add:hover {
    background: var(--pink); color: var(--white); border-color: var(--pink);
}
.cal-grid-empty {
    grid-column: 1 / -1; text-align: center; padding: 32px 16px;
    color: var(--gray-400); font-size: 14px;
}

.cal-footer { text-align: center; margin-top: 32px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cal-footer .btn-primary { background: var(--white); color: var(--pink); border-color: var(--white); }
.cal-footer .btn-primary:hover { background: var(--cream); border-color: var(--cream); color: var(--purple); }
.cal-footer .btn-outline { color: var(--white); border-color: var(--white); }
.cal-footer .btn-outline:hover { background: var(--white); color: var(--pink); }

@media (max-width: 640px) {
    .cal-event { padding: 16px; gap: 14px; }
    .cal-event-date { width: 44px; }
    .cal-event-day { font-size: 1.6rem; }
    .cal-event-title { font-size: 15px; }
    .cal-grid-wrap { padding: 20px 16px; border-radius: 16px; }
    .cal-grid-cell { min-height: 40px; font-size: 13px; padding: 6px 2px; }
    .cal-grid-dot { width: 4px; height: 4px; }
    .cal-grid-nav h3 { font-size: 16px; }
    .cal-grid-tooltip { min-width: 160px; padding: 10px 12px; }
    .cal-footer { flex-direction: column; align-items: center; }
    .cal-footer .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ZAPOJTE SE */
.section-zapojte { background: var(--pink); color: var(--purple); position: relative; overflow: hidden; }
.section-zapojte::before {
    content: ''; position: absolute; top: -15%; right: -8%; width: 40%; aspect-ratio: 28/22;
    background: url('../img/prvek_slk.svg') no-repeat center/contain;
    opacity: .06; pointer-events: none;
}
.section-zapojte .section-header p { color: var(--purple); opacity: .75; }
.zapojte-desc { text-align: center; font-size: 17px; color: var(--purple); opacity: .8; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.zapojte-cards {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    max-width: 800px; margin: 0 auto 40px;
}
.zapojte-card { flex: 0 1 auto; min-width: 200px; }
.zapojte-card {
    display: flex; align-items: center; justify-content: center; gap: 16px; text-decoration: none; color: var(--purple);
    padding: 20px 24px; background: rgba(255,255,255,.92); border-radius: 14px;
    transition: all .25s; font-size: 15px; font-weight: 600;
    box-shadow: 0 2px 12px rgba(75,16,64,.1);
}
.zapojte-card:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(75,16,64,.15); }
.zapojte-card svg { flex-shrink: 0; color: var(--purple); opacity: .6; }
.zapojte-social-label {
    text-align: center; font-size: 14px; font-weight: 600; letter-spacing: .03em;
    text-transform: uppercase; color: var(--purple); opacity: .55; margin-bottom: 12px;
}
.zapojte-subsection-label {
    text-align: center; font-size: 17px; font-weight: 400; color: var(--purple);
    opacity: .8; margin: 48px auto 20px; max-width: 600px;
}
.zapojte-subsection-label:first-of-type { margin-top: 0; }
.zapojte-social {
    display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.zapojte-social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--purple); color: var(--white);
    text-decoration: none; transition: all .25s;
}
.zapojte-social-icon:hover { background: var(--white); color: var(--purple); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(75,16,64,.2); }

/* FOOTER */
.footer { background: var(--purple); color: var(--white); }
.footer-top { padding: 48px 0 32px; }
.footer-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.footer-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-nav a {
    font-size: 13px; font-weight: 600; color: var(--white); text-decoration: none;
    transition: color .2s; opacity: .6;
}
.footer-nav a:hover { opacity: 1; color: var(--pink); }
.footer-contact { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-contact a {
    font-size: 13px; color: var(--white); text-decoration: none; opacity: .6; transition: all .2s;
}
.footer-contact a:hover { opacity: 1; color: var(--pink); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { color: var(--white); opacity: .5; transition: all .2s; }
.footer-social a:hover { opacity: 1; color: var(--pink); }
.footer-bottom {
    padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12);
    font-size: 12px; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--pink); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero { padding: 100px 0 40px; }
    .hero .container { padding: 0 32px; }
    .hero-title { margin-top: 120px; }
    .hero-symbol {
        width: clamp(420px, 55vw, 640px);
        height: auto;
        margin-top: 60px;
        margin-right: -80px;
    }
    .intro-quotes { grid-template-columns: 1fr; }
    .lukas-grid { grid-template-columns: 1fr; }
    .lukas-left { max-width: 400px; margin: 0 auto; }
    .lukas-photo { min-height: unset; }
    .lukas-photo img { position: static; aspect-ratio: 3/4; height: auto; }
    .cv-columns { grid-template-columns: 1fr; gap: 32px; }
    .lide-grid { grid-template-columns: 1fr; }
    .vize-columns { grid-template-columns: 1fr; }
    .zapojte-cards { flex-direction: column; align-items: center; max-width: 480px; margin-left: auto; margin-right: auto; }
    .zapojte-card { width: 100%; }
    .footer-inner { justify-content: center; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-contact { justify-content: center; }
}

@media (max-width: 768px) {
    :root { --section-py: 64px; }
    .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--pink); flex-direction: column; padding: 16px 24px; gap: 0; box-shadow: 0 12px 32px rgba(75,16,64,.2); }
    .nav-menu.active { display: flex; }
    .nav-menu a { padding: 12px 0; border-bottom: 1px solid rgba(75,16,64,.15); font-size: 15px; border-radius: 0; }
    .nav-menu a:hover { background: transparent; }
    .nav-cta { margin-top: 8px; text-align: center; display: block; border-bottom: none !important; }
    .nav-toggle { display: flex; }
    .hero { padding: 90px 0 30px; }
    .hero .container { flex-direction: column; padding: 0 24px; gap: 32px; align-items: flex-start; text-align: left; }
    .hero-title { margin-top: 30px; align-self: flex-start; }
    .hero-line1 { white-space: normal; font-size: clamp(2.5rem, 12vw, 4.5rem); }
    .hero-line2 { font-size: clamp(1.75rem, 8vw, 3rem); }
    .hero-symbol {
        width: clamp(280px, 85vw, 480px);
        height: auto;
        margin: 0 auto;
        align-self: center;
    }
    .intro-lead { font-size: 15px; margin-bottom: 32px; }
    .intro-quotes { grid-template-columns: 1fr; gap: 16px; }
    .hero-quote-summary { padding: 20px 24px 18px; gap: 14px; }
    .hero-quote-body { padding: 0 24px 20px; }
    .hero-quote-preview,
    .hero-quote-body p { font-size: 14px; }
    .kampan-countdown { padding: 24px 20px 20px; max-width: 100%; }
    .kampan-num { font-size: 1.6rem; min-width: 48px; padding: 8px 6px; }
    .kampan-sep { font-size: 1.2rem; }
    .kampan-hook { font-size: .95rem; }
    .lukas-countdown { gap: 6px; }
    .countdown-item { min-width: 80px; padding: 12px 8px; }
    .countdown-num { font-size: 1.5rem; }
    .lukas-social { gap: 8px; flex-wrap: wrap; justify-content: center; }
    .lukas-social-link { padding: 8px 14px; font-size: 13px; }
    .lide-grid { grid-template-columns: 1fr; }
    .lide-card { grid-template-columns: 110px 1fr; }
    .lide-photo { width: 110px; min-height: 140px; }
    #investiceMap { height: 380px; }
    .investice-summary { gap: 20px; }
    .investice-stat-num { font-size: 2rem; }
    .program-stats { gap: 12px; }
    .stat-card { padding: 16px 20px; min-width: 120px; }
    .stat-num { font-size: 1.6rem; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-contact { justify-content: center; flex-direction: column; align-items: center; }
    .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
    .hero { padding: 80px 0 24px; }
    .hero-title { margin-top: 24px; }
    .hero-symbol { width: clamp(240px, 90vw, 360px); }
    .lide-card { grid-template-columns: 100px 1fr; }
    .lide-photo { width: 100px; min-height: 130px; }
    .lide-info { padding: 16px; }
    .lukas-countdown { flex-wrap: wrap; }
    .countdown-item { min-width: calc(33% - 8px); }
    .lukas-social { justify-content: center; }
    #investiceMap { height: 300px; border-radius: 12px; }
    .zapojte-social { gap: 16px; }
    .program-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-card { min-width: 0; padding: 16px 12px; }
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--purple); color: var(--white);
    box-shadow: 0 -4px 32px rgba(75,16,64,.3);
    padding: 0;
    animation: cookieSlideUp .4s var(--ease);
}
@keyframes cookieSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.cookie-banner-inner {
    max-width: var(--max-w); margin: 0 auto; padding: 24px 24px 20px;
}
.cookie-text { margin-bottom: 16px; }
.cookie-text strong { font-size: 17px; display: block; margin-bottom: 6px; color: var(--cream); }
.cookie-text p { font-size: 14px; line-height: 1.6; opacity: .85; margin: 0; }
.cookie-actions {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cookie-btn { padding: 10px 24px; font-size: 14px; border-radius: 50px; }
.cookie-banner .btn-primary { background: var(--pink); border-color: var(--pink); color: var(--white); }
.cookie-banner .btn-primary:hover { background: var(--cream); border-color: var(--cream); color: var(--purple); }
.cookie-banner .btn-outline { background: transparent; border-color: rgba(255,255,255,.4); color: var(--white); }
.cookie-banner .btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.cookie-settings-toggle {
    background: none; border: none; color: var(--cream); font-family: var(--font);
    font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: underline;
    text-underline-offset: 3px; padding: 8px 4px; opacity: .8; transition: opacity .2s;
}
.cookie-settings-toggle:hover { opacity: 1; }
.cookie-details {
    margin-top: 16px; padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.cookie-option {
    display: flex; align-items: flex-start; gap: 10px;
    margin-bottom: 10px; font-size: 14px; cursor: pointer; line-height: 1.5;
}
.cookie-option input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
    accent-color: var(--pink); cursor: pointer;
}
.cookie-option strong { color: var(--cream); }
.cookie-details .btn { margin-top: 8px; }

@media (max-width: 480px) {
    .cookie-actions { flex-direction: column; width: 100%; }
    .cookie-btn { width: 100%; }
    .cookie-settings-toggle { align-self: center; }
}

/* ── HLAVNÍ PRIORITY (uvnitř sekce Program) ── */
.priorities-block { margin-bottom: 56px; }
.priorities-title {
    text-align: center; font-size: 1.6rem; color: var(--purple); margin: 0 0 28px;
}
.priorities-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.priority-card {
    display: flex; align-items: flex-start; gap: 14px;
    background: #fef0f6; border-radius: 14px; padding: 20px 22px;
    transition: transform .2s var(--ease), box-shadow .2s;
}
.priority-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,54,156,.12); }
.priority-icon { font-size: 28px; flex-shrink: 0; line-height: 1; }
.priority-card p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--gray-800); }
.priority-card strong { color: var(--purple); }

/* ── LÉTO BEZ STAROSTÍ ── */
.section-leto {
    background: linear-gradient(135deg, var(--pink) 0%, #e8006f 100%);
    color: var(--white); padding: 80px 0;
}
.section-leto .section-header h2 { color: var(--white); }
.section-leto .section-header p { color: rgba(255,255,255,.85); }
/* zvýrazněná nejbližší akce nahoře přes celou šířku */
.leto-next-wrap { margin-bottom: 28px; }
.leto-next-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: rgba(255,255,255,.9); margin: 0 0 12px 4px;
}
.leto-next-label::before {
    content: ""; width: 8px; height: 8px; border-radius: 50%;
    background: var(--cream); box-shadow: 0 0 0 0 rgba(245,230,200,.7);
    animation: letoPing 1.8s ease-out infinite;
}
@keyframes letoPing {
    0% { box-shadow: 0 0 0 0 rgba(245,230,200,.6); }
    100% { box-shadow: 0 0 0 12px rgba(245,230,200,0); }
}
.leto-card--next {
    background: var(--white); color: var(--purple);
    box-shadow: 0 16px 44px rgba(0,0,0,.22);
    padding: 24px 28px; gap: 24px;
}
.leto-card--next .leto-date {
    background: var(--pink); color: var(--white); min-width: 68px; padding: 12px 8px;
}
.leto-card--next .leto-day { font-size: 34px; }
.leto-card--next .leto-info h4 { font-size: 20px; }
.leto-card--next .leto-info p { opacity: .65; font-size: 14px; }

.leto-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}
.leto-card {
    display: flex; align-items: center; gap: 18px;
    background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
    border-radius: 16px; padding: 18px 22px;
    transition: background .2s, transform .2s;
}
.leto-card:hover { background: rgba(255,255,255,.25); transform: translateY(-2px); }
.leto-card--past { opacity: .5; }
.leto-card--past .leto-day,
.leto-card--past .leto-info h4 { text-decoration: line-through; text-decoration-thickness: 1px; }
.leto-date {
    display: flex; flex-direction: column; align-items: center;
    min-width: 54px; background: var(--white); color: var(--purple);
    border-radius: 12px; padding: 8px 6px; line-height: 1;
}
.leto-day { font-size: 26px; font-weight: 800; }
.leto-month { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }
.leto-info h4 { margin: 0 0 4px; font-size: 16px; font-weight: 700; }
.leto-info p { margin: 0; font-size: 13px; opacity: .85; }

/* ── GALERIE ── */
.section-galerie { background: var(--gray-50); }
.galerie-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.galerie-item {
    border-radius: var(--radius); overflow: hidden; cursor: pointer;
    aspect-ratio: 3/2; position: relative;
}
/* Fotka na výšku přes dvě řady — zaplní mřížku a nemusí se ořezávat do šířky */
.galerie-item--tall {
    grid-row: span 2; aspect-ratio: auto;
}
.galerie-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s var(--ease);
}
/* Fotky na výšku v širokých dlaždicích: výřez posunutý k obličejům, ne na střed */
.galerie-item--portrait img { object-position: center 12%; }
.galerie-item:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .galerie-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .galerie-grid { grid-template-columns: 1fr 1fr; gap: 8px; } }

.galerie-lightbox {
    position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,.88);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: opacity .3s;
}
.galerie-lightbox.active { opacity: 1; pointer-events: auto; }
.galerie-lightbox img {
    max-width: 90vw; max-height: 85vh; border-radius: 8px;
    box-shadow: 0 16px 60px rgba(0,0,0,.5);
}
.galerie-lightbox-close {
    position: absolute; top: 20px; right: 28px;
    background: none; border: none; color: #fff; font-size: 36px;
    cursor: pointer; line-height: 1; opacity: .7; transition: opacity .2s;
}
.galerie-lightbox-close:hover { opacity: 1; }
.galerie-lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,.15); border: none; color: #fff;
    font-size: 28px; width: 48px; height: 48px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.galerie-lightbox-nav:hover { background: rgba(255,255,255,.3); }
.galerie-lightbox-prev { left: 16px; }
.galerie-lightbox-next { right: 16px; }

/* ── COUNTDOWN BUBBLE ── */
.countdown-bubble {
    position: fixed; bottom: 140px; right: 24px; z-index: 8999;
    background: var(--white); color: var(--purple);
    border-radius: 16px; padding: 14px 18px;
    box-shadow: 0 8px 30px rgba(75,16,64,.2);
    font-family: var(--font); text-align: center;
    animation: countdownSlide .4s var(--ease);
    cursor: pointer; transition: transform .2s, opacity .3s;
    border: 2px solid var(--pink);
}
.countdown-bubble:hover { transform: scale(1.04); }
.countdown-bubble.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.countdown-bubble-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--pink); margin-bottom: 6px; }
.countdown-bubble-time { display: flex; gap: 8px; justify-content: center; }
.countdown-bubble-unit { display: flex; flex-direction: column; align-items: center; }
.countdown-bubble-num { font-size: 22px; font-weight: 800; line-height: 1; color: var(--purple); }
.countdown-bubble-lbl { font-size: 10px; color: var(--gray-500); margin-top: 2px; }
.countdown-bubble-close {
    position: absolute; top: 4px; right: 8px;
    background: none; border: none; cursor: pointer; font-size: 16px; color: var(--gray-400);
    line-height: 1; padding: 4px;
}
@keyframes countdownSlide { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 600px) {
    .countdown-bubble { right: 12px; bottom: 100px; padding: 10px 14px; }
    .countdown-bubble-num { font-size: 18px; }
}
