/* genius loci — mockup v2 · 6:5 screen */

:root {
  --bg: #000;
  --red: #ff0000;
  --magenta: #ff00ff;
  --stroke: #7f7f7f;
  --white: #fff;
  --font: Arial, Helvetica, sans-serif;
  --font-narrow: "Arial Narrow", "Helvetica Neue Condensed", Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --screen-scale: 0.6667; /* 1.5× smaller than full 6:5 frame */
  --copy-inset-top: 7.5%;
  --copy-inset-bottom: 11%;
  --content-inset-top: var(--copy-inset-top);
  --logo-inset-top: 13%;
  --logo-width: 122px;
  --location-card-ratio: 1290 / 1080;
  --location-card-hover-ms: 220ms;
  --screen-media-fade-ms: 260ms;
  --logo-shine-sweep-ms: 1200ms;
  --logo-shine-gap-ms: 850ms;
  --menu-hover-stroke: 1px var(--red);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  font-family: var(--font);
  color: var(--white);
  overflow: hidden;
}

body.is-location-preview .screen {
  background-color: transparent;
  background-image: none;
}

body.is-location-preview .screen__bg {
  opacity: 0;
}

.viewport-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--screen-media-fade-ms) ease;
}

body.is-location-preview .viewport-bg {
  opacity: 1;
}

.viewport-bg__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--screen-media-fade-ms) ease;
}

.viewport-bg__layer.is-active {
  opacity: 1;
}

.arcade {
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  padding: 6px 10px;
  background: #000;
  border: 1px solid #fff;
  font-family: var(--font);
  font-size: 12px;
  color: #fff;
  text-transform: lowercase;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* —— letterbox + 6:5 screen —— */

.arcade {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(8px, 2vh, 20px);
}

.screen {
  position: relative;
  width: min(
    calc(96vw * var(--screen-scale)),
    calc((100dvh - 24px) * 6 / 5 * var(--screen-scale))
  );
  max-height: calc((100dvh - 24px) * var(--screen-scale));
  aspect-ratio: 6 / 5;
  overflow: hidden;
  background: #020408 url("assets/image-main.png") center / cover no-repeat;
}

.screen__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transition: opacity var(--screen-media-fade-ms) ease;
}

.screen__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--screen-media-fade-ms) ease;
}

.screen__layer.is-active {
  opacity: 1;
}

.screen__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.screen__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* —— top bar —— */

.top-bar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 0;
}

.top-bar__left {
  justify-self: start;
  min-width: 0;
  margin: 0;
  opacity: 0.95;
}

.top-bar__line {
  display: inline;
}

.top-bar__sep--meta-year,
.top-bar__year-mobile {
  display: none;
}

.top-bar__right {
  justify-self: end;
  margin: 0;
  flex-shrink: 0;
  white-space: nowrap;
}

.top-bar,
.bottom-bar {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: lowercase;
  color: var(--white);
  pointer-events: none;
}

.top-bar p,
.bottom-bar p {
  margin: 0;
}

.top-bar__author,
.top-bar__author:visited,
.bottom-bar__author,
.bottom-bar__author:visited,
.statement-quote__author-link,
.statement-quote__author-link:visited {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.12em;
  text-decoration-color: currentColor;
  pointer-events: auto;
}

.top-bar__author:hover,
.top-bar__author:focus-visible,
.top-bar__author:visited:hover,
.top-bar__author:visited:focus-visible,
.bottom-bar__author:hover,
.bottom-bar__author:focus-visible,
.bottom-bar__author:visited:hover,
.bottom-bar__author:visited:focus-visible,
.statement-quote__author-link:hover,
.statement-quote__author-link:focus-visible,
.statement-quote__author-link:visited:hover,
.statement-quote__author-link:visited:focus-visible {
  color: var(--red);
  text-decoration-color: var(--red);
}

/* —— logo + menu (left) —— */

