html.locked #site-content { display: none; }
html.locked #gate-overlay { display: flex !important; }
html.unlocked #gate-overlay { display: none; }

#gate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  color: #111;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
  text-align: left;
  font-family: var(--font, "Schibsted Grotesk", sans-serif);
}
.gate-box { max-width: 380px; width: 100%; }
.gate-box h1 {
  font-family: var(--font, "Schibsted Grotesk", sans-serif);
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 14px;
}
.gate-box p {
  color: #767676;
  font-size: 0.95rem;
  margin: 0 0 28px;
}
.gate-box input {
  width: 100%;
  padding: 12px 0;
  font-size: 1rem;
  border: 0;
  border-bottom: 1px solid #111;
  background: transparent;
  color: #111;
  border-radius: 0;
  margin-bottom: 18px;
  box-sizing: border-box;
  font-family: var(--font, "Schibsted Grotesk", sans-serif);
}
.gate-box input:focus { outline: 2px solid #111; outline-offset: 4px; }
.gate-box button {
  padding: 12px 22px;
  font-size: 0.9rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font, "Schibsted Grotesk", sans-serif);
}
.gate-box button:hover { background: #333; }
.gate-box button:focus-visible { outline: 2px solid #111; outline-offset: 3px; }
.gate-error {
  color: #b3261e;
  font-size: 0.85rem;
  margin-top: 12px;
  min-height: 1.2em;
}
