/* Marchenholm — footer.css : compliance row, colophon, legal block. */

/* Compliance row (above main footer) */
.mh-compliance-row {
  border-top: 1px solid var(--c-stone);
  border-bottom: 1px solid var(--c-stone);
  background: var(--c-paper);
  padding: 12px 0;
  text-align: center;
  font-family: var(--f-mono);
  font-size: var(--f-caption);
  font-weight: 500;
  color: var(--c-stone);
  letter-spacing: 0.04em;
}
.mh-compliance-row a {
  color: var(--c-stone);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.mh-compliance-row a:hover { color: var(--c-ink); border-bottom-color: var(--c-ink); }

/* Footer (paper-alt) */
.mh-footer {
  background: var(--c-paper-alt);
  padding: calc(var(--space-section) * 0.75) 0 var(--space-block);
}

.mh-footer__wordmark {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink);
  text-decoration: underline;
  text-decoration-color: var(--c-accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  display: inline-block;
}

.mh-footer__location {
  font-family: var(--f-body);
  font-size: var(--f-body-s);
  color: var(--c-stone);
  margin-top: 12px;
}
.mh-footer__tagline {
  font-family: var(--f-mono);
  font-size: var(--f-label);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-stone);
  margin-top: 6px;
}

.mh-footer__rule {
  height: 1px;
  background: var(--c-stone);
  margin: var(--space-block) 0;
}

.mh-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: var(--space-block);
}
.mh-footer__col h4 {
  font-family: var(--f-mono);
  font-size: var(--f-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.mh-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.mh-footer__col a {
  color: var(--c-ink);
  font-weight: 500;
  font-size: var(--f-body-s);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.mh-footer__col a:hover { color: var(--c-accent); border-bottom-color: var(--c-accent); }

.mh-footer__colophon,
.mh-footer__legal {
  font-family: var(--f-mono);
  font-size: var(--f-label);
  color: var(--c-ink-muted);
  line-height: 1.7;
}
.mh-footer__colophon { margin-bottom: var(--space-item); }
.mh-footer__legal p + p { margin-top: 12px; }

/* Cookie-preferences button — bottom of footer */
.mh-footer__cookies {
  margin-top: var(--space-item);
}
.mh-footer__cookie-btn {
  font-family: var(--f-mono);
  font-size: var(--f-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px;
}
.mh-footer__cookie-btn[hidden] { display: none; }