.site-logo-wrap {
  position: absolute;
  z-index: 12;
  left: 3.5%;
  top: var(--logo-inset-top);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(var(--logo-width), 22%);
  pointer-events: none;
}

.site-logo {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  opacity: 1;
  transition: opacity 0.12s ease;
}

.site-logo__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12em;
  width: fit-content;
  max-width: none;
  margin: 0.6em 0 0;
  padding: 0;
  pointer-events: auto;
}

.site-logo__badge-btn {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  pointer-events: auto;
}

.site-logo__badge {
  display: block;
  width: min(56px, 46%);
  height: auto;
  pointer-events: none;
  transform-origin: center center;
  animation: site-logo-badge-spin 24s linear infinite;
}

.ep-sticker {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  border: none;
  background: #000;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ep-sticker.is-open {
  pointer-events: auto;
  opacity: 1;
}

.ep-sticker__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.ep-sticker__img {
  display: block;
  width: min(140px, 28vw);
  height: auto;
  pointer-events: none;
  transform-origin: center center;
  animation: site-logo-badge-spin 24s linear infinite;
}

@keyframes site-logo-badge-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.site-logo:active {
  opacity: 0.45;
}

.site-logo__stack {
  position: relative;
  display: block;
  width: 100%;
}

.site-logo__default,
.site-logo__hover {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.site-logo__hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  -webkit-mask-image: linear-gradient(
    108deg,
    transparent 0%,
    transparent 33%,
    rgba(0, 0, 0, 0.35) 36%,
    #000 41%,
    #000 59%,
    rgba(0, 0, 0, 0.35) 64%,
    transparent 68%,
    transparent 100%
  );
  mask-image: linear-gradient(
    108deg,
    transparent 0%,
    transparent 33%,
    rgba(0, 0, 0, 0.35) 36%,
    #000 41%,
    #000 59%,
    rgba(0, 0, 0, 0.35) 64%,
    transparent 68%,
    transparent 100%
  );
  -webkit-mask-size: 320% 100%;
  mask-size: 320% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 115% 0;
  mask-position: 115% 0;
}

.site-logo:hover .site-logo__hover,
.site-logo:focus-visible .site-logo__hover {
  opacity: 1;
  animation: site-logo-shine calc(var(--logo-shine-sweep-ms) + var(--logo-shine-gap-ms)) linear infinite;
}

.site-logo:active .site-logo__hover {
  opacity: 0;
  animation: none;
}

@keyframes site-logo-shine {
  0% {
    -webkit-mask-position: 115% 0;
    mask-position: 115% 0;
  }

  58% {
    -webkit-mask-position: -15% 0;
    mask-position: -15% 0;
  }

  58.01%,
  100% {
    -webkit-mask-position: 115% 0;
    mask-position: 115% 0;
  }
}

.side-menu {
  position: absolute;
  z-index: 12;
  left: 3.5%;
  bottom: var(--copy-inset-bottom);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55em;
}

.menu-btn {
  position: relative;
  z-index: 0;
  isolation: isolate;
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: var(--font);
  font-size: 20pt;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  text-transform: lowercase;
  color: var(--white);
  -webkit-text-stroke: 0 transparent;
  paint-order: stroke fill;
  transition:
    color 0.12s ease,
    -webkit-text-stroke 0.12s ease;
}

.menu-btn::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 0;
  height: 7px;
  background: var(--red);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
}

.menu-btn:hover,
.menu-btn.is-active:hover {
  color: var(--red);
  -webkit-text-stroke: var(--menu-hover-stroke);
}

.menu-btn:active,
.menu-btn.is-active:active {
  color: #b50000;
  -webkit-text-stroke: 1px #b50000;
}

.menu-btn.is-active::after {
  opacity: 1;
}

.panel-back {
  display: none;
}

/* —— copy panel (right) —— */

