/* File: /partials/css/footer.css */
/* Enhanced footer styling—solid dark background, accent border, refined typography */

.site-footer {
  background: var(--ink);            /* solid dark base */
  color: #ececec;                    /* light text */
  border-top: 4px solid var(--accent);
  padding: 60px 20px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand--footer {
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;                       /* override for dark background */
  text-decoration: none;
}

.footer-tag,
.footer-copy {
  color: #d1d1d1;                    /* subtle muted text */
  margin: 4px 0;
  line-height: 1.5;
}

.footer-nav,
.footer-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.footer-list a {
  color: #d1d1d1;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-cta .btn-accent {
  background: var(--accent);
  color: #fff;
  padding: .75rem 1.5rem;
  font-size: .95rem;
}

.footer-cta .btn-accent:hover,
.footer-cta .btn-accent:focus-visible {
  background: var(--accent-dark);
  outline: none;
}

/* Footer bottom bar */
.footer-bottom {
  background: var(--ink);
  border-top: 1px solid #2c2c2c;
}

.footer-bottom-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.875rem;
  color: #d1d1d1;
}

.footer-mini {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

.footer-mini a {
  color: #d1d1d1;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-mini a:hover,
.footer-mini a:focus-visible {
  color: var(--accent);
  outline: none;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}