@font-face {
  font-family: "Roboto Slab";
  src: url("assets/RobotoSlab-Variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --scene-width: 1920;
  --scene-height: 1080;
  --scene-scale: 1;
  --scene-x: 0px;
  --scene-y: 0px;
  --art-left: 0px;
  --art-top: 0px;
  --art-width: 1920px;
  --art-height: 1080px;
  --gap-top: 0px;
  --gap-right: 0px;
  --gap-bottom: 0px;
  --gap-left: 0px;
  --video-x: 653px;
  --video-y: 298px;
  --video-width: 683px;
  --video-height: 384px;
  --page-bg: #171211;
  --ink: #2b1a0e;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--page-bg);
}

body {
  min-height: 100svh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.experience,
.camera {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  overflow: hidden;
}

.experience {
  isolation: isolate;
  background: var(--page-bg);
}

.folkkeep-loader {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: #f3ddb5;
  background:
    radial-gradient(circle at 50% 43%, rgb(101 59 29 / 26%) 0%, rgb(32 19 13 / 42%) 34%, rgb(17 12 11 / 96%) 82%),
    #171211;
  opacity: 1;
  visibility: visible;
  transition: opacity 360ms ease, visibility 0s linear 0s;
}

.folkkeep-loader__panel {
  display: grid;
  width: min(86vw, 420px);
  place-items: center;
  gap: 9px;
  padding: 24px 28px 22px;
  border: 1px solid rgb(218 172 101 / 38%);
  border-radius: 18px;
  background: rgb(28 17 12 / 82%);
  box-shadow: 0 18px 70px rgb(0 0 0 / 38%);
  text-align: center;
}

.folkkeep-loader__mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 3px;
  border: 2px solid rgb(222 178 105 / 76%);
  border-radius: 50%;
  color: #e7be78;
  font: 750 21px/1 Georgia, serif;
  letter-spacing: .08em;
  box-shadow: inset 0 0 20px rgb(218 156 70 / 13%), 0 0 30px rgb(218 156 70 / 8%);
}

.folkkeep-loader__title {
  font: 700 25px/1.15 Georgia, serif;
  letter-spacing: .02em;
}

.folkkeep-loader__motion {
  position: relative;
  display: block;
  width: min(236px, 68vw);
  height: 42px;
  margin: 7px 0 3px;
  overflow: hidden;
  border-radius: 10px;
  background-image: url("assets/portal/frame-top-hifi.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 104px;
  box-shadow:
    inset 0 1px 0 rgb(255 224 167 / 14%),
    inset 0 -4px 8px rgb(19 10 6 / 38%),
    0 7px 16px rgb(0 0 0 / 28%);
  isolation: isolate;
}

.folkkeep-loader__motion::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgb(233 188 112 / 22%);
  border-radius: inherit;
  box-shadow: inset 0 0 16px rgb(18 10 6 / 40%);
  content: "";
}

.folkkeep-loader__ember {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: -34px;
  width: 34px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 226 151 / 68%) 0 10%, rgb(230 157 62 / 24%) 36%, transparent 72%);
  filter: blur(.5px);
  animation: folkkeep-ember-travel 2100ms cubic-bezier(.42, 0, .58, 1) infinite;
}