.copy-panel {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 30%;
  right: 3%;
  bottom: 0;
  width: auto;
  max-height: none;
  overflow-x: hidden;
  overflow-y: auto;
  padding:
    calc(var(--content-inset-top) * 5 / 6)
    4px
    calc(var(--copy-inset-bottom) * 5 / 6)
    0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: opacity 0.2s ease;
}

.copy-panel::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.copy-panel.is-hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.copy-panel.is-visible {
  opacity: 1;
  visibility: visible;
}

.copy-block {
  margin: 0 0 0.2em;
  font-family: var(--font-narrow);
  font-size: 14pt;
  font-weight: 400;
  font-stretch: condensed;
  line-height: 1.1;
  text-transform: lowercase;
  color: var(--white);
}

.copy-panel[data-panel="overview"] .copy-block,
.copy-panel[data-panel="statement"] .copy-block {
  font-size: 34pt;
  line-height: 1.06;
  margin-bottom: 0.55em;
}

.copy-panel[data-panel="overview"] .copy-block:last-child {
  margin-bottom: 0;
}

.copy-panel[data-panel="links"] .copy-block {
  margin: 0 0 0.12em;
  font-size: 34pt;
  line-height: 1;
}

.copy-panel[data-panel="links"] .copy-block:last-child {
  margin-bottom: 0;
}

.copy-panel[data-panel="links"] .copy-block__link,
.copy-panel[data-panel="links"] .copy-block__link:visited {
  display: inline-block;
  padding: 0.06em 0.28em 0.1em;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
}

.copy-panel[data-panel="links"] .copy-block__link:hover,
.copy-panel[data-panel="links"] .copy-block__link:focus-visible,
.copy-panel[data-panel="links"] .copy-block__link:visited:hover,
.copy-panel[data-panel="links"] .copy-block__link:visited:focus-visible {
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
}

.statement-quote {
  margin: 0;
  padding: 0.75em 0.85em;
  background-color: var(--red);
  border: none;
}

.statement-quote .copy-block {
  color: var(--white);
}

.statement-quote .copy-block:last-of-type {
  margin-bottom: 0;
}

.statement-quote .copy-block--pull {
  display: block;
  margin-top: 0.35em;
}

.copy-panel[data-panel="statement"] .statement-quote__author {
  margin: 0.35em 0 0;
  font-family: var(--font-narrow);
  font-size: 14pt;
  font-weight: 400;
  font-stretch: condensed;
  line-height: 1.1;
  text-transform: lowercase;
}

.copy-panel[data-panel="overview"] .copy-block--terminal {
  font-family: var(--font-mono);
  font-stretch: normal;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
}

/* —— start / location cards —— */

.start-panel {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
  margin: 0;
  padding: 0;
}

.start-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85em;
}

.start-panel__item {
  margin: 0;
}

.location-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.2);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

.location-card--tower,
.location-card--home,
.location-card--nv86 {
  aspect-ratio: var(--location-card-ratio);
}

.location-card--tower::after,
.location-card--home::after,
.location-card--nv86::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--red);
  opacity: 0;
  transition: opacity var(--location-card-hover-ms) ease;
  pointer-events: none;
}

.location-card--tower:hover::after,
.location-card--tower:focus-visible::after,
.location-card--home:hover::after,
.location-card--home:focus-visible::after,
.location-card--nv86:hover::after,
.location-card--nv86:focus-visible::after {
  opacity: 1;
}

.location-card--stub {
  cursor: default;
}

.location-card--tower {
  background-image: url("assets/image-tower.png");
}

.location-card--home {
  background-image: url("assets/image-home.png");
}

.location-card--nv86 {
  background-image: url("assets/image-nv86.png");
}

.location-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.location-card__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: transparent;
}

.location-card__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  pointer-events: none;
  z-index: 1;
}

.location-card__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  justify-content: flex-start;
}

