.site-footer {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 28px 20px 24px;
  color: rgba(48, 38, 43, .72);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
  border-top: 1px solid rgba(75, 15, 35, .12);
  background: rgba(255, 250, 245, .88);
  backdrop-filter: blur(14px);
}
.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin: 0 0 16px;
}
.site-footer .legal-links {
  gap: 10px 16px;
  margin-top: -6px;
}
.site-footer .legal-links a {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .82;
}
.site-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4b0f23;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}
.site-footer .footer-links a:hover { color: #9d682f; transform: translateY(-1px); }
.site-footer .social-icon { width: 18px; height: 18px; fill: currentColor; }
.site-footer p { margin: 0 0 5px; font-size: 12px; font-weight: 600; letter-spacing: .12em; }
.site-footer small { display: block; font-size: 10px; letter-spacing: .09em; }
.site-footer.public-site-footer {
  color: rgba(255, 255, 255, .64);
  border-top-color: rgba(255, 255, 255, .09);
  background: #080808;
  backdrop-filter: none;
}
.site-footer.public-site-footer .footer-links a { color: #f5f5f5; }
.site-footer.public-site-footer .footer-links a:hover { color: #f26a21; }
.cookie-notice {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  padding: 16px clamp(18px, 4vw, 42px);
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: rgba(14, 14, 14, .96);
  color: #f5f5f5;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, .28);
  font-family: "Inter", Arial, sans-serif;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 24px;
}
.cookie-notice[hidden] { display: none; }
.cookie-notice strong {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cookie-notice p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}
.cookie-notice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 0;
  justify-content: flex-end;
}
.cookie-notice a {
  color: #f5f5f5;
  font-size: 12px;
  font-weight: 700;
  text-decoration-color: rgba(242, 106, 33, .65);
  text-underline-offset: 4px;
}
.cookie-notice button {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid #f26a21;
  border-radius: 2px;
  background: #f26a21;
  color: #fff;
  font: 700 12px Arial, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}
.cookie-notice button:hover { background: #d95412; border-color: #d95412; }
@media (max-width: 520px) {
  .site-footer { padding-inline: 14px; }
  .site-footer .footer-links { gap: 14px 18px; }
  .cookie-notice {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .cookie-notice-actions {
    justify-content: flex-start;
  }
}
