:root {
  color-scheme: dark;
  --gold: #eab108;
  --ink: #17120a;
  --page-width: 1320px;
  font-family: 'Gloria Hallelujah', 'Comic Sans MS', cursive;
  color: #fff;
  background: #000;
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-size: 1.05rem; line-height: 1.7; }
img { max-width: 100%; height: auto; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
[hidden] { display: none !important; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.5; font-weight: 400; }
h3 { font-size: 1.4rem; }
a { color: #ffcf66; text-underline-offset: 0.25em; }
a:hover { color: #ffe5ac; }
section[id], main[id] { scroll-margin-top: 100px; }
:focus-visible { outline: 3px solid #fff; outline-offset: 4px; box-shadow: 0 0 0 6px var(--ink); }
.container { width: min(var(--page-width), calc(100% - 48px)); margin-inline: auto; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 12px 20px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.site-header { position: relative; top: 0; z-index: 20; background: #eb9d0b; }
.site-header.navigation-ready { position: sticky; }
.site-nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 80px; }
.site-brand { display: flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; line-height: 1.5; }
.site-brand img { flex: 0 0 48px; width: 48px; height: 48px; }
.site-brand span { max-width: 310px; }
.site-menu { display: flex; align-items: center; gap: 28px; margin: 0; padding: 0; list-style: none; }
.site-menu a { display: block; padding-block: 12px; color: var(--ink); text-decoration: none; white-space: nowrap; }
.site-brand:hover, .site-menu a:hover { color: #000; text-decoration: underline; }
.menu-toggle { display: none; color: var(--ink); border: 2px solid currentColor; border-radius: 5px; background: transparent; min-height: 44px; padding: 5px 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  min-height: 48px;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: 6px;
}
.hcr-button-primary { background: var(--gold); color: var(--ink); }
.hcr-button-secondary { background: transparent; color: #fff; }
.btn:hover { background: #ffd16b; border-color: #ffd16b; color: var(--ink); }

.site-footer { padding-block: 2rem; border-top: 1px solid #3a301f; }
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 0.9rem; }
.footer-content p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: #fff; }

.cookie-notice {
  position: fixed;
  z-index: 25;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 24px;
  background: #fff;
  color: #424a4d;
  box-shadow: 0 -2px 16px #0004;
  font: 13px/1.5 Arial, sans-serif;
}
.cookie-notice p { margin: 0; }
.cookie-notice a { color: inherit; }
.cookie-dismiss { flex-shrink: 0; min-height: 44px; padding: 8px 18px; border: 0; border-radius: 4px; background: var(--gold); color: var(--ink); }

.policy-content { max-width: 1040px; padding-block: 3rem; overflow-wrap: anywhere; }
.policy-content h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.policy-content p { line-height: 1.9; }

@media (max-width: 991px) {
  .site-nav { flex-wrap: wrap; gap: 0 16px; padding-block: 12px; }
  .site-brand { flex: 1; min-width: 0; font-size: 1rem; }
  .site-brand span { max-width: 260px; }
  .menu-toggle:not([hidden]) { display: block; }
  .site-menu { width: 100%; flex-wrap: wrap; gap: 0 24px; padding-top: 12px; }
  .nav-enhanced .site-menu { display: none; }
  .nav-enhanced.menu-open .site-menu { display: flex; }
  .footer-content { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 575px) {
  .container { width: calc(100% - 32px); }
  .site-brand { gap: 8px; font-size: 0.9rem; }
  .site-brand img { flex-basis: 40px; width: 40px; height: 40px; }
  .site-brand span { max-width: 180px; }
  .menu-toggle { padding-inline: 8px; font-size: 0.9rem; }
  .site-menu { flex-direction: column; align-items: stretch; }
  .site-menu a { padding-block: 8px; }
  .cookie-notice { padding: 10px 16px; gap: 12px; }
}
