.consent-banner {
  position: fixed;
  z-index: 500;
  inset: auto max(16px, env(safe-area-inset-right)) max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem 2rem;
  align-items: center;
  max-width: 1080px;
  margin-inline: auto;
  padding: 1.25rem 1.4rem;
  color: #1b2438;
  background: #fff;
  border: 1px solid #d8c7a4;
  box-shadow: 0 20px 60px rgba(14, 24, 48, .24);
  font-family: "Lato", system-ui, sans-serif;
}
.consent-banner[hidden] { display: none; }
.consent-banner strong { display: block; margin-bottom: .25rem; color: #0e1830; }
.consent-banner p { max-width: 68ch; margin: 0; color: #4f5b72; font-size: .9rem; line-height: 1.55; }
.consent-banner a { text-decoration: underline; text-underline-offset: 3px; }
.consent-actions, .consent-dialog-actions { display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; min-width: 0; }
.consent-button, .consent-link {
  min-height: 44px;
  padding: .65rem 1rem;
  border: 1px solid #16243f;
  border-radius: 3px;
  color: #16243f;
  background: #fff;
  font: 700 .78rem/1.2 "Lato", system-ui, sans-serif;
  cursor: pointer;
  min-width: 0;
  white-space: normal;
}
.consent-primary { color: #fff; background: #16243f; }
.consent-link { border-color: transparent; text-decoration: underline; text-underline-offset: 3px; }
.consent-dialog {
  width: min(520px, calc(100% - 2rem));
  padding: 0;
  border: 1px solid #d8c7a4;
  color: #1b2438;
  background: #fff;
  box-shadow: 0 24px 80px rgba(14, 24, 48, .3);
}
.consent-dialog::backdrop { background: rgba(14, 24, 48, .7); }
.consent-dialog form { padding: clamp(1.4rem, 5vw, 2.2rem); }
.consent-dialog h2 { margin: 0 0 .6rem; font: 500 2rem/1.15 "Cormorant Garamond", Georgia, serif; color: #0e1830; }
.consent-dialog > form > p { color: #5b6680; line-height: 1.6; margin-bottom: 1.1rem; }
.consent-dialog label { display: flex; gap: .8rem; align-items: flex-start; padding: 1rem 0; border-top: 1px solid #e4ddd0; cursor: pointer; }
.consent-dialog input { width: 20px; height: 20px; margin-top: .15rem; accent-color: #16243f; }
.consent-dialog label strong, .consent-dialog label small { display: block; }
.consent-dialog label small { margin-top: .2rem; color: #5b6680; line-height: 1.4; }
.consent-dialog-actions { justify-content: flex-end; margin-top: 1.2rem; }

@media (max-width: 760px) {
  .consent-banner { grid-template-columns: 1fr; bottom: max(80px, calc(env(safe-area-inset-bottom) + 72px)); }
  .consent-actions { display: grid; width: 100%; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .consent-actions .consent-button { width: 100%; padding-inline: .45rem; font-size: .72rem; }
  .consent-link { grid-column: 1 / -1; }
}

@media print {
  .consent-banner, .consent-dialog, .floating-actions, .site-header { display: none !important; }
}
