@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: 72px 0 0;
    background: var(--pink); color: var(--purple); overflow: hidden;
}
.hero-bg-symbol {
    position: absolute; bottom: -160px; right: calc((100% - var(--max-w)) / 2 - 150px); width: 960px; height: 960px;
    background: url('../img/prvek_slk.svg') no-repeat center/contain;
    opacity: 1; pointer-events: none;
}
.hero-inner {
    position: relative;
    display: grid; grid-template-columns: 1fr 1fr; align-items: center;
    min-height: max(750px, calc(100vh - 72px)); gap: 32px;
}
.hero-text { position: relative; z-index: 2; padding-top: 0; }
.hero-image-wrap {
    position: relative; z-index: 1;
}
.hero-image {
    overflow: hidden; border-radius: 16px; height: 450px;
}
.hero h1 {
    color: var(--purple); margin-bottom: 0;
    font-weight: 800; letter-spacing: -.03em;
}
.hero-line1 {
    display: block; font-size: 9rem; line-height: .9;
}
.hero-line2 {
    display: block; font-size: 5rem; line-height: 1.0;
}
.hero-highlight {
    background-color: var(--cream);
    padding: 0 .1em;
    line-height: 1.1;
    -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.hero-subtitle {
    font-size: 2rem; font-weight: 600; color: var(--purple); margin-top: 16px; opacity: .85;
}
.hero-image-captions {
    display: flex; justify-content: space-between; padding: 10px 16px 16px;
}
.hero-caption {
    font-size: 13px; font-weight: 600; color: var(--purple); opacity: .75;
}
.hero-image img {
    display: block; width: 100%; height: 450px;
    object-fit: cover; object-position: center 30%;
}

/* 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-desc { font-size: 13px; color: var(--gray-500); line-height: 1.6; }
.lide-card--placeholder { opacity: .5; }

/* 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-inner { min-height: auto; }
    .hero-bg-symbol { width: 700px; height: 700px; bottom: -80px; }
    .hero-line1 { font-size: 7rem; }
    .hero-line2 { font-size: 4.5rem; }
    .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: 80px 0 0; }
    .hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 24px; }
    .hero-text { padding-top: 20px; text-align: center; }
    .hero-image { height: 300px; }
    .hero-image img { width: 100%; margin-left: 0; height: 300px; }
    .hero-subtitle { font-size: 1.4rem; }
    .hero-bg-symbol { width: 540px; height: 540px; bottom: -60px; right: -30px; }
    .hero-line1 { font-size: clamp(4rem, 12vw, 6rem); }
    .hero-line2 { font-size: clamp(2.6rem, 8vw, 4rem); }
    .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-line1 { font-size: 3.2rem; }
    .hero-line2 { font-size: 2.1rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .hero-image-captions { flex-direction: row; gap: 4px; padding: 8px 8px 0; justify-content: space-between; }
    .hero-caption { font-size: 10px; }
    .hero-bg-symbol { width: 400px; height: 400px; bottom: -40px; right: -20px; }
    .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; }
}