.location-card__desktop-notice {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  margin-top: 0.35em;
  padding: 0.14em 0.36em;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: lowercase;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.location-card__desktop-notice-icon {
  font-size: 12px;
  line-height: 1;
}

.location-card__tagline {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--font);
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  text-transform: lowercase;
  color: var(--white);
  pointer-events: none;
}

.location-card__favicon-wrap {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.location-card__favicon {
  position: absolute;
  inset: 0;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.location-card__title {
  display: block;
  text-align: center;
  pointer-events: none;
  font-family: var(--font-narrow);
  font-size: 14pt;
  font-weight: 400;
  font-stretch: condensed;
  line-height: 1.1;
  min-height: calc(2 * 1.1em);
  margin-bottom: calc(-1.1em);
  text-transform: lowercase;
  color: var(--white);
}

.location-card__meta {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 8px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: lowercase;
  color: var(--white);
  pointer-events: none;
}

/* —— bottom bar —— */

.bottom-bar {
  position: absolute;
  z-index: 20;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  padding: 0 12px 8px;
}

.bottom-bar__left {
  opacity: 0.95;
  min-width: 0;
}

.bottom-bar__note--short {
  display: none;
}

.bottom-bar__mobile-meta {
  display: none;
}

.bottom-bar__right {
  flex-shrink: 0;
  white-space: nowrap;
  text-align: right;
}

#weather-minsk,
#weather-nizhnevartovsk {
  color: var(--white);
}

/* —— responsive —— */

@media (max-width: 900px) {
  .menu-btn {
    font-size: 18pt;
  }

  .menu-btn::after {
    height: 5px;
  }
}

@media (max-width: 640px) {
  .arcade {
    padding: 0;
    display: block;
    min-height: 100dvh;
  }

  .screen {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    aspect-ratio: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding:
      10vh
      6vw
      max(40px, env(safe-area-inset-bottom, 0px) + 32px)
      8vw;
  }

  .screen__bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .top-bar {
    display: none;
  }

  :root {
    --copy-inset-top: 11%;
    --copy-inset-bottom: 14%;
    --content-inset-top: var(--copy-inset-top);
    --logo-inset-top: 17%;
    --logo-width: 128px;
  }

  .copy-panel {
    left: 8%;
    right: 6%;
  }

  .site-logo-wrap {
    position: relative;
    left: auto;
    top: auto;
    width: min(var(--logo-width), 54vw);
    align-items: flex-start;
    margin: 0;
  }

  .site-logo__label {
    align-items: flex-start;
  }

  .side-menu {
    position: relative;
    left: auto;
    bottom: auto;
    top: auto;
    margin-top: 2em;
    align-items: flex-start;
    gap: 0.55em;
  }

  .menu-btn {
    font-size: 22pt;
  }

  .panel-back {
    display: none;
    appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0 0 1.2em;
    cursor: pointer;
    font-family: var(--font-narrow);
    font-size: 14pt;
    font-weight: 400;
    font-stretch: condensed;
    font-style: normal;
    line-height: 1.1;
    text-transform: lowercase;
    color: var(--white);
    opacity: 0.95;
    pointer-events: auto;
  }

  .menu-btn:hover,
  .menu-btn.is-active:hover,
  .menu-btn:focus-visible {
    color: var(--white);
    -webkit-text-stroke: 0 transparent;
  }

  .menu-btn.is-active:hover::after,
  .menu-btn.is-active:focus-visible::after {
    opacity: 1;
  }

  .site-logo:hover .site-logo__hover,
  .site-logo:focus-visible .site-logo__hover {
    opacity: 0;
    animation: none;
  }

  .panel-back:hover,
  .panel-back:focus-visible {
    color: var(--white);
  }

  .copy-panel[data-panel="links"] .copy-block__link:hover,
  .copy-panel[data-panel="links"] .copy-block__link:focus-visible,
  .copy-panel[data-panel="links"] .copy-block__link:visited:hover,
  .copy-panel[data-panel="links"] .copy-block__link:visited:focus-visible {
    color: var(--white);
    background-color: transparent;
    border-color: var(--white);
  }

  .statement-quote__author-link:hover,
  .statement-quote__author-link:focus-visible,
  .statement-quote__author-link:visited:hover,
  .statement-quote__author-link:visited:focus-visible,
  .top-bar__author:hover,
  .top-bar__author:focus-visible,
  .top-bar__author:visited:hover,
  .top-bar__author:visited:focus-visible,
  .bottom-bar__author:hover,
  .bottom-bar__author:focus-visible,
  .bottom-bar__author:visited:hover,
  .bottom-bar__author:visited:focus-visible {
    color: var(--white);
    text-decoration-color: currentColor;
  }

  .location-card--tower:hover::after,
  .location-card--tower:focus-visible::after,
  .location-card--home:hover::after,
  .location-card--home:focus-visible::after,
  .location-card--nv86:hover::after,
  .location-card--nv86:focus-visible::after {
    opacity: 0;
  }

  .panel-back:active {
    color: var(--red);
  }

  .copy-panel[data-panel="links"] .copy-block__link:active,
  .copy-panel[data-panel="links"] .copy-block__link:visited:active {
    color: var(--white);
    background-color: var(--red);
    border-color: var(--red);
  }

  .statement-quote__author-link:active,
  .statement-quote__author-link:visited:active,
  .bottom-bar__author:active,
  .bottom-bar__author:visited:active {
    color: var(--red);
    text-decoration-color: var(--red);
  }

  .location-card--tower:active::after,
  .location-card--home:active::after,
  .location-card--nv86:active::after {
    opacity: 1;
  }

  .screen.is-panel-open {
    justify-content: flex-start;
    height: auto;
    max-height: none;
    min-height: 100dvh;
    overflow: visible;
    padding:
      max(16px, env(safe-area-inset-top, 0px) + 12px)
      6vw
      max(48px, env(safe-area-inset-bottom, 0px) + 40px)
      8vw;
  }

  html:has(.screen.is-panel-open),
  body:has(.screen.is-panel-open) {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .screen.is-panel-open .panel-back {
    display: block;
    position: fixed;
    z-index: 30;
    top: max(16px, env(safe-area-inset-top, 0px) + 12px);
    left: 8vw;
    right: auto;
    margin: 0;
  }

  .screen.is-panel-open .site-logo-wrap,
  .screen.is-panel-open .side-menu {
    display: none;
  }

  .screen.is-panel-open .copy-panel.is-visible {
    position: relative;
    flex: none;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: 0;
    overflow: visible;
    padding: calc(14pt * 1.1 + 1em) 0 2em;
  }

  .screen.is-panel-open .start-panel {
    padding-bottom: 0.5em;
  }

  .screen.is-panel-open .start-panel__list {
    gap: 1em;
  }

  .bottom-bar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: 1fr;
    padding: 0 6vw max(10px, env(safe-area-inset-bottom, 0px) + 8px) 8vw;
    z-index: 25;
    pointer-events: none;
  }

  .bottom-bar__left,
  .bottom-bar__right {
    display: none;
  }

  .bottom-bar__mobile-meta {
    display: block;
    margin: 0;
    text-align: left;
    opacity: 0.95;
    pointer-events: auto;
  }

  .bottom-bar__note--full {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .copy-panel,
  .menu-btn,
  .screen__layer,
  .screen__bg,
  .viewport-bg,
  .viewport-bg__layer,
  .location-card--tower::after,
  .location-card--home::after,
  .location-card--nv86::after {
    transition: none;
  }

  .site-logo:hover .site-logo__hover,
  .site-logo:focus-visible .site-logo__hover {
    animation: none;
    opacity: 0.72;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .site-logo__badge {
    animation: none;
  }

  .ep-sticker__img {
    animation: none;
  }
}
