.site-footer {
  background: linear-gradient(180deg, #2b1f30 0%, #0a0a0a 100%);
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(212, 175, 55, 0.4);
  margin-top: 6rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.9fr 0.8fr;
  gap: 2rem;
  padding: 4rem 0 2.5rem;
  align-items: start;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 170px;
  max-width: 100%;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-column h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color:  #c89a63;
  letter-spacing: 0.02em;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 40%);
  pointer-events: none;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-column p,
.footer-column a {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-column p {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.78);
}

.footer-column a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-column a:hover {
  color:  #c89a63;
}


.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  color: #2b1f30;
  background:  #c89a63;
  border-color:  #c89a63;
  transform: translateY(-2px);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.25);
}

.footer-bottom-inner {
  padding: 1.2rem 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.55);
}

.footer-column a {
  position: relative;
}

.footer-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #c89a63;
  transition: width 0.3s ease;
}

.footer-column a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 3rem 0 2rem;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-column h3 {
    margin-bottom: 0.7rem;
  }
}