
:root {
  --bg: #f4efea;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body { font-family: Arial, Helvetica, sans-serif; color: #333; }
.site-frame {
  width: min(100vw, var(--page-width));
  margin: 0 auto;
}
.shot {
  position: relative;
  width: 100%;
  line-height: 0;
}
.shot img {
  display: block;
  width: 100%;
  height: auto;
}
.hotspot {
  position: absolute;
  display: block;
  z-index: 5;
  background: transparent;
  border-radius: 999px;
}
.hotspot:focus-visible {
  outline: 3px solid rgba(199,125,89,.85);
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
