/* habb — canonical footer
 * Single source of truth for the site-wide footer.
 * All pages load this and use the standard markup defined in /docs/footer-markup.html.
 * Tokens come from typography.css :root.
 */

footer {
  padding: 48px clamp(20px, 4vw, 64px) 56px;
  background: #2A1B12;
  color: #F4EEE4;
  font-family: 'Manrope', system-ui, sans-serif;
}
footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
footer .footer-brand .footer-wordmark {
  display: block;
  margin: 0 0 20px;
  text-decoration: none;
  line-height: 0;
}
footer .footer-brand .footer-wordmark img {
  display: block;
  height: clamp(40px, 4.5vw, 56px);
  width: auto;
}
footer .footer-tagline {
  font-size: var(--t-sm, 13px);
  line-height: 1.55;
  color: rgba(244, 238, 228, 0.65);
  max-width: 36ch;
  margin: 0;
}
footer .footer-links {
  position: static;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  justify-content: start;
}
footer .footer-group { min-width: 0; }
footer .footer-group-label {
  margin: 0 0 18px;
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: var(--t-xs, 11px);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 238, 228, 0.55);
}
footer .footer-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}
footer .footer-group a {
  color: rgba(244, 238, 228, 0.85);
  text-decoration: none;
  font-size: var(--t-sm, 13px);
  letter-spacing: -0.005em;
  transition: color 220ms cubic-bezier(0.22, 1, 0.36, 1), background-size 380ms cubic-bezier(0.22, 1, 0.36, 1);
  background-image: linear-gradient(#C07A5C, #C07A5C);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 1px;
  padding-bottom: 2px;
}
footer .footer-group a:hover {
  color: #E5C3B1;
  background-size: 100% 1px;
}
footer .footer-meta {
  max-width: 1200px;
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 238, 228, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: var(--t-xs, 11px);
  color: rgba(244, 238, 228, 0.72);
  letter-spacing: 0.06em;
}
footer .footer-meta p { margin: 0; }
footer 

@media (max-width: 880px) {
  footer .footer-inner { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 480px) {
  footer .footer-links { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
}
