.site-footer {
  background: var(--bg-section);
  color: var(--text-muted);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 2.5fr;
  gap: 3rem;
}

/* NADPISY */
.site-footer h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* TEXT */
.site-footer p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ODKAZY */
.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* MAPY */
.footer-map iframe {
  width: 100%;
  height: 160px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(100%);
}

/* SPODNÍ LIŠTA */
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-map iframe {
    height: 200px;
  }
}