.folkkeep-loader__nail {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgb(29 17 10 / 72%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d3a35d 0 9%, #786044 23%, #322b24 62%, #17130f 100%);
  box-shadow: 0 1px 2px rgb(0 0 0 / 72%);
  transform: translate(-50%, -50%);
  animation: folkkeep-nail-glow 2100ms ease-in-out infinite;
}

.folkkeep-loader__nail--one {
  left: 22%;
  animation-delay: 160ms;
}

.folkkeep-loader__nail--two {
  left: 50%;
  animation-delay: 730ms;
}

.folkkeep-loader__nail--three {
  left: 78%;
  animation-delay: 1320ms;
}

.folkkeep-loader__status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.folkkeep-loader__fallback {
  display: inline-flex;
  margin-top: 5px;
  color: #f1d39e;
  font: 650 14px/1.35 system-ui, sans-serif;
  text-underline-offset: 3px;
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
}

html[data-load-state="degraded"] .folkkeep-loader__fallback {
  opacity: 1;
  visibility: visible;
  animation: none;
}

html[data-load-state="ready"] .folkkeep-loader {
  opacity: 0;
  visibility: hidden;
  transition: opacity 360ms ease, visibility 0s linear 360ms;
  pointer-events: none;
}

.ambient-backdrop {
  position: absolute;
  z-index: -3;
  inset: -7%;
  display: block;
  width: 114%;
  height: 114%;
  pointer-events: none;
  user-select: none;
}

.ambient-backdrop-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(26px) saturate(.84) brightness(.58);
  transform: scale(1.04);
}

.wood-surround {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-color: #2b1a11;
  filter: saturate(.9) brightness(.82);
  pointer-events: none;
}

html[data-frame-ready="true"] .wood-surround {
  background-image:
    radial-gradient(circle at 50% 46%, rgb(128 76 35 / 18%) 0%, rgb(43 26 17 / 12%) 48%, rgb(14 9 7 / 48%) 100%),
    linear-gradient(rgb(71 42 23 / 8%), rgb(20 12 9 / 30%)),
    url("assets/folkkeep-wood-surround.jpg");
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: center, center, center;
  background-size: cover, cover, 1024px 512px;
}

.ambient-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgb(0 0 0 / 0%) 24%, rgb(12 8 7 / 27%) 100%),
    linear-gradient(rgb(17 12 11 / 16%), rgb(17 12 11 / 30%));
  pointer-events: none;
}

@media (orientation: landscape) {
  .ambient-backdrop {
    opacity: 0;
  }

  .scene {
    box-shadow:
      0 0 0 2px rgb(24 14 9 / 42%),
      0 0 28px rgb(17 10 7 / 62%),
      0 0 80px rgb(11 7 5 / 52%);
  }
}

@media (orientation: portrait) {
  .wood-surround {
    display: none;
  }
}

.ambient-backdrop,
.ambient-shade,
.portal-gaps,
.scene-art,
.cinema-screen,
.folkkeep-nav {
  opacity: 0;
  visibility: hidden;
  transition: opacity 340ms ease, visibility 0s linear 340ms;
}

html[data-load-state="ready"] .ambient-backdrop,
html[data-load-state="ready"] .ambient-shade,
html[data-load-state="ready"] .portal-gaps,
html[data-load-state="ready"] .scene-art,
html[data-load-state="ready"] .cinema-screen,
html[data-load-state="ready"] .folkkeep-nav {
  opacity: 1;
  visibility: visible;
  transition: opacity 340ms ease, visibility 0s linear 0s;
}

@media (orientation: landscape) {
  html[data-load-state="ready"] .ambient-backdrop {
    opacity: 0;
    visibility: hidden;
  }
}

html:not([data-load-state="ready"]) .folkkeep-plaque {
  pointer-events: none;
}

