/* Host Grotesk local font ────────────────────────── */
@font-face {
    font-family: 'Host Grotesk';
    src: url('../fonts/HostGrotesk-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Google Fonts: Syne + DM Sans ───────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;500;700&family=Syne:wght@600;700;800&display=swap');

/* Design tokens ──────────────────────────────────── */
:root {
    --green:  #3a7d44;
    --green2: #4BB85C;
    --red:    #D32F2F;
    --gold:   #e8ae5a;
    --light:  #fcfaf9;
    --dark:   #0e1f14;
    --black:  #0D0D0D;
    --gray:   #6B7280;
    --white:  #ffffff;
    --border: rgba(0,0,0,0.07);
    --radius: 24px;
    --transition: 0.35s ease;
    --nav-h: 80px;
}

/* Reset ──────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;scroll-padding-top:var(--nav-h);}
body{font-family:'DM Sans',system-ui,sans-serif;background:var(--white);color:var(--black);-webkit-font-smoothing:antialiased;}
img{display:block;max-width:100%;}
a{text-decoration:none;color:inherit;}

/* Container ─────────────────────────────────────── */
.container{width:100%;max-width:1220px;margin:0 auto;padding:0 28px;}

/* Scroll-reveal ─────────────────────────────────── */
.sr{opacity:0;transform:translateY(40px);transition:opacity .7s ease,transform .7s ease;}
.sr.visible{opacity:1;transform:translateY(0);}

/* Skip to content (accessibility) ───────────────── */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--green);
    color: var(--white);
    padding: .6rem 1.4rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    z-index: 9999;
    transition: top .2s ease;
}
.skip-to-content:focus {
    top: 1rem;
}

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
#navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 900;
    padding: 0;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
    background: rgba(14,31,20,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
}
#navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-logo img {
    height: 44px;
    width: auto;
    flex-shrink: 0;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.nav-logo-text .top {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -.02em;
}
.nav-logo-text .bot {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: .67rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}
.nav-links a {
    color: rgba(255,255,255,.85);
    font-weight: 500;
    font-size: .97rem;
    transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: .6rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    transition: transform var(--transition), box-shadow var(--transition);
}
.nav-links .nav-cta:hover {
    background: #E74C3C !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(211,47,47,.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(14,31,20,.97);
    padding: 2rem 1.5rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 899;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
/* Radial glow */
.hero::before {
    content: '';
    position: absolute;
    top: 10%; right: -5%;
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(58,125,68,.28) 0%, transparent 70%);
    pointer-events: none;
}
.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 60px 40px;
    padding-left: max(28px, calc((100vw - 1220px)/2 + 28px));
    color: var(--white);
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1.2rem;
    opacity: 0; transform: translateY(20px);
    transition: .6s ease .1s;
}
.hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.04;
    letter-spacing: -.03em;
    color: var(--white);
    margin-bottom: 1.2rem;
    opacity: 0; transform: translateY(30px);
    transition: .7s ease .2s;
}
.hero h1 em {
    font-style: normal;
    color: var(--green2);
}
.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 1.8rem;
    opacity: 0; transform: translateY(20px);
    transition: .6s ease .35s;
}
.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    transition: .6s ease .48s;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-top: 2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255,255,255,.1);
    opacity: 0; transform: translateY(20px);
    transition: .6s ease .6s;
    max-width: 500px;
}
.stat-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    line-height: 1;
}
.stat-lbl {
    display: block;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.5);
    margin-top: 4px;
}

/* Hero right — photo */
.hero-right {
    position: relative;
    overflow: hidden;
    opacity: 0; transform: scale(.97);
    transition: .8s ease .15s;
}
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(14,31,20,.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.12);
    padding: 1rem 1.4rem;
    border-radius: 14px;
    color: var(--white);
}
.hero-badge strong { display: block; font-size: 1.05rem; }
.hero-badge span { font-size: .82rem; color: var(--green2); }

/* Animations fired on load */
.anim.ready {
    opacity: 1 !important;
    transform: none !important;
}

/* Shared buttons ─────────────────────────────────── */
.action-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    background: var(--green);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
    background: var(--green2);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(75,184,92,.3);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border: 2px solid rgba(255,255,255,.3);
    color: var(--white);
    font-weight: 700;
    border-radius: 50px;
    transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.08);
}

/* Section helpers ────────────────────────────────── */
.section-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: .7rem;
}
.section-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    letter-spacing: -.03em;
    line-height: 1.07;
    color: var(--black);
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 520px;
}

/* Generic section padding ────────────────────────── */
.section { padding: 100px 0; }

