/* =============================================
   FOOTER.CSS — Footer Styles
   ============================================= */

.footer {
  background-color: var(--c-darkest);
  padding: 5rem 0 2.5rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Brand Column ── */
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer__brand-icon {
  background-color: transparent;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  overflow: hidden;
}

.footer__brand-icon .icon {
  width: 2rem;
  height: 2rem;
  color: var(--c-darkest);
}

.footer__brand-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--c-white);
}

.footer__brand-desc {
  color: var(--c-gray-400);
  max-width: 24rem;
  font-size: 1.125rem;
}

/* ── Contact Card ── */
.footer__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer__contact {
    align-items: flex-end;
  }
}

.footer__contact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 28rem;
  text-align: left;
}

@media (min-width: 768px) {
  .footer__contact-card {
    text-align: right;
  }
}

.footer__contact-label {
  color: var(--c-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.footer__contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 1rem;
}

.footer__contact-desc {
  color: var(--c-gray-400);
  margin-bottom: 1.5rem;
}

/* ── Bottom Bar ── */
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: var(--c-gray-500);
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__legal-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.footer__legal-links span {
  cursor: pointer;
  transition: color var(--transition-normal);
}

.footer__legal-links span:hover {
  color: var(--c-gold);
}