.portal-gaps {
  position: fixed;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.portal-gap {
  position: absolute;
  display: block;
  overflow: hidden;
  background-color: #2b1a11;
  filter: saturate(.96) contrast(1.02);
  transform: translateZ(0);
}

.portal-gap--left,
.portal-gap--right {
  top: var(--art-top);
  width: calc(var(--gap-left) + 2px);
  height: var(--art-height);
  background-repeat: repeat-x;
  background-size: auto 100%;
}

html[data-frame-ready="true"][data-portal-gap-texture="vertical"] .portal-gap--left,
html[data-frame-ready="true"][data-portal-gap-texture="vertical"] .portal-gap--right {
  background-image: url("assets/portal/planks-vertical-4k.webp");
}

.portal-gap--left {
  left: 0;
  width: calc(var(--gap-left) + 2px);
  background-position: right center;
}

.portal-gap--right {
  right: 0;
  width: calc(var(--gap-right) + 2px);
  background-position: left center;
}

.portal-gap--top,
.portal-gap--bottom {
  left: var(--art-left);
  width: var(--art-width);
  background-repeat: repeat-y;
  background-size: 100% auto;
}

html[data-frame-ready="true"][data-portal-gap-texture="horizontal"] .portal-gap--top,
html[data-frame-ready="true"][data-portal-gap-texture="horizontal"] .portal-gap--bottom {
  background-image: url("assets/portal/planks-horizontal-4k.webp");
}

.portal-gap--top {
  top: 0;
  height: calc(var(--gap-top) + 2px);
  background-position: center bottom;
}

.portal-gap--bottom {
  bottom: 0;
  height: calc(var(--gap-bottom) + 2px);
  background-position: center top;
}

.camera {
  z-index: 2;
  contain: strict;
}

html:not([data-load-state="ready"]) .camera {
  pointer-events: none;
}

html[data-load-state="ready"] .camera {
  pointer-events: auto;
}

.scene {
  --portal-side-rail: 128px;
  --portal-horizontal-rail: 128px;
  --portal-overlap: 44px;
  --portal-overlap-2: 88px;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--scene-width) * 1px);
  height: calc(var(--scene-height) * 1px);
  overflow: visible;
  transform-origin: 0 0;
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(var(--scene-scale));
  will-change: transform;
}

.portal-frame {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: visible;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
  pointer-events: none;
  user-select: none;
}

html[data-frame-ready="true"] .portal-frame {
  opacity: 1;
  visibility: visible;
  transition: opacity 320ms ease, visibility 0s linear 0s;
}

.portal-rail {
  position: absolute;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  image-rendering: auto;
  transform: translateZ(0);
}

.portal-rail--left,
.portal-rail--right {
  top: var(--portal-overlap);
  width: var(--portal-side-rail);
  height: calc(100% - var(--portal-overlap-2));
  background-size: auto 101.4%;
}

.portal-rail--left {
  left: calc(var(--portal-overlap) - var(--portal-side-rail));
  background-image: url("assets/portal/frame-left-hifi.webp");
  filter: drop-shadow(15px 0 12px rgb(24 14 8 / 52%));
}

.portal-rail--right {
  right: calc(var(--portal-overlap) - var(--portal-side-rail));
  background-image: url("assets/portal/frame-right-hifi.webp");
  filter: drop-shadow(-15px 0 12px rgb(24 14 8 / 52%));
}

.portal-rail--top,
.portal-rail--bottom {
  left: calc(0px - var(--portal-overlap));
  width: calc(100% + var(--portal-overlap-2));
  height: var(--portal-horizontal-rail);
  background-size: auto 118.7%;
}

.portal-rail--top {
  top: calc(var(--portal-overlap) - var(--portal-horizontal-rail));
  filter: drop-shadow(0 15px 12px rgb(24 14 8 / 52%));
}

.portal-rail--bottom {
  bottom: calc(var(--portal-overlap) - var(--portal-horizontal-rail));
  filter: drop-shadow(0 -15px 12px rgb(24 14 8 / 52%));
}

.scene[data-variant="desktop"] {
  --portal-horizontal-rail: 92px;
}

.scene[data-variant="desktop"] .portal-rail--top,
.scene[data-variant="desktop"] .portal-rail--bottom {
  left: var(--portal-overlap);
  width: calc(100% - var(--portal-overlap-2));
}

.scene[data-variant="desktop"] .portal-rail--top {
  background-image: url("assets/portal/frame-top-detail-v9.webp");
}

.scene[data-variant="desktop"] .portal-rail--bottom {
  background-image: url("assets/portal/frame-bottom-detail-v9.webp");
}

