/* ===========================================
   FOOTER - EDITORIAL
   =========================================== */
.footer {
  background: var(--noir-950);
  padding-top: 6rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--noir-700);
}

.footer-brand .logo {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cream-300);
  opacity: 0.7;
  margin-bottom: 2rem;
  max-width: 320px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--noir-600);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: var(--cream-200);
  transition: fill 0.3s;
}

.footer-social a:hover svg {
  fill: var(--noir-900);
}

.footer-column h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.5rem;
}

.footer-links a {
  display: block;
  font-size: 0.9375rem;
  color: var(--cream-300);
  opacity: 0.7;
  padding: 0.5rem 0;
  transition: all 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--cream-50);
  transform: translateX(5px);
}

.footer-newsletter p {
  font-size: 0.875rem;
  color: var(--cream-300);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  background: var(--noir-800);
  border: 1px solid var(--noir-600);
  border-right: none;
  color: var(--cream-100);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: var(--cream-300);
  opacity: 0.5;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold-500);
}

.newsletter-form button {
  padding: 1rem 1.5rem;
  background: var(--gold-500);
  color: var(--noir-900);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}

.newsletter-form button:hover {
  background: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--cream-300);
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 0.8125rem;
  color: var(--cream-300);
  opacity: 0.5;
  transition: all 0.3s;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
