:root {
    --purple: #4b226b;
    --purple-2: #321149;
    --purple-3: #1b072c;
    --purple-4: #10031a;
    --gold: #ffd400;
    --gold-2: #e4b900;
    --gold-3: #a98500;
    --ink: #08060d;
    --white: #ffffff;
    --muted: rgba(255,255,255,.72);
    --muted-2: rgba(255,255,255,.56);
    --line: rgba(255,212,0,.22);
    --glass: rgba(255,255,255,.055);
    --shadow: 0 28px 90px rgba(0,0,0,.42);
    --radius: 28px;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--purple-4);
    color: var(--white);
    line-height: 1.55;
    overflow-x: hidden;
}
body::selection { background: var(--gold); color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}
.container--narrow { width: min(calc(100% - 40px), 850px); }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

/* WordPress admin bar compatibility for logged-in users. */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
    body.admin-bar .site-header { top: 46px; }
}

.site-header.is-scrolled {
    background: rgba(16,3,26,.97);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(255,212,0,.16);
}
.site-header__inner {
    position: relative;
    width: min(calc(100% - 40px), 1250px);
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-inline: auto;
    gap: 30px;
}
.site-header__brand { display: flex; align-items: center; }
.brand-logo-link { display: inline-flex; align-items: center; justify-content: center; }
.brand-logo--header { width: min(245px, 100%); max-height: 72px; object-fit: contain; }
.brand-logo--hero { width: min(100%, 560px); max-height: 420px; object-fit: contain; margin-inline: auto; filter: drop-shadow(0 24px 65px rgba(0,0,0,.32)); }
.brand-fallback {
    display: grid;
    gap: 2px;
    color: var(--gold);
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 900;
}
.brand-fallback small {
    color: var(--gold);
    font-size: .68rem;
    letter-spacing: .16em;
    font-weight: 800;
}
.menu { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 30px; }
.menu a {
    color: var(--gold);
    text-transform: uppercase;
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .09em;
    position: relative;
}
.menu a::after {
    content: "";
    position: absolute;
    height: 2px;
    left: 0;
    right: 100%;
    bottom: -8px;
    background: var(--gold);
    transition: right .22s ease;
}
.menu a:hover::after { right: 0; }
.menu-toggle { display: none; }

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 24%, rgba(255,212,0,.12), transparent 26%),
        radial-gradient(circle at 12% 20%, rgba(255,255,255,.08), transparent 24%),
        linear-gradient(135deg, var(--purple), var(--purple-2) 45%, var(--purple-3));
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,212,0,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,212,0,.055) 1px, transparent 1px);
    background-size: 62px 62px;
    mask-image: radial-gradient(circle at center, rgba(0,0,0,.75), transparent 72%);
    opacity: .35;
}
.hero::after {
    content: "";
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: -18%;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.52));
    transform: rotate(-2deg);
}
.hero__bg-orb {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255,212,0,.23);
    border-radius: 999px;
    opacity: .7;
}
.hero__bg-orb--one { top: 16%; left: 7%; box-shadow: 0 0 90px rgba(255,212,0,.08) inset; }
.hero__bg-orb--two { right: 8%; bottom: 14%; width: 520px; height: 520px; opacity: .38; }
.hero__inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    align-items: center;
    grid-template-columns: 1.04fr .96fr;
    gap: 54px;
    padding: 145px 0 90px;
}
.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 950;
    font-size: .82rem;
}
h1, h2, h3 { line-height: 1.03; margin: 0; letter-spacing: -.045em; }
.hero h1 {
    max-width: 760px;
    font-size: clamp(3.25rem, 7vw, 7.8rem);
    text-transform: uppercase;
    text-wrap: balance;
}
.hero__lead {
    max-width: 660px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: clamp(1.06rem, 1.6vw, 1.35rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .82rem;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 18px 50px rgba(255,212,0,.18); }
.btn--ghost { border: 1px solid rgba(255,212,0,.42); color: var(--gold); background: rgba(255,255,255,.04); }
.btn--dark { background: var(--purple-4); color: var(--gold); border: 1px solid rgba(255,212,0,.24); }
.hero__mark { text-align: center; align-self: center; min-width: 0; width: 100%; }
.hero__logo-wrap {
    position: relative;
    width: min(100%, 620px);
    margin-inline: auto;
    padding: 28px;
}
.hero__logo-wrap .brand-logo-link { width: 100%; }
.hero__logo-wrap::before {
    content: "";
    position: absolute;
    inset: 4%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,212,0,.18), transparent 62%);
    filter: blur(10px);
    z-index: -1;
}
.hero__tagline {
    display: inline-flex;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 950;
    border-top: 1px solid rgba(255,212,0,.5);
    padding-top: 20px;
    margin-top: 16px;
    font-size: .86rem;
}

