/* ── Footer ── */
.site-footer {
  background: var(--color-accent);
  padding: 3.5rem 1.75rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  font-family: var(--font-primary);
  font-weight: 900;
  font-size: 2.25rem;
  text-transform: uppercase;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -1px;
}

.footer-logo span {
  color: var(--color-secondary);
}

.footer-tag {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  max-width: 280px;
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
}

.footer-nav a {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.25rem 0;
}

.footer-nav a:hover,
.footer-nav a.active {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.875rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius, 8px);
  font-family: var(--font-secondary);
  font-weight: 700;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.footer-social-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.footer-social-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
}

.footer-copy {
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .site-footer {
    padding: 4rem 2rem 2.5rem;
  }

  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 0.375rem;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  .site-footer {
    padding: 5rem 6.25rem 3rem;
  }

  .footer-logo {
    font-size: 3rem;
  }

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

  .footer-nav {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.25rem 2rem;
  }
}