.scene[data-variant="mobile"] .portal-rail--top {
  background-image: url("assets/portal/frame-top-hifi.webp");
}

.scene[data-variant="mobile"] .portal-rail--bottom {
  background-image: url("assets/portal/frame-bottom-hifi.webp");
}

.scene[data-variant="desktop"] .portal-rail--left,
.scene[data-variant="desktop"] .portal-rail--right {
  top: calc(0px - var(--portal-overlap));
  height: calc(100% + var(--portal-overlap-2));
}

.scene[data-variant="mobile"] .portal-rail--left,
.scene[data-variant="mobile"] .portal-rail--right {
  background-size: auto 101.8%;
}

.scene[data-variant="mobile"] .portal-rail--top {
  background-position: center calc(50% + 4px);
}

.scene[data-variant="mobile"] .portal-rail--bottom {
  background-position: center calc(50% - 4px);
}

.scene-art,
.scene-art img {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: calc(var(--scene-width) * 1px);
  height: calc(var(--scene-height) * 1px);
  max-width: none;
}

.scene-art img {
  object-fit: fill;
  pointer-events: none;
  user-select: none;
}

.cinema-screen {
  position: absolute;
  z-index: 2;
  left: var(--video-x);
  top: var(--video-y);
  width: var(--video-width);
  height: var(--video-height);
  overflow: hidden;
  background: #050505;
  contain: layout paint;
  transform: translateZ(0);
  touch-action: manipulation;
}

.cinema-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050505;
  opacity: 0;
  visibility: hidden;
  transition: opacity 260ms ease, visibility 0s linear 260ms;
  pointer-events: none;
}

html[data-video-state="ready"] .cinema-video {
  opacity: 1;
  visibility: visible;
  transition: opacity 260ms ease, visibility 0s linear 0s;
  pointer-events: auto;
}

.cinema-video-status {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 14px;
  color: rgb(244 225 188 / 86%);
  background: #050505;
  font: 650 22px/1.3 "Roboto Slab", Georgia, serif;
  letter-spacing: .01em;
  opacity: 1;
  visibility: visible;
  transition: opacity 220ms ease, visibility 0s linear 0s;
  pointer-events: none;
}

.cinema-video-status i {
  display: block;
  width: 42px;
  height: 42px;
  border: 3px solid rgb(211 165 94 / 24%);
  border-top-color: rgb(228 188 119 / 86%);
  border-radius: 50%;
  animation: folkkeep-loader-spin 900ms linear infinite;
}

