#footer {
  background: var(--black-light);
  color: var(--white);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-container {
  max-width: 1280px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 640px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: var(--space-xl);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
  justify-content: center;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: var(--font-base);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 32ch;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: var(--font-xl);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-base);
  transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--font-base);
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
  font-size: var(--font-lg);
  color: var(--gold);
  margin-top: 0.2rem;
  min-width: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: var(--space-2xl) 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 380px) {
  .footer-social {
    gap: var(--space-sm);
  }
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-social a:hover i {
  color: var(--white);
}

.footer-social i {
  font-size: var(--font-lg);
  color: var(--white);
}

.footer-copyright {
  font-size: var(--font-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-legal {
  display: block;
  margin-top: var(--space-xs);
}

@media (min-width: 768px) {
  .footer-legal {
    display: inline;
    margin-top: 0;
    margin-left: var(--space-sm);
  }
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-legal a:hover {
  color: var(--gold);
}
