/* =============================================================
   FIREB — PATIČKA
   Tmavá, pět sloupců: značka + Produkt · SCALIX · Firma · Podpora.
   ============================================================= */

.site-footer{
  background:var(--bg-dark);
  color:var(--text-on-dark);
  padding-block:var(--space-12) var(--space-9);
  /* Když patička následuje po tmavém CTA, oddělí ji jemná linka */
  border-top:1px solid rgba(255,255,255,.08);
}

.site-footer__cols{
  display:grid;
  grid-template-columns:1.6fr repeat(4,1fr);
  gap:var(--space-7);
}

/* ---------- Značka ---------- */

.site-footer__brand img{height:24px;width:auto}

.site-footer__claim{
  margin-top:var(--space-6);
  max-width:34ch;
  font-size:var(--fs-body);
  line-height:var(--lh-body);
  color:var(--text-on-dark-2);
}

.site-footer__legal-entity{
  display:block;
  margin-top:var(--space-7);
  font-family:var(--font-mono);
  font-size:var(--fs-xs);
  line-height:var(--lh-loose);
  color:var(--text-on-dark-mute);
}

/* ---------- Sociální sítě ---------- */

.site-social{
  display:flex;
  gap:var(--space-3);
  margin-top:var(--space-6);
}
.site-social a{
  width:44px;height:44px;
  display:grid;place-items:center;
  border:1px solid var(--c-panel-line-2);
  border-radius:var(--r-sm);
  color:var(--text-on-dark-2);
  transition:border-color var(--dur) var(--ease),
             color var(--dur) var(--ease);
}
.site-social a:hover{border-color:var(--c-white);color:var(--c-white)}
.site-social svg{width:18px;height:18px;fill:currentColor}

/* ---------- Sloupce odkazů ---------- */

.site-footer__col h2{
  font-family:var(--font-mono);
  font-size:var(--fs-xs);
  font-weight:var(--fw-semibold);
  letter-spacing:var(--ls-caps);
  text-transform:uppercase;
  color:var(--c-white);
  margin-bottom:var(--space-7);
}
.site-footer__col li{margin-bottom:var(--space-5)}
.site-footer__col a{
  font-size:var(--fs-body);
  color:var(--text-on-dark-2);
  transition:color var(--dur-fast) var(--ease);
}
.site-footer__col a:hover{color:var(--c-white)}

/* ---------- Spodní řádek ---------- */

.site-footer__bottom{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:var(--space-4);
  margin-top:var(--space-11);
  padding-top:var(--space-7);
  border-top:1px solid var(--border-on-dark);
  font-family:var(--font-mono);
  font-size:var(--fs-xs);
  color:var(--text-on-dark-mute);
}
.site-footer__links{display:flex;flex-wrap:wrap;gap:var(--space-7)}
.site-footer__links a:hover{color:var(--c-white)}

/* ---------- Menší obrazovky ---------- */

@media (max-width:1000px){
  .site-footer__cols{
    grid-template-columns:repeat(2,1fr);
    gap:var(--space-9) var(--space-7);
  }
  .site-footer__brand{grid-column:1/-1}
}
@media (max-width:520px){
  .site-footer__cols{grid-template-columns:1fr}
  .site-footer__bottom{flex-direction:column}
}