/* ═══════════════════════════════════════════════════
   COUNTDOWN — green bar, fully centered, big type
═══════════════════════════════════════════════════ */
.countdown {
    background: #1b4d29;
    padding: 60px 0;
    text-align: center;
}
.countdown-label-top {
    font-family: 'Syne', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.8rem;
}
.c-units {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}
.c-unit { text-align: center; }
.c-num {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 6vw, 7rem);
    color: var(--white);
    line-height: 1;
    letter-spacing: -.04em;
}
.c-lbl {
    display: block;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.45);
    margin-top: 6px;
}
.c-sep {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.5rem, 3vw, 4rem);
    color: rgba(255,255,255,.25);
    font-weight: 300;
    align-self: flex-end;
    padding-bottom: .8rem;
    line-height: 1;
}
.countdown-label-bottom {
    margin-top: 2rem;
    font-family: 'Syne', sans-serif;
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════
   HODNOTY
═══════════════════════════════════════════════════ */
.hodnoty {
    background: var(--light);
    padding: 100px 0;
}
.hodnoty-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 3.5rem;
}
.hodnoty-head > div { flex: 1; min-width: 260px; }
.hodnoty-head .section-desc { margin-left: auto; flex: 1; min-width: 260px; }

.hodnoty-grid,.hodnoty-grid-2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}
.hodnoty-grid-2 { margin-top: 1.2rem; }

.h-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    cursor: default;
}
.h-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    background: var(--dark);
    border-color: transparent;
}
.h-card:hover .h-letter,.h-card:hover .h-name { color: var(--white); }
.h-card:hover .h-desc { color: rgba(255,255,255,.65); }
.h-letter {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--green);
    line-height: 1;
    transition: color var(--transition);
}
.h-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--black);
    transition: color var(--transition);
}
.h-desc {
    font-size: .88rem;
    color: var(--gray);
    line-height: 1.55;
    transition: color var(--transition);
}

/* ═══════════════════════════════════════════════════
   PROGRAM — horizontal stacked rows (eliminates grid)
═══════════════════════════════════════════════════ */
.program {
    padding: 100px 0;
    background: var(--dark);
}
.program .section-title { color: var(--white); }
.program .section-desc { color: rgba(255,255,255,.55); }
.program-head {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-end;
    margin-bottom: 4rem;
}
.program-head > div { flex: 1; min-width: 260px; }
.program-head .section-desc { flex: 1; min-width: 260px; margin-left: auto; }

/* Each program row */
.p-row {
    display: flex;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: var(--white);
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: transform var(--transition), box-shadow var(--transition);
}
.p-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
.p-row-num {
    flex-shrink: 0;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--green);
    border-right: 1px solid var(--border);
    background: var(--light);
}
.p-row-content {
    flex-grow: 1;
    padding: 2.4rem 2.4rem;
}
.p-row-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--black);
    margin-bottom: 1.4rem;
}
.p-row-points {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    list-style: none;
}
.p-row-points li {
    background: rgba(75,184,92,.1);
    border: 1px solid rgba(75,184,92,.25);
    color: var(--dark);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .9rem;
    font-weight: 600;
    transition: background var(--transition), border-color var(--transition);
}
.p-row:hover .p-row-points li {
    background: rgba(75,184,92,.15);
    border-color: rgba(75,184,92,.4);
}

/* ═══════════════════════════════════════════════════
   TÝM / KANDIDÁTI
═══════════════════════════════════════════════════ */
.tym-section {
    padding: 100px 0;
    background: var(--white);
}
.tym-head {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}
.tym-head > div { flex: 1; min-width: 260px; }
.tym-head .section-desc { flex: 1; min-width: 260px; margin-left: auto; }

.tym-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
}
.t-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--light);
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition);
}
.t-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 40px rgba(0,0,0,.1);
}
.t-photo {
    position: relative;
    width: 38%;
    flex-shrink: 0;
    overflow: hidden;
    background: #d8cccc;
}
.t-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform .5s ease;
}
.t-card:hover .t-photo img {
    transform: scale(1.04);
}
.t-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(14,31,20,.85);
    color: var(--green2);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    z-index: 2;
}
.t-body {
    flex-grow: 1;
    padding: 1.5rem 1.6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.t-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--black);
    margin-bottom: .25rem;
}
.t-job { font-size: .85rem; color: var(--gray); }
.t-desc { font-size: .9rem; color: #444; margin-top: .7rem; line-height: 1.55; }
.t-quote {
    font-size: .85rem;
    color: var(--green);
    font-style: italic;
    margin-top: .7rem;
    border-left: 3px solid var(--green2);
    padding-left: .8rem;
}

/* ═══════════════════════════════════════════════════
   STAROSTA
═══════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════
   STAROSTA — red-accented theme section
═══════════════════════════════════════════════════ */
.starosta {
    background: #1a0608;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.starosta-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}
.starosta-photo {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #d8cccc;
    box-shadow: 0 30px 60px rgba(0,0,0,.12);
}
.starosta-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.starosta-text .section-title { color: var(--white); }
.starosta-quote {
    font-size: 1.2rem;
    color: rgba(255,255,255,.85);
    font-style: italic;
    line-height: 1.7;
    margin: 1.5rem 0 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--red);
}
.starosta-contacts { display: flex; flex-direction: column; gap: .9rem; }
.c-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    transition: color var(--transition);
}
.c-item:hover { color: var(--red); }
.c-ico {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,.15);
    flex-shrink: 0;
}
.c-ico svg {
    width: 18px; height: 18px;
    stroke: var(--red);
}
.starosta-facts {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1.2rem;
    margin: 2rem 0;
}
.s-fact {
    background: var(--white);
    border-radius: 14px;
    padding: 1.2rem;
    border: 1px solid var(--border);
}
.s-fact strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--red);
}
.s-fact span { font-size: .82rem; color: var(--gray); }

