/* footer.css */

.site-footer {
  background: var(--ink);
  color: var(--chalk-dim);
  padding: 64px 0 28px;
  font-size: 14px;
}
.site-footer h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chalk);
  margin: 0 0 14px;
}
.site-footer a { color: var(--chalk-dim); }
.site-footer a:hover { color: var(--chalk); text-decoration: underline; }

.footer-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  margin-bottom: 36px;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; } }

.footer-brand { font-family: var(--font-display); font-size: 28px; color: var(--chalk); margin-bottom: 12px; display: inline-block; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }

.site-footer__bottom {
  border-top: 1px solid rgba(237,234,227,.15);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted-soft);
}
.site-footer__bottom a { color: var(--muted-soft); }
.site-footer__bottom a:hover { color: var(--chalk); }

/* cookie consent tray (bottom-left card layout) */
.consent-tray {
  position: fixed;
  left: 16px; bottom: 16px;
  width: calc(100% - 32px);
  max-width: 380px;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.08);
  border: 1px solid var(--rule);
  padding: 20px 22px 18px;
  z-index: 90;
  font-size: 14px;
  line-height: 1.55;
}
.consent-tray[hidden] { display: none; }
.consent-tray__title { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; margin: 0 0 6px; color: var(--ink); }
.consent-tray p { margin: 0 0 14px; color: var(--ink-soft); font-size: 14px; max-width: none; }
.consent-tray__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.consent-tray__actions button {
  flex: 1 1 auto;
  font: 600 14px/1 var(--font-body);
  padding: 11px 14px;
  border-radius: var(--r-sm);
  cursor: pointer;
  min-height: 44px;
  border: 1px solid var(--ink);
  transition: background .18s ease, color .18s ease;
}
.consent-tray__actions [data-cc="accept"] {
  background: var(--ink); color: var(--chalk);
}
.consent-tray__actions [data-cc="accept"]:hover { background: var(--bordeaux); border-color: var(--bordeaux); }
.consent-tray__actions [data-cc="reject"] {
  background: transparent; color: var(--ink);
}
.consent-tray__actions [data-cc="reject"]:hover { background: var(--ink); color: var(--chalk); }
.consent-tray a { color: var(--bordeaux); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 480px) {
  .consent-tray { left: 12px; right: 12px; bottom: 12px; width: auto; max-width: none; }
}
