/* Privacy controls shared by the static pages and Astro layouts. */
.ofu-ck {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 130;
  display: none;
  box-sizing: border-box;
  width: 440px;
  max-width: calc(100vw - 48px);
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 24px;
  border: 1px solid rgba(250, 249, 246, .18);
  border-radius: 18px;
  background: #131311;
  color: #faf9f6;
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .65);
  font-family: 'Inter', sans-serif;
  text-align: left;
}
.ofu-ck.show { display: block; }
.ofu-ck h2 {
  margin: 0 0 12px;
  color: #faf9f6;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -.02em;
}
.ofu-ck p { margin: 0 0 14px; color: #e1e0d8; font-size: 13px; line-height: 1.65; }
.ofu-ck .ofu-ck-detail { font-size: 12px; }
.ofu-ck a { color: #faf9f6; text-decoration: underline; text-underline-offset: 3px; }
.ofu-ck-btns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 20px; }
.ofu-ck button {
  min-height: 52px;
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid #faf9f6;
  border-radius: 100px;
  background: #faf9f6;
  color: #131311;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.ofu-ck #ofuCkB { background: #d9c79b; border-color: #d9c79b; }
.ofu-ck #ofuCkR { background: transparent; color: #faf9f6; border-color: #faf9f6; }
.ofu-ck button:hover { background: #e8e5da; border-color: #e8e5da; box-shadow: 0 0 0 3px rgba(250, 249, 246, .18); }
.ofu-ck #ofuCkB:hover { background: #e6d6b2; border-color: #e6d6b2; }
.ofu-ck #ofuCkR:hover { background: rgba(250, 249, 246, .1); border-color: #faf9f6; }
.ofu-ck a:focus-visible, .ofu-ck button:focus-visible, .ofu-ck h2:focus {
  outline: 2px solid #c4b798;
  outline-offset: 4px;
}
.ofu-ck button:focus-visible { outline-color: #faf9f6; }
.ofu-legal-nav {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 24px;
  padding-top: 20px;
  padding-right: 76px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.6;
}
.ofu-legal-nav a { color: #57574f; text-decoration: underline; text-underline-offset: 4px; }
.ofu-legal-nav a:hover { color: #131311; }
.ofu-legal-nav a:focus-visible { outline: 2px solid #71674f; outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  .ofu-ck button { transition: none; }
}
@media (max-width: 560px) {
  .ofu-ck {
    left: 12px;
    right: 12px;
    bottom: 152px;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 164px);
    max-height: calc(100dvh - 164px);
    padding: 20px;
  }
  .ofu-legal-nav { gap: 10px 18px; }
}
@media (max-height: 480px) {
  .ofu-ck { bottom: 12px; max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); }
}