/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.faq-section {
    background: var(--dark);
    padding: 100px 0;
}
.faq-section .section-title { color: var(--white); }
.faq-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}
.faq-side h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.faq-side p { color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: start;
}

.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: transform var(--transition), box-shadow var(--transition);
}
.faq-item:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
    transform: translateY(-3px);
}
.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--black);
    text-align: left;
}
.faq-ico {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,.15);
    display: flex; align-items: center; justify-content: center;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.faq-ico svg {
    width: 16px; height: 16px;
    stroke: var(--dark);
    stroke-width: 2.5;
    fill: none;
    transition: stroke var(--transition);
}
.faq-item.open .faq-ico {
    transform: rotate(45deg);
    background: var(--green);
    border-color: var(--green);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-item.open .faq-body { max-height: 600px; }
.faq-body-inner {
    padding: 0 1.6rem 1.4rem;
    font-size: .95rem;
    line-height: 1.7;
    color: var(--gray);
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
    background: #060f09;
    padding: 64px 0 32px;
    color: var(--white);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(2, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
}
.footer-logo img { height: 40px; }
.footer-logo-text { display: flex; flex-direction: column; line-height: 1; }
.footer-logo-text .top {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: -.02em;
}
.footer-logo-text .bot {
    font-weight: 700;
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3px;
}
.footer-desc {
    font-size: .9rem;
    color: rgba(255,255,255,.45);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: .8rem; }
.footer-socials a {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    transition: border-color var(--transition), color var(--transition);
}
.footer-socials a:hover { border-color: var(--green2); color: var(--green2); }
.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li, .footer-col ul a {
    font-size: .9rem;
    color: rgba(255,255,255,.45);
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact li { display: flex; align-items: flex-start; gap: .7rem; }
.footer-contact svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--green2); margin-top: 3px; }
.footer-bottom {
    margin-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: .82rem;
    color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   EXTENDED DESIGN — NEW ELEMENTS
═══════════════════════════════════════════════════ */

/* Red color token ─────────────────────────────── */
:root {
    --red:    #C0392B;
    --red2:   #E74C3C;
}

/* Hero: single-column with decorative heart ───── */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.hero-symbol {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
    width: 45vw;
    max-width: 550px;
    min-width: 260px;
    opacity: .08;
    pointer-events: none;
    user-select: none;
}
.hero-symbol img {
    width: 100%;
    height: auto;
    filter: invert(1);
}
.hero-left {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

/* Countdown Bar (green stripe) ────────────────── */
.countdown-bar {
    background: var(--green);
    padding: 1.4rem 0;
    position: relative;
    overflow: hidden;
}
.countdown-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, transparent 60%);
}
.countdown-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.cd-label {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: -.01em;
    white-space: nowrap;
}
.cd-info {
    font-size: .9rem;
    color: rgba(255,255,255,.75);
    margin-left: auto;
    white-space: nowrap;
}
.countdown-bar .c-units {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.countdown-bar .c-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 56px;
}
.countdown-bar .c-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
}
.countdown-bar .c-lbl {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.65);
}