.section { position: relative; padding: 104px 0; }
.section--intro { padding: 64px 0; background: linear-gradient(180deg, var(--purple-4), #08030d); }
.intro-strip {
    border: 1px solid rgba(255,212,0,.24);
    background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
    border-radius: var(--radius);
    padding: 36px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
    box-shadow: var(--shadow);
}
.intro-strip__number {
    width: 118px;
    height: 118px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--ink);
    font-weight: 1000;
    font-size: 3.4rem;
    line-height: 1;
}
.intro-strip h2 { font-size: clamp(2rem, 3.4vw, 4rem); }
.intro-strip p { margin: 16px 0 0; color: var(--muted); font-size: 1.12rem; max-width: 850px; }

.section--cards {
    background:
        radial-gradient(circle at 20% 20%, rgba(255,212,0,.08), transparent 20%),
        linear-gradient(180deg, #08030d, var(--purple-3));
}
.section-heading { margin-bottom: 38px; }
.section-heading h2 { font-size: clamp(2.4rem, 5vw, 5.8rem); text-transform: uppercase; }
.section-heading--split { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.link-more { color: var(--gold); font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.topic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.topic-card {
    min-height: 330px;
    padding: 26px;
    border-radius: var(--radius);
    background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
    border: 1px solid rgba(255,212,0,.18);
    box-shadow: 0 18px 55px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.topic-card::before {
    content: "";
    position: absolute;
    inset: -60% -80% auto auto;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,212,0,.24), transparent 70%);
    transition: transform .3s ease;
}
.topic-card:hover { transform: translateY(-8px); border-color: rgba(255,212,0,.42); background: linear-gradient(160deg, rgba(255,255,255,.12), rgba(255,255,255,.04)); }
.topic-card:hover::before { transform: scale(1.45); }
.topic-card__index { color: var(--gold); font-size: .8rem; font-weight: 950; letter-spacing: .12em; }
.topic-card h3 { margin-top: 62px; font-size: 1.7rem; letter-spacing: -.04em; }
.topic-card p { margin: 16px 0 0; color: var(--muted); }
.topic-card__more { margin-top: auto; padding-top: 28px; color: var(--gold); font-weight: 950; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }

.section--statement { background: var(--gold); color: var(--ink); padding: 74px 0; }
.statement p { margin: 0; font-weight: 1000; letter-spacing: -.05em; line-height: .98; font-size: clamp(2.6rem, 7vw, 7.6rem); text-transform: uppercase; }

.section--podnet {
    background:
        linear-gradient(135deg, rgba(75,34,107,.96), rgba(27,7,44,.98)),
        var(--purple-3);
}
.podnet-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid rgba(255,212,0,.25);
    border-radius: var(--radius);
    padding: 44px;
    background: rgba(255,255,255,.06);
    box-shadow: var(--shadow);
}
.podnet-card h2 { font-size: clamp(2rem, 4.2vw, 4.8rem); text-transform: uppercase; }
.podnet-card p:not(.eyebrow) { max-width: 760px; color: var(--muted); font-size: 1.12rem; margin: 18px 0 0; }

.section--news { background: #08030d; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,212,0,.13);
    transition: transform .22s ease, border-color .22s ease;
}
.news-card:hover { transform: translateY(-5px); border-color: rgba(255,212,0,.34); }
.news-card__image { display: block; aspect-ratio: 1.45 / 1; background: var(--purple-2); overflow: hidden; }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.news-card:hover .news-card__image img { transform: scale(1.06); }
.news-card__placeholder {
    width: 100%; height: 100%; display: grid; place-items: center; color: rgba(255,212,0,.38); font-weight: 1000; font-size: 4rem; letter-spacing: .12em;
    background: radial-gradient(circle at center, rgba(255,212,0,.12), transparent 56%), linear-gradient(135deg, var(--purple), var(--purple-3));
}
.news-card__body { padding: 24px; }
.news-card__meta { color: var(--gold); font-size: .8rem; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.news-card h2, .news-card h3 { font-size: 1.55rem; letter-spacing: -.04em; }
.news-card p { color: var(--muted-2); margin: 14px 0 0; }
.empty-news {
    border: 1px dashed rgba(255,212,0,.22);
    border-radius: var(--radius);
    padding: 40px;
    color: var(--muted);
}

.section--manifest {
    background:
        radial-gradient(circle at 85% 20%, rgba(255,212,0,.12), transparent 22%),
        linear-gradient(180deg, var(--purple-3), var(--purple-4));
}
.manifest {
    border-left: 6px solid var(--gold);
    padding-left: 34px;
}
.manifest h2 { font-size: clamp(2.5rem, 5.5vw, 6.3rem); text-transform: uppercase; }
.manifest p:not(.eyebrow) { max-width: 920px; color: var(--muted); font-size: clamp(1.1rem, 1.7vw, 1.35rem); margin: 24px 0 0; }

.site-footer {
    background: #050208;
    border-top: 1px solid rgba(255,212,0,.16);
    color: var(--muted);
}
.site-footer__inner {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
    padding: 34px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}
.site-footer strong { color: var(--gold); letter-spacing: .1em; }
.site-footer p { margin: 4px 0 0; }
.site-footer__credit { text-align: right; color: rgba(255,255,255,.5); }
.site-footer__credit a { color: var(--gold); text-decoration: none; font-weight: 900; }
.site-footer__credit a:hover { text-decoration: underline; text-underline-offset: 4px; }
.menu--footer { gap: 18px; }
.menu--footer a { font-size: .72rem; }

.subhero {
    padding: 170px 0 70px;
    background: linear-gradient(135deg, var(--purple), var(--purple-3));
    border-bottom: 1px solid rgba(255,212,0,.14);
}
.subhero h1 { font-size: clamp(2.6rem, 5.5vw, 6rem); text-transform: uppercase; }
.subhero p:not(.eyebrow) { color: var(--muted); max-width: 740px; }
.page-content, .single-content { background: #08030d; }
.content-body {
    color: rgba(255,255,255,.84);
    font-size: 1.1rem;
}
.content-body h2, .content-body h3 { margin-top: 1.8em; color: var(--white); }
.content-body p, .content-body ul, .content-body ol { margin-bottom: 1.25em; }
.content-body a { color: var(--gold); border-bottom: 1px solid rgba(255,212,0,.45); }
.content-body img { border-radius: 20px; }
.single-hero {
    padding: 150px 0 0;
    background: linear-gradient(135deg, var(--purple), var(--purple-3));
}
.single-hero__meta { color: var(--gold); font-weight: 950; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.single-hero h1 { font-size: clamp(2.6rem, 5.5vw, 6.2rem); text-transform: uppercase; }
.single-hero__image { margin-top: 42px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.single-hero__image img { width: 100%; }
.pagination { margin-top: 40px; color: var(--gold); }

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,212,0,.4);
    background: rgba(16,3,26,.82);
    color: var(--gold);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}
.scroll-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; transition-delay: calc(var(--i, 0) * 70ms); }
.reveal--delay { transition-delay: .16s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; padding-top: 130px; gap: 20px; }
    .hero__mark { order: -1; }
    .brand-logo--hero { max-width: 360px; }
    .topic-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
    .podnet-card { align-items: flex-start; flex-direction: column; }
    .site-footer__inner { grid-template-columns: 1fr; text-align: left; }
    .site-footer__credit { text-align: left; }
}
@media (max-width: 760px) {
    .container,
    .container--narrow { width: min(calc(100% - 32px), var(--max)); }

    .site-header {
        position: fixed;
        background: transparent;
        border-bottom-color: transparent;
        backdrop-filter: none;
    }
    .site-header.is-scrolled,
    .nav-open .site-header {
        background: rgba(16,3,26,.88);
        border-bottom-color: rgba(255,212,0,.16);
        backdrop-filter: blur(18px);
    }
    .site-header__inner {
        width: 100%;
        min-height: 76px;
        padding-inline: 16px;
        justify-content: center;
    }
    .site-header__brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        translate: 0 -50%;
        width: min(58vw, 205px);
        justify-content: center;
    }
    .brand-logo--header {
        width: 100%;
        max-height: 54px;
        object-fit: contain;
        object-position: center;
    }
    .menu-toggle {
        position: absolute;
        right: 14px;
        top: 50%;
        translate: 0 -50%;
        display: grid;
        gap: 5px;
        border: 0;
        background: transparent;
        padding: 12px;
        cursor: pointer;
        z-index: 3;
    }
    .menu-toggle span { width: 28px; height: 2px; background: var(--gold); display: block; }
    .site-nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 76px;
        background: rgba(16,3,26,.985);
        border-bottom: 1px solid rgba(255,212,0,.18);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        pointer-events: none;
        transition: max-height .24s ease, opacity .18s ease, visibility .18s ease;
        box-shadow: 0 26px 60px rgba(0,0,0,.35);
    }
    body.admin-bar .site-nav { top: 122px; }
    .nav-open .site-nav {
        max-height: calc(100vh - 76px);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .menu--primary { padding: 24px 22px 28px; display: grid; gap: 20px; }
    .menu--primary a { display: inline-flex; font-size: .92rem; }

    .hero { min-height: auto; }
    .hero__inner {
        min-height: auto;
        padding-top: 122px;
        padding-bottom: 76px;
        gap: 22px;
        overflow: hidden;
    }
    .hero__mark {
        width: 100%;
        display: grid;
        justify-items: center;
    }
    .hero__logo-wrap {
        width: 100%;
        max-width: 360px;
        padding: 16px 0 8px;
        display: grid;
        justify-items: center;
    }
    .hero__logo-wrap .brand-logo-link { width: 100%; justify-content: center; }
    .brand-logo--hero {
        width: min(100%, 340px);
        max-width: 88vw;
        max-height: none;
        object-fit: contain;
        object-position: center;
        margin-inline: auto;
    }
    .hero h1 { font-size: clamp(2.8rem, 15vw, 5rem); }
    .hero__tagline { letter-spacing: .12em; font-size: .72rem; margin-top: 6px; }
    .section { padding: 72px 0; }
    .intro-strip { grid-template-columns: 1fr; padding: 26px; }
    .intro-strip__number { width: 94px; height: 94px; font-size: 2.7rem; }
    .topic-grid, .news-grid { grid-template-columns: 1fr; }
    .topic-card { min-height: 260px; }
    .podnet-card { padding: 28px; }
    .statement p { font-size: clamp(2.2rem, 14vw, 4.6rem); }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Logo image already contains the slogan, so a separate hero tagline is not rendered. */
.hero__tagline { display: none !important; }


/* v10: Header sjednocený do fialové značkové plochy, ne do černé. */
.site-header,
.site-header.is-scrolled,
.nav-open .site-header {
    background: linear-gradient(135deg, rgba(75,34,107,.96), rgba(50,17,73,.96) 56%, rgba(27,7,44,.96));
    border-bottom-color: rgba(255,212,0,.16);
    backdrop-filter: blur(16px);
}
.site-nav {
    background: linear-gradient(135deg, rgba(75,34,107,.985), rgba(50,17,73,.985) 56%, rgba(27,7,44,.985));
}
@media (max-width: 760px) {
    .site-header,
    .site-header.is-scrolled,
    .nav-open .site-header {
        background: linear-gradient(135deg, rgba(75,34,107,.98), rgba(50,17,73,.98) 56%, rgba(27,7,44,.98));
        border-bottom-color: rgba(255,212,0,.18);
        backdrop-filter: blur(16px);
    }
    .site-nav {
        background: linear-gradient(135deg, rgba(75,34,107,.995), rgba(50,17,73,.995) 56%, rgba(27,7,44,.995));
    }
}
