/* -----------------------------------------
   FOOTER – DOMURAT
   ----------------------------------------- */

.site-footer {
  margin-top: 4rem;
  background-color: var(--color-brand-dark);
  color: #e5e7eb;
  padding: 2.75rem 0 1.5rem;
  font-size: 0.9rem;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: none;
  color: #f9fafb;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr) minmax(0, 1.7fr);
  gap: 2rem;
}

.site-footer-col {
  min-width: 0;
}

.site-footer-heading {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #cbd5f5;
}

.site-footer-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.site-footer-tagline {
  font-size: 0.92rem;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
}

.site-footer-text {
  color: #9ca3af;
  margin: 0;
}

.site-footer-text + .site-footer-text {
  margin-top: 0.25rem;
}

.site-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-list li + li {
  margin-top: 0.35rem;
}

.site-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.site-footer-link-dot::before {
  content: "•";
  font-size: 0.7rem;
  opacity: 0.9;
}

/* Kontakt */
.site-footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 0.6rem;
}

.site-footer-contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.site-footer-contact-value a {
  font-size: 0.95rem;
  font-weight: 600;
}

.site-footer-contact-note {
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Dolna belka */
.site-footer-bottom {
  margin-top: 2.1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  padding-top: 1rem;
}

.site-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer-bottom-text {
  color: #9ca3af;
  font-size: 0.8rem;
}

.site-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer-bottom-link {
  font-size: 0.8rem;
  color: #e5e7eb;
}

.site-footer-bottom-link:hover {
  color: #ffffff;
}

/* Przycisk / link do ustawień cookies */
.site-footer-cookies-btn {
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  font-size: 0.8rem;
  color: #e5e7eb;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer-cookies-btn:hover {
  color: #ffffff;
}

/* CTA we footerze (warianty) */
.site-footer-cta {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(248, 250, 252, 0.08);
}

.site-footer-cta-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.site-footer-cta-text {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.7rem;
}

/* Wariant: środkowane wszystko */
.site-footer--centered .site-footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer--centered .site-footer-bottom-inner {
  justify-content: center;
}

/* Wariant: dwie kolumny */
.site-footer--two-cols .site-footer-inner {
  grid-template-columns: minmax(0, 2fr) minmax(0, 2fr);
}

/* Wariant: mocne CTA na prawo */
.site-footer--cta-right .site-footer-inner {
  grid-template-columns: minmax(0, 2.3fr) minmax(0, 1.7fr);
}

/* Responsywność */
@media (max-width: 900px) {
  .site-footer-inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  }

  .site-footer--cta-right .site-footer-inner,
  .site-footer--two-cols .site-footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer--centered .site-footer-bottom-inner {
    align-items: center;
  }
}