/* Decorative SVG heart symbols (sections) ─────── */
.section-symbol {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.section-symbol img {
    width: 100%;
    height: auto;
}
.section-symbol--red {
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    opacity: .08;
}
.section-symbol--green {
    left: -60px;
    bottom: 40px;
    width: 260px;
    opacity: .07;
}
.section-symbol--light {
    right: -50px;
    top: 30px;
    width: 240px;
    opacity: .06;
    filter: invert(1);
}
/* Ensure sections with symbols have relative + overflow */
.starosta.section,
.hodnoty.section,
.tym-section.section {
    position: relative;
    overflow: hidden;
}
.starosta.section .container,
.hodnoty.section .container,
.tym-section.section .container {
    position: relative;
    z-index: 1;
}

/* Program Cards — new layout with text + pills ── */
.p-card {
    background: var(--white);
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 2.5rem 2.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
    transition: box-shadow var(--transition), transform var(--transition);
}
.p-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
    transform: translateY(-5px);
}
.p-card-header {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.p-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--green);
    line-height: 1;
    flex-shrink: 0;
    letter-spacing: -.04em;
}
.p-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--black);
    line-height: 1.2;
}
.p-legend {
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-start;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}
.p-legend-item {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--gray);
    font-weight: 500;
}
.p-desc {
    font-size: .97rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    max-width: 680px;
}
.p-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}
.p-pills + .p-pills {
    margin-top: .55rem;
}
.p-pill {
    display: inline-flex;
    align-items: flex-start;
    gap: .45rem;
    font-size: .82rem;
    font-weight: 500;
    padding: .6rem 1rem;
    border-radius: 12px;
    transition: background var(--transition), border-color var(--transition);
    line-height: 1.45;
}
.p-pill-icon {
    flex-shrink: 0;
    margin-top: 0.15rem;
}
/* Splněno — zelená */
.p-pill--done {
    background: rgba(22,163,74,.1);
    border: 1px solid rgba(22,163,74,.28);
    color: #14532d;
}
.p-card:hover .p-pill--done {
    background: rgba(22,163,74,.16);
    border-color: rgba(22,163,74,.45);
}
.p-pill--done .p-pill-icon { color: #16a34a !important; }
/* Připravujeme — modrá */
.p-pill--todo {
    background: rgba(59,130,246,.1);
    border: 1px solid rgba(59,130,246,.25);
    color: #1e3a5f;
}
.p-card:hover .p-pill--todo {
    background: rgba(59,130,246,.16);
    border-color: rgba(59,130,246,.4);
}
.p-pill--todo .p-pill-icon { color: #3b82f6 !important; }

/* Programme section CTA bar ───────────────────── */
.program.section .btn-outline {
    border-color: rgba(255,255,255,.3);
    color: rgba(255,255,255,.8);
}
.program.section .btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
}

/* Footer: copyright centering ─────────────────── */
.footer-bottom {
    justify-content: center;
    text-align: center;
}
.footer-bottom a {
    color: var(--green);
    font-weight: 600;
}
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media(max-width:1100px) {
    .hodnoty-grid,.hodnoty-grid-2 { grid-template-columns: repeat(3,1fr); }
    .starosta-inner { grid-template-columns: 1fr 1.4fr; gap: 3rem; }
    .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
    .hero-symbol { width: 52vw; right: 0; opacity: .05; }
}

@media(max-width:900px) {
    .hero { min-height: auto; }
    .hero-left {
        padding: calc(var(--nav-h) + 48px) 28px 60px;
    }
    .hero-symbol { width: 60vw; right: 0; opacity: .04; }
    .footer-grid { grid-template-columns: 1fr; }
    .starosta-inner { grid-template-columns: 1fr; }
    .starosta-photo { aspect-ratio: 3/4; max-width: 600px; }
    .hodnoty-grid,.hodnoty-grid-2 { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:700px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { gap: 1.5rem; }
    .countdown { padding: 40px 0; }
    .countdown .c-units { gap: 1.2rem; flex-wrap: nowrap; }
    .hodnoty-grid,.hodnoty-grid-2 { grid-template-columns: 1fr; }
    .p-card { padding: 1.8rem 1.5rem; }
    .p-card-header { flex-direction: column; gap: .4rem; }
    .p-legend { margin-left: 0; margin-top: 1.5rem; width: 100%; border-top: 1px solid var(--border); padding-top: 1rem; }
    .p-pills { flex-direction: column; display: flex; align-items: stretch; width: 100%; gap: 0.65rem; }
    .p-pill { max-width: 100%; width: 100%; }
    .section-symbol { display: none; }
    .hero-symbol { right: -5%; width: 75vw; opacity: .02; }
    .tym-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .faq-side { position: static; }
    .hero-btns, .action-btns { flex-direction: column; width: 100%; gap: 0; }
    .hero-btns a, .action-btns a { justify-content: center; width: 100%; }
    .hero-btns a:not(:last-child), .action-btns a:not(:last-child) { margin-bottom: 1rem; }
}

@media(max-width:480px) {
    .hero h1 { font-size: 2.3rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 1.2rem 1rem; }
    .p-pills { gap: .6rem; }
    .countdown .c-units { gap: 0.6rem; }
    .c-lbl { font-size: 0.6rem; }
    .t-card { flex-direction: column; }
    .t-photo { width: 100%; aspect-ratio: 3/4; }
    .t-photo img { position: relative; }
}
