
/* =====================
   FOOTER
   ===================== */

footer {
  background: linear-gradient(135deg, var(--burgundy), var(--rose));
  color: white;
  padding: 80px 40px 40px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}

.footer-brand .footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-brand .footer-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  opacity: 0.95;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 420px;
}

.footer-links h5,
.footer-contact h5,
.footer-social h5 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-links ul,
.footer-contact ul,
.footer-social ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-social a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom { margin-top: 64px; }

.footer-bottom .footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.footer-bottom-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 0.85rem;
  opacity: 0.75;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-social ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  fill: var(--light-gray);
  display: inline-block;
}

.footer-social a {
  color: var(--cream);
}

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

/* =========================
   Footer – Mobile
   ========================= */

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

@media (max-width: 600px) {
  footer {
    padding: 64px 24px 32px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-description {
    margin: 0 auto;
  }

  .footer-links ul,
  .footer-contact ul,
  .footer-social ul {
    align-items: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}