html[data-video-state="ready"] .cinema-video-status {
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.cinema-video-fallback {
  display: none;
  padding: .52em .82em;
  border: 1px solid rgb(226 184 114 / 54%);
  border-radius: .45em;
  color: #f3ddb5;
  background: rgb(66 39 22 / 72%);
  font-size: .76em;
  text-decoration: none;
  pointer-events: auto;
}

html[data-video-state="slow"] .cinema-video-fallback,
html[data-video-state="error"] .cinema-video-fallback {
  display: inline-flex;
}

html[data-video-state="slow"] .cinema-video-status i,
html[data-video-state="error"] .cinema-video-status i {
  display: none;
}

@keyframes folkkeep-loader-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes folkkeep-ember-travel {
  0% {
    left: -34px;
    opacity: 0;
  }

  12%, 82% {
    opacity: 1;
  }

  100% {
    left: calc(100% + 2px);
    opacity: 0;
  }
}

@keyframes folkkeep-nail-glow {
  0%, 18%, 100% {
    filter: brightness(.78);
    box-shadow: 0 1px 2px rgb(0 0 0 / 72%);
  }

  30%, 44% {
    filter: brightness(1.55);
    box-shadow: 0 0 11px rgb(242 183 82 / 62%), 0 1px 2px rgb(0 0 0 / 72%);
  }
}

.folkkeep-nav {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: none;
  pointer-events: none;
}

.scene[data-variant="desktop"] .folkkeep-nav--desktop,
.scene[data-variant="mobile"] .folkkeep-nav--mobile {
  display: block;
}

.folkkeep-plaque {
  position: absolute;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  transform: translate3d(0, 0, 0) rotate(0deg);
  transform-origin: 50% 62%;
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.folkkeep-plaque > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: fill;
  filter: drop-shadow(0 4px 3px rgb(24 14 8 / 34%));
  pointer-events: none;
  user-select: none;
}

.folkkeep-plaque__label {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 49%;
  display: flex;
  width: 116%;
  max-width: none;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: "Roboto Slab", Georgia, serif;
  font-weight: 700;
  line-height: .92;
  letter-spacing: .01em;
  text-align: center;
  text-shadow: 0 1px 0 rgb(255 226 164 / 18%);
  white-space: nowrap;
  transform: translate(-50%, -50%) scaleX(.7);
  transform-origin: center;
  pointer-events: none;
  user-select: none;
}

.folkkeep-plaque__label--two-lines {
  flex-direction: column;
  line-height: .86;
}

.folkkeep-plaque--primary .folkkeep-plaque__label {
  transform: translate(-50%, -50%) scaleX(.78);
}

.folkkeep-plaque:focus-visible {
  outline: 8px solid rgb(255 237 185 / 92%);
  outline-offset: -8px;
  border-radius: 34px;
}

.folkkeep-plaque:active {
  transform: translateY(3px) scale(.975);
  filter: saturate(.92) brightness(.94);
}

.folkkeep-plaque--desktop-o {
  left: 430px;
  top: 952px;
  width: 190px;
  height: 104px;
}

.folkkeep-plaque--desktop-dziennik {
  left: 638px;
  top: 952px;
  width: 187px;
  height: 104px;
}

.folkkeep-plaque--desktop-cta {
  left: 843px;
  top: 930px;
  width: 222px;
  height: 126px;
}

.folkkeep-plaque--desktop-spec {
  left: 1084px;
  top: 952px;
  width: 194px;
  height: 104px;
}

.folkkeep-plaque--desktop-regulamin {
  left: 1298px;
  top: 952px;
  width: 193px;
  height: 104px;
}

.folkkeep-nav--desktop .folkkeep-plaque__label {
  font-size: 27px;
}

.folkkeep-nav--desktop .folkkeep-plaque__label--two-lines {
  font-size: 26px;
}

.folkkeep-nav--desktop .folkkeep-plaque--primary .folkkeep-plaque__label {
  font-size: 30px;
}

.folkkeep-plaque--mobile-o {
  left: 48px;
  top: 1730px;
  width: 290px;
  height: 160px;
}

.folkkeep-plaque--mobile-cta {
  left: 356px;
  top: 1706px;
  width: 368px;
  height: 184px;
}

.folkkeep-plaque--mobile-more {
  left: 742px;
  top: 1730px;
  width: 290px;
  height: 160px;
}

.folkkeep-plaque--mobile-dziennik {
  left: 742px;
  top: 1326px;
  width: 290px;
  height: 116px;
}

.folkkeep-plaque--mobile-spec {
  left: 742px;
  top: 1454px;
  width: 290px;
  height: 116px;
}

.folkkeep-plaque--mobile-regulamin {
  left: 742px;
  top: 1582px;
  width: 290px;
  height: 116px;
}

.folkkeep-nav--mobile .folkkeep-plaque__label {
  font-size: 44px;
}

.folkkeep-nav--mobile .folkkeep-plaque__label--two-lines {
  font-size: 39px;
}

.folkkeep-nav--mobile .folkkeep-plaque--primary .folkkeep-plaque__label {
  font-size: 50px;
}

.folkkeep-more-menu {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.folkkeep-more-menu .folkkeep-plaque {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(.94);
  transition: none;
}

.folkkeep-more-menu[aria-hidden="false"] .folkkeep-plaque {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  animation: folkkeep-more-item-open 260ms cubic-bezier(.18, .9, .28, 1.18) both;
}

.folkkeep-more-menu[aria-hidden="false"] .folkkeep-plaque:nth-child(3) {
  animation-delay: 0ms;
}

.folkkeep-more-menu[aria-hidden="false"] .folkkeep-plaque:nth-child(2) {
  animation-delay: 85ms;
}

.folkkeep-more-menu[aria-hidden="false"] .folkkeep-plaque:nth-child(1) {
  animation-delay: 170ms;
}

.folkkeep-more-menu.is-closing .folkkeep-plaque {
  visibility: visible;
  opacity: 0;
  pointer-events: none;
  animation: folkkeep-more-item-close 240ms cubic-bezier(.58, .02, .84, .34) both;
}

.folkkeep-more-menu.is-closing .folkkeep-plaque:nth-child(1) {
  animation-delay: 0ms;
}

.folkkeep-more-menu.is-closing .folkkeep-plaque:nth-child(2) {
  animation-delay: 85ms;
}

.folkkeep-more-menu.is-closing .folkkeep-plaque:nth-child(3) {
  animation-delay: 170ms;
}

@keyframes folkkeep-more-item-open {
  0% { opacity: 0; transform: translateY(48px) scale(.82) rotate(2deg); }
  72% { opacity: 1; transform: translateY(-7px) scale(1.025) rotate(-.5deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes folkkeep-more-item-close {
  0% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translateY(44px) scale(.84) rotate(2deg); }
}

.folkkeep-action-status {
  position: fixed;
  z-index: 10;
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  max-width: min(88vw, 620px);
  margin: 0;
  padding: 10px 16px;
  border: 1px solid rgb(219 176 101 / 48%);
  border-radius: 999px;
  color: #fff3d6;
  background: rgb(38 23 13 / 88%);
  box-shadow: 0 8px 24px rgb(0 0 0 / 26%);
  font: 650 14px/1.35 "Roboto Slab", Georgia, serif;
  text-align: center;
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.folkkeep-action-status[data-visible="true"] {
  opacity: 1;
  transform: translate(-50%, 0);
}

.folkkeep-noscript {
  position: fixed;
  z-index: 30;
  left: 50%;
  top: 50%;
  width: min(88vw, 620px);
  margin: 0;
  padding: 20px 24px;
  border: 1px solid rgb(219 176 101 / 48%);
  border-radius: 16px;
  color: #fff3d6;
  background: #26170d;
  font: 600 16px/1.5 Georgia, serif;
  text-align: center;
  transform: translate(-50%, -50%);
}

.folkkeep-noscript a {
  color: #f1d39e;
}

@media (hover: hover) and (pointer: fine) {
  .folkkeep-plaque:hover {
    z-index: 3;
    filter: saturate(1.08) brightness(1.06);
    transform: translateY(-7px) rotate(-1deg) scale(1.025);
  }

  .folkkeep-plaque:nth-child(even):hover {
    transform: translateY(-7px) rotate(1deg) scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  .scene {
    will-change: auto;
  }

  .folkkeep-plaque,
  .folkkeep-action-status,
  .folkkeep-loader,
  .portal-frame,
  .ambient-backdrop,
  .ambient-shade,
  .portal-gaps,
  .scene-art,
  .cinema-screen,
  .folkkeep-nav,
  .cinema-video,
  .cinema-video-status {
    transition: none;
  }

  .cinema-video-status i {
    animation: none;
  }

  .folkkeep-loader__ember,
  .folkkeep-loader__nail {
    animation: none;
  }

  .folkkeep-loader__ember {
    left: calc(50% - 17px);
    opacity: .72;
  }

  .folkkeep-plaque:hover,
  .folkkeep-plaque:nth-child(even):hover {
    transform: none;
  }
}
