/* ═══════════════════════════════════════════════════════
   footer.css  —  Footer component (all pages)
   Accent color controlled via --footer-accent CSS var.
   ═══════════════════════════════════════════════════════ */

footer {
  background: var(--footer-bg, #1a1a1a);
  border-top: 2px solid var(--footer-accent, #E8541A);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 5vw 2.5rem;
  align-items: start;
}
.footer-brand {
  font-family: 'Cousine', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: var(--footer-accent, #E8541A);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-family: 'Cousine', monospace;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col-title {
  font-family: 'Cousine', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-family: 'Cousine', monospace;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.footer-links a:hover { color: var(--footer-accent, #E8541A); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.2rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-family: 'Cousine', monospace;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}

.footer-wordmark {
  padding: 0;
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-size: clamp(4.5rem, 20vw, 16rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--footer-accent, #E8541A);
  opacity: 0.55;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
}

.mobile-br { display: none; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-wordmark {
    font-size: clamp(2.8rem, 18vw, 5rem);
    white-space: normal;
    overflow: visible;
    line-height: 0.9;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
  .mobile-br { display: block; }
}
