/* ─────────────────────────────────────────────────────────
 * marketing-footer.css
 *
 * Shared footer styles used by both the homepage (index.php)
 * and the static marketing pages rendered by
 * render_static_page() in app/ui_helpers.php.
 *
 * Lives as its own file so the styles are defined once. Both
 * surfaces <link> to this from their <head>; the previously-
 * duplicated inline copies in those two places have been
 * removed.
 *
 * Deliberately scoped only to .mk-footer-* selectors — nothing
 * here should leak into other pages even if it were loaded
 * accidentally.
 * ──────────────────────────────────────────────────────── */

.mk-footer {
  background: #f5ede2;
  color: #6e574a;
  padding: 48px 32px 32px;
  font-size: 14px;
}
.mk-footer-grid {
  max-width: 1100px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.mk-footer-col h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  color: #4a3a2c;
}
.mk-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mk-footer-col li {
  margin-bottom: 8px;
}
.mk-footer-col a {
  color: #6e574a;
  text-decoration: none;
}
.mk-footer-col a:hover { text-decoration: underline; }
.mk-footer-brand p {
  margin: 0;
  max-width: 320px;
  line-height: 1.5;
}
.mk-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #e6d6c0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.mk-footer-bottom a {
  color: #6e574a;
  text-decoration: none;
}
.mk-footer-bottom a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .mk-footer-grid { grid-template-columns: 1fr 1fr; }
  .mk-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .mk-footer-grid { grid-template-columns: 1fr; }
}
