:root{
  --blue:#0052a8;
  --blue-dark:#003f84;
  --blue-soft:#eaf3ff;
  --red:#e30613;
  --text:#12304f;
  --muted:#5c6d7d;
  --white:#fff;
  --shadow:0 18px 60px rgba(0,63,132,.14);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:#f5f9ff;
}
a{color:inherit}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:14px clamp(18px,4vw,56px);
  background:rgba(255,255,255,.9);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,82,168,.1);
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  color:var(--blue-dark);
}
.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
}
.brand strong{
  display:block;
  font-size:18px;
  line-height:1.05;
  font-weight:900;
}
.brand small{
  display:block;
  font-weight:750;
  color:var(--muted);
}
nav{
  display:flex;
  gap:22px;
  font-weight:800;
  color:var(--blue-dark);
}
nav a{text-decoration:none}
nav a:hover{color:var(--red)}
.hero{
  overflow:hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(0,82,168,.14), transparent 30%),
    linear-gradient(180deg,#fff 0%,#edf5ff 100%);
}
.hero-inner{
  max-width:1240px;
  margin:0 auto;
  min-height:620px;
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  align-items:center;
  gap:46px;
  padding:58px clamp(18px,4vw,56px) 82px;
}
.eyebrow{
  margin:0 0 14px;
  color:var(--red);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:900;
  font-size:14px;
}
h1,h2,h3,p{margin-top:0}
h1{
  margin-bottom:22px;
  color:var(--blue);
  font-size:clamp(56px,8vw,118px);
  line-height:.82;
  letter-spacing:-.065em;
  font-weight:950;
}
h1 span{
  display:block;
  margin-top:22px;
  font-size:clamp(40px,5vw,72px);
  letter-spacing:-.055em;
}
.lead{
  max-width:560px;
  color:#314d68;
  font-size:20px;
  line-height:1.55;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  border:2px solid var(--blue);
}
.button.primary{
  background:var(--blue);
  color:#fff;
}
.button.secondary{
  background:#fff;
  color:var(--blue);
}
.hero-visual img{
  width:100%;
  display:block;
  border-radius:24px;
  box-shadow:var(--shadow);
}
.section{
  max-width:1240px;
  margin:0 auto;
  padding:72px clamp(18px,4vw,56px);
}
.section-head{
  max-width:850px;
  margin-bottom:28px;
}
.section-head h2{
  color:var(--blue-dark);
  font-size:clamp(34px,4vw,58px);
  line-height:1;
  letter-spacing:-.04em;
}
.section-head p:not(.eyebrow){
  color:var(--muted);
  font-size:18px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.cards article{
  background:#fff;
  border:1px solid rgba(0,82,168,.12);
  border-radius:22px;
  padding:24px;
  box-shadow:0 12px 36px rgba(0,63,132,.07);
}
.cards h3{
  color:var(--blue);
  font-size:24px;
  line-height:1.05;
}
ul{
  margin:0;
  padding-left:20px;
  color:#2d4862;
  line-height:1.5;
}
li+li{margin-top:8px}
.leaflet{
  background:#fff;
  border-radius:34px;
}
.leaflet-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}
.leaflet-grid a{
  display:block;
  background:#edf5ff;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.leaflet-grid img{
  display:block;
  width:100%;
  height:auto;
}
.download-line{
  margin:28px 0 0;
}
.contact-card{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:28px;
  align-items:center;
  background:linear-gradient(135deg,#fff,#edf5ff);
  border-radius:30px;
  padding:34px;
  border:1px solid rgba(0,82,168,.12);
  box-shadow:var(--shadow);
}
.contact-card img{
  width:180px;
  height:180px;
  object-fit:contain;
}
.contact-card h2{
  color:var(--blue-dark);
  font-size:40px;
  line-height:1;
}
.muted{color:var(--muted)}
footer{
  padding:34px clamp(18px,4vw,56px);
  text-align:center;
  color:var(--muted);
}
@media(max-width:980px){
  .hero-inner{grid-template-columns:1fr;min-height:auto}
  .cards{grid-template-columns:1fr 1fr}
}
@media(max-width:720px){
  .site-header{position:static;align-items:flex-start}
  nav{gap:12px;font-size:14px;flex-wrap:wrap;justify-content:flex-end}
  .brand img{width:48px;height:48px}
  .hero-inner{padding-top:34px}
  .lead{font-size:17px}
  .cards,.leaflet-grid,.contact-card{grid-template-columns:1fr}
  .contact-card img{width:132px;height:132px}
}


/* Úpravy podle zadání: větší logo, čitelnější úvodní fotka, kontakt */
.site-header {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand img {
  width: 92px;
  height: 92px;
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand strong {
  font-size: 22px;
  line-height: 1.02;
}

.brand small {
  font-size: 16px;
  line-height: 1.05;
}

.hero-inner {
  max-width: 1500px;
  grid-template-columns: 0.58fr 1.42fr;
  gap: 34px;
  padding-top: 38px;
}

.hero-visual {
  align-self: center;
}

.hero-visual img {
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0,63,132,.18);
  transform: scale(1.06);
  transform-origin: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(50px, 6.5vw, 94px);
}

.hero-copy h1 span {
  font-size: clamp(36px, 4.2vw, 60px);
}

.contact-email {
  margin: 10px 0 0;
  font-size: 24px;
  font-weight: 900;
}

.contact-email a {
  color: var(--blue);
  text-decoration: none;
}

.contact-email a:hover {
  color: var(--red);
}

@media(max-width:980px) {
  .brand img {
    width: 74px;
    height: 74px;
  }
  .brand strong {
    font-size: 19px;
  }
  .brand small {
    font-size: 14px;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual img {
    transform: none;
  }
}

@media(max-width:720px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
  }
  .brand img {
    width: 68px;
    height: 68px;
  }
  .hero-inner {
    padding-top: 26px;
  }
  .hero-visual img {
    border-radius: 14px;
  }
  .contact-email {
    font-size: 20px;
  }
}


/* Úprava sekce volebního letáku: větší náhledy, bez interního komentáře */
.section.leaflet {
  max-width: 1640px;
  padding-left: clamp(18px, 3vw, 36px);
  padding-right: clamp(18px, 3vw, 36px);
}

.leaflet .section-head {
  max-width: 1200px;
}

.leaflet-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.leaflet-grid a {
  border-radius: 24px;
}

.leaflet-grid img {
  width: 100%;
  height: auto;
}

@media(max-width:900px) {
  .leaflet-grid {
    grid-template-columns: 1fr;
  }
}
