/* Rozbudowana stopka QR Etercal. Ładowana po głównym style.css. */
.site-footer {
  color: #dcebe0;
  background:
    radial-gradient(circle at 8% 6%, rgba(74, 222, 128, .10), transparent 24rem),
    linear-gradient(135deg, #0b2515, #102f1c 56%, #0c2314);
  font-size: .91rem;
}

.footer-main {
  padding: clamp(2.3rem, 5vw, 4rem) 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(130px, .7fr) minmax(175px, 1fr) minmax(180px, .9fr);
  gap: 2rem clamp(1.5rem, 4vw, 4rem);
  padding-bottom: 2.15rem;
}

.site-footer .footer-brand {
  margin-bottom: 1.05rem;
  color: #fff;
}

.site-footer .brand-mark {
  background: #1d7c3b;
  box-shadow: 0 0 0 1px rgba(255,255,255,.14), 0 8px 18px rgba(0,0,0,.18);
}

.site-footer .brand small {
  color: #bcd8c4;
}

.footer-intro > p {
  max-width: 33rem;
  margin: .75rem 0 0;
  color: #c8dbcdb;
  line-height: 1.62;
}

.footer-intro .footer-note {
  color: #a8cbb2;
  font-size: .84rem;
}

.footer-column h2 {
  margin: .15rem 0 .9rem;
  color: #fff;
  font-size: .95rem;
  letter-spacing: .01em;
}

.footer-column ul {
  display: grid;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #d5f6dc;
  text-decoration-color: rgba(189, 240, 201, .38);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #fff;
  text-decoration-color: currentColor;
}

.footer-column p {
  margin: 0 0 1rem;
  color: #c8dbcdb;
  line-height: 1.55;
}

.footer-contact-small {
  color: #a9c6b0 !important;
  font-size: .82rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(209, 245, 218, .18);
  color: #a9c6b0;
  font-size: .79rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom strong {
  color: #d8f4de;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-main {
    padding-top: 2.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.7rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .3rem;
  }
}
