/* ── Footer ───────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: min(100%, 620px);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}

.footer-brand-icon {
  width: 82px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-wordmark {
  width: min(440px, calc(100% - 100px));
  height: auto;
}

.footer-tagline {
  width: min(360px, 78%);
  height: auto;
}

.footer-brand-icon,
.footer-wordmark,
.footer-tagline {
  filter: brightness(1.75) saturate(0.75);
}

.footer-meta {
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-email {
  font-size: 13px;
  color: var(--text-sub);
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--cyan);
}
