/*
Za naše město – mobilně prioritní veřejná verze.
*/

:root{
    --navy:#061b33;
    --navy-2:#0b2948;
    --gold:#c9a23a;
    --cream:#f7f4ec;
    --paper:#ffffff;
    --muted:#5f6a76;
    --line:#e8e3d6;
    --radius:22px;
    --shadow:0 18px 48px rgba(6,27,51,.13);
    --header-h:74px;
}

*{box-sizing:border-box}

html{
    scroll-behavior:smooth;
    scroll-padding-top:calc(var(--header-h) + 6px);
}

body{
    margin:0;
    font-family:Inter,Arial,Helvetica,sans-serif;
    color:var(--navy);
    background:var(--cream);
    line-height:1.55;
}

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

a{color:inherit;text-decoration:none}

.container{
    width:min(100% - 28px, 1160px);
    margin-inline:auto;
}

[id]{
    scroll-margin-top:calc(var(--header-h) + 6px);
}

.site-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(247,244,236,.97);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(6,27,51,.08);
}

.header-inner{
    min-height:var(--header-h);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.brand img{
    width:142px;
}

.menu-toggle{
    width:46px;
    height:40px;
    border:0;
    border-radius:12px;
    background:var(--navy);
    padding:10px;
}

.menu-toggle span{
    display:block;
    height:2px;
    background:#fff;
    margin:5px 0;
}

.nav{
    position:absolute;
    left:14px;
    right:14px;
    top:calc(var(--header-h) + 8px);
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    background:white;
    border:1px solid var(--line);
    border-radius:20px;
    box-shadow:var(--shadow);
    padding:10px;
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.nav.is-open{display:flex}

.nav a{
    padding:15px 16px;
    border-radius:14px;
}

.nav a:hover{
    background:var(--cream);
    color:var(--gold);
}

.section{
    padding:50px 0;
}

.section-dark{
    background:
        radial-gradient(circle at 88% 12%, rgba(201,162,58,.28), transparent 25%),
        linear-gradient(135deg, var(--navy), var(--navy-2));
    color:white;
    position:relative;
    overflow:hidden;
}

.hero{
    min-height:auto;
    padding:54px 0 48px;
}

.hero-grid{
    display:grid;
    gap:30px;
    align-items:center;
}

.eyebrow,
.section-kicker{
    margin:0 0 14px;
    color:var(--gold);
    font-weight:1000;
    text-transform:uppercase;
    letter-spacing:.13em;
    font-size:12px;
}

.hero h1{
    margin:0;
    font-size:clamp(46px, 15vw, 74px);
    line-height:.94;
    letter-spacing:-.06em;
}

.lead{
    font-size:19px;
    color:rgba(255,255,255,.86);
    margin:22px 0 0;
}

.hero-actions{
    margin-top:28px;
    display:grid;
    gap:12px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 22px;
    border-radius:999px;
    font-weight:1000;
    text-transform:uppercase;
    letter-spacing:.08em;
    font-size:13px;
    text-align:center;
}

.btn-primary{
    background:var(--gold);
    color:var(--navy);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.32);
    color:white;
}

.hero-card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.16);
    border-radius:var(--radius);
    padding:24px;
    box-shadow:0 24px 70px rgba(0,0,0,.24);
    overflow:hidden;
}

.hero-card img{
    width:min(320px, 100%);
    margin:auto;
}

.claim-box{
    margin-top:22px;
    display:grid;
    gap:10px;
}

.claim-box span{
    display:flex;
    align-items:center;
    gap:10px;
    color:rgba(255,255,255,.9);
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.07em;
    font-size:12px;
}

.claim-box span:before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--gold);
    flex:0 0 auto;
}

.two-col{
    display:grid;
    gap:24px;
}

h2{
    margin:0;
    font-size:clamp(32px, 9vw, 56px);
    line-height:1.02;
    letter-spacing:-.045em;
}

.intro-text{
    font-size:18px;
    color:#26384b;
}

.intro-text p:first-child{margin-top:0}

.intro-text strong{
    color:var(--navy);
    background:linear-gradient(transparent 58%, rgba(201,162,58,.35) 58%);
    padding:0 .08em;
}

.section-head{
    margin-bottom:26px;
}

.priorities{
    background:#fff;
}

.cards{
    display:grid;
    gap:16px;
}

.card{
    background:var(--cream);
    border:1px solid var(--line);
    border-radius:22px;
    padding:24px;
    box-shadow:0 12px 30px rgba(6,27,51,.05);
}

