/* Soft Portrait-Lock für Mobile (Browser sperren Querformat oft nicht hart). */
.orient-lock {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--red, #C7413B);
  color: var(--ink-on-red, rgba(247, 245, 240, 0.9));
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
  font-family: "Space Grotesk", system-ui, sans-serif;
}
@media screen and (orientation: landscape) and (max-height: 520px) {
  .orient-lock { display: flex; }
  html, body {
    overflow: hidden;
    touch-action: none;
  }
}
