/* Cookie preference bar. Paper / ink / accent only. Not a modal. */
.cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #E8E4D9;
  color: #191714;
  border-top: 2px solid #191714;
  padding: 16px 88px;
}
.cookiebar.is-open { display: flex; }
.cookiebar-copy {
  font-family: "Newsreader", Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 300;
  max-width: 52em;
}
.cookiebar-copy a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.cookiebar-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.cookiebar-btn {
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 12px 18px;
  background: transparent;
  color: inherit;
  border: 1px solid #191714;
}
.cookiebar-accept { background: #2F6B47; color: #E8E4D9; border-color: #2F6B47; }
.cookiebar-accept:hover { filter: brightness(1.12); }
.cookiebar-reject:hover { background: #191714; color: #E8E4D9; }
body.cookiebar-open { padding-bottom: 88px; }
@media (max-width: 1100px) { .cookiebar { padding: 16px 48px; } }
@media (max-width: 760px) {
  .cookiebar { flex-wrap: wrap; padding: 16px 20px; gap: 14px; }
  .cookiebar-copy { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
  .cookiebar-accept { filter: none; }
}
