.site-footer{
  margin-top: clamp(3rem, 4vw, 5.5rem);

  --f-bg-top: var(--color-brand-dark, #0b1630);
  --f-bg-bot: var(--color-brand, #0f2a64);

  color: rgba(248, 250, 252, 0.92);
  padding: clamp(2.6rem, 3.2vw, 3.4rem) 0 0;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 12% 8%, rgba(56,189,248,0.16), transparent 55%),
    radial-gradient(circle at 88% 22%, rgba(37,99,235,0.14), transparent 58%),
    linear-gradient(180deg, var(--f-bg-top) 0%, var(--f-bg-bot) 100%);
}

.site-footer::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 1px;
  background: rgba(255,255,255,0.10);
}

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

.site-footer a:focus-visible,
.site-footer button:focus-visible{
  outline: 2px solid rgba(56,189,248,0.70);
  outline-offset: 3px;
  border-radius: 10px;
}

.site-footer-panel{
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,0.07), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 22px 60px rgba(2,6,23,0.35);
  padding: clamp(1.4rem, 1.2vw + 1.2rem, 2.2rem);
}

.site-footer-inner{
  display:grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 2vw, 2.8rem);
  align-items: start;
}

.site-footer-col{ min-width:0; }
.site-footer-col--nav{ justify-self: center; }
.site-footer-col--contact{ justify-self: end; }

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

.site-footer .logo-mark{
  width: clamp(52px, 1.2vw + 44px, 70px);
  height: clamp(52px, 1.2vw + 44px, 70px);
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.site-footer .logo-mark img{
  width: clamp(36px, 0.8vw + 30px, 48px);
  height: clamp(36px, 0.8vw + 30px, 48px);
  object-fit: contain;
}

.site-footer-brand-name{
  font-size: clamp(1.05rem, 0.3vw + 1.0rem, 1.28rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(248,250,252,0.98);
}

.site-footer-tagline{
  margin: 0 0 0.8rem;
  font-size: clamp(0.95rem, 0.2vw + 0.92rem, 1.05rem);
  line-height: 1.6;
  color: rgba(226,232,240,0.92);
  max-width: 60ch;
}

.site-footer-text{
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(226,232,240,0.74);
  max-width: 62ch;
}

.site-footer-heading{
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 750;
  margin-bottom: 1rem;
  color: rgba(226,232,240,0.92);
}

.site-footer-list{ list-style: none; padding: 0; margin: 0; }
.site-footer-list li + li{ margin-top: 0.55rem; }

.site-footer-link{
  display:inline-flex;
  align-items:center;
  gap: 0.55rem;
  font-size: 0.94rem;
  color: rgba(226,232,240,0.90);
  transition: opacity .15s ease, transform .15s ease, color .15s ease;
}
.site-footer-link::before{
  content:"•";
  opacity: 0.55;
  transform: translateY(-1px);
}
.site-footer-link:hover{
  opacity: 1;
  transform: translateX(2px);
  color: rgba(248,250,252,0.98);
}

.site-footer-contactitem{ margin: 0; }

.site-footer-col--contact .site-footer-link{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  width: 100%;
  padding: 0.15rem 0;
}
.site-footer-contactmain{
  font-weight: 700;
  color: rgba(248,250,252,0.98);
  white-space: nowrap;
}

/* bottom */
.site-footer-bottom{
  margin-top: 1.6rem;
  padding: 1.05rem 0 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.10);
}

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

.site-footer-bottom-text{
  margin: 0;
  font-size: 0.88rem;
  color: rgba(226,232,240,0.82);
}

.site-footer-bottom-links{
  display:flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.site-footer-bottom-link{
  appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font-size: 0.88rem;
  color: rgba(226,232,240,0.90);
  text-decoration: none;
  transition: opacity .15s ease;
}

.site-footer-bottom-link:hover{ opacity: 1; color: rgba(248,250,252,0.98); }

/* responsive */
@media (max-width: 980px){
  .site-footer-inner{
    grid-template-columns: 1fr;
  }
  .site-footer-col--nav,
  .site-footer-col--contact{
    justify-self: start;
  }
  .site-footer-col--contact .site-footer-link{
    justify-content: flex-start;
    gap: 0.8rem;
  }
  .site-footer-contactmain{ white-space: normal; }
}
/* ===============================
   FIX FOOTER (1) + (2)
   1) usuń widoczny panel/kwadrat
   2) napraw rozjechany telefon/e-mail
   =============================== */

/* (1) Panel ma zniknąć — ma być tylko tło + tekst */
.site-footer-panel{
  display: contents;            /* usuwa “box” bez ruszania HTML */
}

.site-footer-panel,
.site-footer-panel *{
  backdrop-filter: none !important;
}

/* na wypadek, jeśli panel był stylowany gdzie indziej */
.site-footer-panel{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* zachowaj oddech bez panelu */
.site-footer-inner{
  padding-bottom: 2.2rem;
}

/* (2) Kontakt: bez kropki i bez rozjeżdżania */
.site-footer-col--contact .site-footer-link{
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.85rem;
  padding: 0.18rem 0;
}

/* usuń “•” tylko w kolumnie kontaktu */
.site-footer-col--contact .site-footer-link::before{
  content: none !important;
}

/* etykieta Telefon / E-mail */
.site-footer-col--contact .site-footer-link > span:first-child{
  min-width: 78px;              /* trzyma równo */
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 750;
  color: rgba(226,232,240,0.70);
}

/* wartość */
.site-footer-col--contact .site-footer-contactmain{
  font-size: 1.02rem;
  font-weight: 850;
  color: rgba(248,250,252,0.98);
  white-space: nowrap;
}

/* na węższych ekranach pozwól się zawijać */
@media (max-width: 520px){
  .site-footer-col--contact .site-footer-link > span:first-child{
    min-width: 70px;
  }
  .site-footer-col--contact .site-footer-contactmain{
    white-space: normal;
    word-break: break-word;
  }
}
