.site-footer .socials{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.site-footer .socials .social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:46px;
  height:46px;
  padding:0;
  border:1px solid rgba(180,255,0,.22);
  border-radius:13px;
  background:
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018)),
    rgba(9,13,8,.5);
  -webkit-backdrop-filter:blur(12px) saturate(140%);
  backdrop-filter:blur(12px) saturate(140%);
  box-shadow:
    0 10px 26px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.06);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,background .22s ease;
}

.site-footer .socials .social-link:hover,
.site-footer .socials .social-link:focus-visible{
  transform:translateY(-3px);
  border-color:rgba(180,255,0,.55);
  background:
    linear-gradient(145deg,rgba(255,255,255,.075),rgba(180,255,0,.045)),
    rgba(9,13,8,.64);
  box-shadow:
    0 16px 32px rgba(0,0,0,.3),
    0 0 20px rgba(180,255,0,.08),
    inset 0 1px 0 rgba(255,255,255,.09);
}

.site-footer .socials .social-link:focus-visible{
  outline:2px solid var(--lime);
  outline-offset:3px;
}

.site-footer .socials .social-link img{
  width:24px;
  height:24px;
  object-fit:contain;
  transition:transform .22s ease,filter .22s ease;
}

.site-footer .socials .social-link:hover img,
.site-footer .socials .social-link:focus-visible img{
  transform:scale(1.08);
  filter:drop-shadow(0 4px 8px rgba(0,0,0,.28));
}

.site-footer .foot-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:nowrap;
  min-height:64px;
  margin-top:36px;
  padding:20px 0 0;
  border-top:1px solid rgba(180,255,0,.16);
}

.site-footer .foot-bottom > span:first-child{
  flex:1 1 auto;
  min-width:0;
  color:var(--muted);
  line-height:1.4;
}

.site-footer .foot-bottom > span:last-child{
  display:inline-flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex:0 0 auto;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.06);
  border-radius:999px;
  background:rgba(255,255,255,.022);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.035);
  color:rgba(166,176,158,.55);
  white-space:nowrap;
}

.site-footer .foot-bottom > span:last-child a{
  display:inline-flex;
  align-items:center;
  padding:2px 0;
  color:var(--muted);
  line-height:1;
  transition:color .2s ease,transform .2s ease;
}

.site-footer .foot-bottom > span:last-child a:hover,
.site-footer .foot-bottom > span:last-child a:focus-visible{
  color:var(--lime);
  transform:translateY(-1px);
}

/* Contact hero logo panel */
.contact-page .hero-image{
  position:relative;
  display:grid;
  place-items:center;
  min-height:clamp(520px,56vw,760px);
  overflow:hidden;
  border:1px solid rgba(180,255,0,.28);
  border-radius:22px;
  background:
    radial-gradient(circle at 50% 43%,rgba(180,255,0,.16),transparent 28%),
    radial-gradient(circle at 50% 50%,rgba(180,255,0,.06),transparent 58%),
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.015) 46%,rgba(180,255,0,.035)),
    rgba(8,12,7,.62);
  -webkit-backdrop-filter:blur(22px) saturate(150%);
  backdrop-filter:blur(22px) saturate(150%);
  box-shadow:
    0 28px 70px rgba(0,0,0,.34),
    0 0 45px rgba(180,255,0,.05),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(180,255,0,.06);
}

.contact-page .hero-image img{
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
  border:0;
}

.contact-page .hero-image::before{
  content:"";
  position:absolute;
  inset:14%;
  z-index:2;
  background:url('/assets/logo.png') center/contain no-repeat;
  filter:
    drop-shadow(0 18px 36px rgba(0,0,0,.42))
    drop-shadow(0 0 28px rgba(180,255,0,.18));
}

.contact-page .hero-image::after{
  content:"";
  position:absolute;
  inset:14px;
  z-index:3;
  pointer-events:none;
  border:1px solid rgba(180,255,0,.42);
  border-radius:14px;
  box-shadow:
    inset 0 0 30px rgba(180,255,0,.035),
    0 0 24px rgba(180,255,0,.045);
}

@media(max-width:680px){
  .site-footer .socials .social-link{
    width:44px;
    height:44px;
  }

  .site-footer .foot-bottom{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding-top:22px;
    text-align:center;
  }

  .site-footer .foot-bottom > span:first-child{
    flex:0 1 auto;
  }

  .site-footer .foot-bottom > span:last-child{
    justify-content:center;
    flex-wrap:wrap;
    white-space:normal;
  }

  .contact-page .hero-image{
    min-height:420px;
  }

  .contact-page .hero-image::before{
    inset:18%;
  }
}

@supports not ((-webkit-backdrop-filter:blur(1px)) or (backdrop-filter:blur(1px))){
  .site-footer .socials .social-link,
  .site-footer .foot-bottom > span:last-child,
  .contact-page .hero-image{
    background:#11160f;
  }
}
