/* Site Footer Style - Simplified & Premium */

.site-footer {
  background-color: #1a1e21;
  color: #fff;
  padding: clamp(48px, 8vw, 80px) 0 32px;
  line-height: 1.6;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.footer-column h3 {
  color: #fff;
  font-size: 0.85rem;
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-logo-img {
  height: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(1.3) contrast(1.2) drop-shadow(0 0 1px white);
}

.footer-brand-link {
  display: inline-block;
  transition: opacity 0.2s;
}

.footer-brand-link:hover {
  opacity: 0.8;
}

.footer-description {
  font-size: 0.95rem;
  opacity: 0.7;
  max-width: 28ch;
}

.subsection-title {
  margin-top: 40px;
}

/* Links & Lists */
.footer-links,
.footer-list-text {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-list-text li {
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.footer-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s, text-decoration-color 0.2s;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

/* Contact Column */
.contact-column a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.contact-column a:hover {
  opacity: 0.7;
}

.org-info {
  margin-top: 24px;
  font-size: 0.85rem;
  opacity: 0.5;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.org-info p {
  margin: 4px 0;
}

/* CTA */
.footer-cta {
  margin-top: 24px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}

.social-link:hover {
  opacity: 1;
  color: var(--color-accent);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

/* Copyright Bar */
.footer-bottom {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

/* Desktop spacing */
@media (min-width: 900px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}