footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

.footer-logo {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: var(--orange);
}

.footer-slogan {
  font-size: 13px;
  color: var(--hint);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.footer-tagline {
  font-size: 13px;
  color: var(--orange);
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
}

.footer-col-title {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hint);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
}

.footer-intro {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.footer-contact p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--orange);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--hint);
}
