/* =====================================================
   WICKED FOOTER — Vault-grade
===================================================== */

.wicked-footer{
  position: relative;
  background: #060910;
  border-top: 1px solid rgba(207,230,255,.10);
  overflow: hidden;
}

/* subtle atmosphere */
.wicked-footer::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1000px 360px at 50% 0%, rgba(120,190,255,.06), transparent 65%),
    radial-gradient(900px 300px at 70% 20%, rgba(255,120,40,.05), transparent 70%),
    linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.65));
  opacity: .95;
}

.wicked-footer__inner{
  position: relative;
  z-index: 1;
  width: min(1220px, 94vw);
  margin: 0 auto;
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem;
}

.wicked-footer__top{
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.wicked-footer__brandlink{
  display:flex;
  gap: 20px;
  align-items:center;
}

.wicked-footer__brandtext{
  display:flex;
  flex-direction: column;
  justify-content:center;
}

.wicked-footer__logo{
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 24px;
  padding: 14px;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,.28),
    rgba(0,0,0,.18)
  );

  border: 1px solid rgba(207,230,255,.18);

  box-shadow:
    0 28px 70px rgba(0,0,0,.65),
    0 0 60px rgba(120,190,255,.12),
    0 0 40px rgba(255,120,40,.08);

  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.wicked-footer__brandlink:hover .wicked-footer__logo{
  transform: translateY(-2px);
  border-color: rgba(255,140,60,.28);

  box-shadow:
    0 34px 90px rgba(0,0,0,.72),
    0 0 70px rgba(120,190,255,.18),
    0 0 50px rgba(255,120,40,.14);
}

.wicked-footer__name{
  font-family: 'Cinzel', serif;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 14px;
}

.wicked-footer__tag{
  margin-top: 2px;
  opacity: .78;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
}

.wicked-footer__desc{
  margin: 16px 0 18px;
  max-width: 54ch;
  color: rgba(220,235,255,.76);
  line-height: 1.6;
}

.wicked-footer__cta{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.wicked-footer__button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  text-decoration:none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;

  color: rgba(255,235,220,.92);
  background: linear-gradient(180deg, rgba(255,120,40,.18), rgba(0,0,0,.18));
  border: 1px solid rgba(255,120,40,.20);
  box-shadow: 0 18px 52px rgba(0,0,0,.48);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.wicked-footer__button:hover{
  transform: translateY(-1px);
  border-color: rgba(255,170,60,.35);
  background: linear-gradient(180deg, rgba(255,120,40,.26), rgba(0,0,0,.18));
}

.wicked-footer__button--ghost{
  color: rgba(220,235,255,.86);
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(207,230,255,.14);
  box-shadow: 0 18px 52px rgba(0,0,0,.36);
}

.wicked-footer__button--ghost:hover{
  border-color: rgba(207,230,255,.24);
  background: rgba(0,0,0,.28);
}

.wicked-footer__button--wide{
  width: 100%;
  margin-top: 12px;
}

.wicked-footer__social{
  display:flex;
  gap: 10px;
  margin-top: 10px;
}

.wicked-footer__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background: rgba(0,0,0,.22);
  border: 1px solid rgba(207,230,255,.14);
  box-shadow: 0 14px 34px rgba(0,0,0,.48);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.wicked-footer__icon svg{
  width: 20px;
  height: 20px;
  fill: rgba(220,235,255,.80);
  opacity: .92;
}

.wicked-footer__icon:hover{
  transform: translateY(-1px);
  border-color: rgba(255,120,40,.20);
  background: rgba(0,0,0,.28);
}

.wicked-footer__cols{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.wicked-footer__title{
  font-family: 'Cinzel', serif;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(235,245,255,.90);
  margin-bottom: 12px;
}

.wicked-footer__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap: 8px;
}

.wicked-footer__list a{
  color: rgba(220,235,255,.74);
  text-decoration:none;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 10px;
  padding: 6px 8px;
  display:inline-flex;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
  border: 1px solid transparent;
}

.wicked-footer__list a:hover{
  background: rgba(0,0,0,.22);
  border-color: rgba(207,230,255,.12);
  color: rgba(240,250,255,.92);
}

.wicked-footer__contact{
  color: rgba(220,235,255,.74);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.wicked-footer__contactline{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(207,230,255,.08);
}

.wicked-footer__contactline .label{
  opacity: .65;
}

.wicked-footer__contactline .value{
  text-transform:none;
  letter-spacing: .02em;
  color: rgba(235,245,255,.82);
}

/* Bottom bar */
.wicked-footer__bottom{
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(207,230,255,.08);
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wicked-footer__fine{
  color: rgba(210,230,255,.60);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 980px){
  .wicked-footer__top{
    grid-template-columns: 1fr;
  }
  .wicked-footer__cols{
    grid-template-columns: 1fr;
  }
}
/* =========================
   FOOTER LEGAL
========================= */
.wicked-footer__legal{
  font-size:.85rem;
  opacity:.6;
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:8px;
}

.wicked-footer__legal a{
  color:inherit;
  text-decoration:none;
}

.wicked-footer__legal a:hover{
  opacity:1;
}