.icon{
    width:68px;
    height:68px;
    border-radius:50%;
    background:var(--gold);
    display:grid;
    place-items:center;
    margin-bottom:20px;
}

.icon svg{
    width:38px;
    height:38px;
    fill:none;
    stroke:var(--navy);
    stroke-width:4;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.card h3{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.12;
    text-transform:uppercase;
    letter-spacing:.035em;
}

.card p{
    margin:0;
    color:#33465a;
}


.live-note{
    background:var(--cream);
    padding:18px 0 0;
}

.live-note-inner{
    background:rgba(255,255,255,.78);
    border:1px solid var(--line);
    border-radius:20px;
    padding:18px;
    display:grid;
    gap:14px;
    box-shadow:0 10px 28px rgba(6,27,51,.06);
}

.live-note strong{
    display:block;
    font-size:17px;
    line-height:1.25;
}

.live-note span{
    display:block;
    margin-top:4px;
    color:#435367;
    font-size:15px;
}

.live-note a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:44px;
    padding:0 18px;
    border-radius:999px;
    background:var(--navy);
    color:#fff;
    font-weight:1000;
    text-transform:uppercase;
    letter-spacing:.07em;
    font-size:12px;
    text-align:center;
}

@media (min-width: 760px){
    .live-note{
        padding:24px 0 0;
    }

    .live-note-inner{
        grid-template-columns:1fr auto;
        align-items:center;
        padding:20px 24px;
    }
}

.signatures{
    background:var(--cream);
}

.signature-box{
    background:white;
    border-radius:var(--radius);
    padding:26px;
    display:grid;
    gap:26px;
    box-shadow:var(--shadow);
}

.signature-box p{
    font-size:17px;
    color:#37495a;
}

.contact-card{
    background:var(--navy);
    color:white;
    border-radius:20px;
    padding:24px;
    display:grid;
    gap:9px;
}

.contact-card span{
    color:var(--gold);
    font-size:12px;
    font-weight:1000;
    text-transform:uppercase;
    letter-spacing:.1em;
}

.contact-card strong{
    font-size:28px;
    line-height:1.1;
}

.contact-card a{
    display:flex;
    align-items:center;
    min-height:44px;
    border-top:1px solid rgba(255,255,255,.13);
    color:white;
    font-weight:800;
}

.contact-card a:hover{
    color:var(--gold);
}

.footer{
    background:var(--navy);
    color:white;
    padding:42px 0;
}

.footer-grid{
    display:grid;
    gap:30px;
}

.footer-logo{
    width:220px;
    margin-bottom:18px;
}

.footer p{
    color:rgba(255,255,255,.74);
    margin:.45em 0;
}

.footer h2{
    margin:0 0 12px;
    font-size:26px;
    letter-spacing:0;
}

.footer a:hover{
    color:var(--gold);
}

.hashtag{
    color:var(--gold) !important;
    font-weight:1000;
}

.muted{
    color:rgba(255,255,255,.58);
    font-size:14px;
}

@media (min-width: 760px){
    :root{--header-h:86px}

    .container{
        width:min(1160px, calc(100% - 40px));
    }

    .brand img{width:168px}

    .section{padding:72px 0}

    .hero{padding:80px 0 72px}

    .hero-actions{
        display:flex;
        flex-wrap:wrap;
    }

    .cards{
        grid-template-columns:repeat(2, 1fr);
        gap:20px;
    }

    .signature-box{
        padding:38px;
        grid-template-columns:1fr .78fr;
        align-items:center;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
        gap:48px;
    }
}

@media (min-width: 1040px){
    :root{--header-h:92px}

    .brand img{width:178px}

    .menu-toggle{display:none}

    .nav{
        position:static;
        display:flex;
        flex-direction:row;
        align-items:center;
        width:auto;
        padding:0;
        background:transparent;
        border:0;
        border-radius:0;
        box-shadow:none;
        gap:28px;
    }

    .nav a{
        padding:0;
        border-radius:0;
    }

    .nav a:hover{
        background:transparent;
    }

    .hero{
        min-height:640px;
        padding:86px 0 76px;
    }

    .hero-grid{
        grid-template-columns:minmax(0,1.05fr) minmax(300px,.72fr);
        gap:62px;
    }

    .two-col{
        grid-template-columns:.85fr 1.15fr;
        gap:70px;
        align-items:start;
    }

    .cards{
        grid-template-columns:repeat(5, 1fr);
        gap:18px;
    }

    .card{
        padding:22px;
    }

    .card h3{
        font-size:20px;
    }
}
