.footer{
  margin-top:120px;
  padding:70px 0 30px;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.05));
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:50px;
}

.footer-logo{
  font-size:22px;
  font-weight:800;
  margin-bottom:10px;
}

.footer-logo img{
  display:block;
  width:auto;
  height:72px;
  object-fit:contain;
}

.footer-brand p{
  color:var(--muted, #9fb0c8);
  max-width:320px;
}

.footer-nav,
.footer-contact{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footer-nav a{
  color:var(--muted, #9fb0c8);
  transition:.2s;
}

.footer-nav a:hover{
  color:white;
}

.footer-social{
  display:flex;
  gap:14px;
  margin-top:20px;
}

.social{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  font-size:20px;
  color:#f3d27b;
  background:transparent;
  border:1px solid rgba(243,197,107,.32);
  box-shadow:0 8px 22px rgba(5,10,18,.16), 0 0 0 1px rgba(243,197,107,.04) inset;
  backdrop-filter:blur(10px);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease, color .35s ease;
}

.social:hover{
  transform:translateY(-4px) scale(1.03);
  box-shadow:0 14px 30px rgba(5,10,18,.22), 0 0 16px rgba(243,197,107,.08);
  border-color:rgba(243,197,107,.52);
  background:rgba(243,197,107,.04);
  color:#ffe8a6;
}

.insta-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin-top:10px;
}

.insta-grid img{
  width:100%;
  height:70px;
  object-fit:cover;
  border-radius:8px;
  transition:.3s;
}

.insta-grid img:hover{
  transform:scale(1.05);
}

.footer-divider{
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  margin:40px 0;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  color:var(--muted, #9fb0c8);
  font-size:14px;
}

.footer-mini-nav{
  display:flex;
  gap:20px;
}

.footer-mini-nav a{
  color:var(--muted, #9fb0c8);
}

.footer-mini-nav a:hover{
  color:white;
}

@media (max-width:768px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  .footer-bottom{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }
}
