:root {
  --black: #070604;
  --ink: #17110d;
  --paper: #e7d9ac;
  --paper-deep: #c9b579;
  --chalk: #fff3cf;
  --red: #b93424;
  --red-bright: #ee5840;
  --amber: #d7963f;
  --green: #b7cb58;
  --cork: #68401f;
  --metal: #332d28;
  --focus: #fff36d;
  --content-width: 120rem;
  --heavy-shadow: 0.45rem 0.55rem 0 rgba(0, 0, 0, 0.78);
  color-scheme: dark;
}

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

html {
  min-width: 320px;
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--chalk);
  background:
    radial-gradient(circle at 20% 5%, rgba(185, 52, 36, 0.12), transparent 28rem),
    repeating-linear-gradient(93deg, transparent 0 5rem, rgba(255, 255, 255, 0.012) 5rem 5.08rem),
    #0a0806;
  font-family: "Arial Narrow", "Franklin Gothic Medium", Arial, system-ui, sans-serif;
  line-height: 1.45;
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

:where(a, button, input, textarea, [tabindex="-1"]):focus-visible {
  outline: 0.25rem solid var(--focus);
  outline-offset: 0.25rem;
  box-shadow: 0 0 0 0.48rem #000;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border: 0.2rem solid var(--ink);
  background: var(--focus);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 1.2rem;
  align-items: center;
  width: 100%;
  padding: 0.65rem clamp(0.75rem, 2vw, 1.5rem);
  border-bottom: 0.16rem solid #5e291c;
  background: rgba(8, 6, 4, 0.97);
  box-shadow: 0 0.35rem 1.4rem rgba(0, 0, 0, 0.58);
}

.site-mark {
  display: inline-flex;
  min-height: 2.75rem;
  gap: 0.48rem;
  align-items: center;
  padding-block: 0.35rem;
  margin: 0;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-mark::before {
  width: 0.65rem;
  height: 0.65rem;
  border: 0.12rem solid var(--paper);
  border-radius: 50%;
  background: var(--red-bright);
  content: "";
}

.fallback-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fallback-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.68rem;
  border: 0.1rem solid #6f5c45;
  border-radius: 0.16rem;
  color: var(--paper);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.fallback-nav a:hover,
.fallback-nav a[aria-current="page"] {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.session-strip {
  grid-column: 1 / -1;
  margin: 0;
  color: #c9b986;
  font-size: 0.75rem;
  letter-spacing: 0.035em;
  text-align: right;
}

.session-strip span {
  color: var(--green);
  font-weight: 900;
}

main {
  display: block;
}

.page-intro {
  width: min(100%, 72rem);
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2.4rem) clamp(0.85rem, 3vw, 2rem) 1rem;
}

.page-intro .eyebrow,
.surface-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.page-intro h1 {
  margin: 0.14rem 0 0.42rem;
  color: var(--paper);
  font-size: clamp(2.1rem, 8vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-shadow: 0.06em 0.06em 0 #671e17;
  text-transform: uppercase;
  text-wrap: balance;
}

.page-intro > p:last-child {
  max-width: 52rem;
  margin: 0;
  color: #cfc3a4;
  font-size: clamp(0.95rem, 2vw, 1.08rem);
}

.scene-shell {
  width: min(100%, var(--content-width));
  margin-inline: auto;
  padding: 0 clamp(0rem, 1vw, 0.75rem) clamp(1rem, 3vw, 2.5rem);
}

.scene {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  border-block: 0.12rem solid #463629;
  background: #080604;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.45);
}

.scene__art {
  position: relative;
  z-index: -3;
  display: block;
  width: 100%;
}

.scene__art img {
  display: block;
  width: 100%;
  height: auto;
}

.scene::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent 24%, transparent 72%, rgba(0, 0, 0, 0.35)),
    radial-gradient(ellipse at center, transparent 48%, rgba(0, 0, 0, 0.32) 100%);
  content: "";
}

.surface-card,
.object-link,
.paper-surface {
  border: 0.14rem solid var(--ink);
  color: var(--ink);
  background:
    repeating-linear-gradient(-7deg, transparent 0 1.7rem, rgba(70, 43, 23, 0.07) 1.7rem 1.78rem),
    var(--paper);
  box-shadow: var(--heavy-shadow);
}

.object-link {
  position: absolute;
  z-index: 5;
  display: flex;
  min-width: 7.2rem;
  min-height: 2.75rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0.52rem 0.72rem;
  border-radius: 0.2rem 0.08rem 0.24rem 0.1rem;
  font-weight: 900;
  line-height: 1.02;
  text-decoration: none;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.object-link small {
  margin-top: 0.22rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.object-link:hover {
  background: var(--focus);
  transform: rotate(0deg) translateY(-0.12rem);
}

.logo-slot {
  position: absolute;
  z-index: 4;
  left: 20.7%;
  top: 15.3%;
  width: 8.6%;
  margin: 0;
}

.logo-slot__blank {
  width: 100%;
  aspect-ratio: 0.73;
  border: 0.14rem solid rgba(37, 26, 19, 0.78);
  background: rgba(231, 217, 172, 0.9);
  box-shadow: inset 0 0 1.5rem rgba(79, 48, 24, 0.26);
}

.logo-slot figcaption,
.decorative-slot-label {
  width: max-content;
  max-width: 13rem;
  margin-top: 0.36rem;
  padding: 0.3rem 0.45rem;
  border: 0.1rem solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.home-screen-link {
  left: 47.5%;
  top: 34.8%;
  width: 13.8%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1.62;
  align-items: center;
  border-color: #382b21;
  border-radius: 38% / 18%;
  background:
    repeating-linear-gradient(0deg, rgba(183, 203, 88, 0.035) 0 0.18rem, transparent 0.18rem 0.34rem),
    #11130f;
  color: var(--green);
  box-shadow: inset 0 0 2rem #000;
  text-align: center;
  text-shadow: 0 0 0.45rem rgba(183, 203, 88, 0.72);
  transform: none;
}

.home-screen-link strong {
  max-width: 95%;
  font-size: clamp(0.75rem, 1.15vw, 1.15rem);
  line-height: 1.1;
}

.home-screen-link small {
  color: var(--paper);
}

.home-object--music {
  left: 22.8%;
  top: 43.4%;
}

.home-object--notes {
  left: 32.4%;
  top: 26.5%;
  transform: rotate(1.2deg);
}

.home-object--contact {
  left: 73.6%;
  top: 30.5%;
  width: 10.5%;
}

.home-object--archive {
  left: 87.1%;
  top: 41%;
  min-width: 8.5%;
}

.home-object--amplifier {
  left: 3.2%;
  top: 52%;
  min-width: 9.5rem;
  border-style: dashed;
  opacity: 0.86;
  cursor: not-allowed;
  transform: rotate(1deg);
}

.object-link:disabled {
  color: #3f3326;
  background:
    repeating-linear-gradient(45deg, rgba(63, 51, 38, 0.12) 0 0.45rem, transparent 0.45rem 0.9rem),
    var(--paper-deep);
}

.home-board-scrub {
  position: absolute;
  z-index: 2;
  left: 30.2%;
  top: 18.8%;
  width: 17.6%;
  height: 23.8%;
  pointer-events: none;
  background: rgba(29, 18, 12, 0.28);
  box-shadow: inset 0 0 2rem rgba(0, 0, 0, 0.34);
}

.character-zone {
  position: absolute;
  z-index: 3;
  left: 44%;
  top: 59%;
  width: 32%;
  height: 18%;
  border: 0.12rem dashed rgba(231, 217, 172, 0.4);
  border-radius: 50%;
  pointer-events: none;
}

.character-zone .decorative-slot-label {
  position: absolute;
  right: 1rem;
  bottom: 0.4rem;
  max-width: 10rem;
  opacity: 0.82;
}

/* Turntable */

.turntable-vinyl-plane {
  position: absolute;
  z-index: 3;
  left: 23.4%;
  top: 35.5%;
  width: 35.8%;
  aspect-ratio: 1;
  pointer-events: none;
  transform: scaleY(0.67);
  transform-origin: top center;
}

.turntable-vinyl {
  position: absolute;
  inset: 0;
  border: 0.22rem solid #090806;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 8%, #d0bd83 8.3% 20%, #17120e 20.4% 21%, transparent 21.4%),
    repeating-radial-gradient(circle, #151412 0 0.22rem, #050504 0.25rem 0.38rem);
  box-shadow: inset 0 0 1.3rem #000, 0 0 1rem rgba(0, 0, 0, 0.72);
  animation: record-spin 2.1s linear infinite;
  animation-play-state: paused;
}

.turntable-vinyl__label {
  position: absolute;
  z-index: 1;
  inset: 33%;
  display: grid;
  place-items: center;
  border: 0.1rem solid #4a371e;
  border-radius: 50%;
  background: var(--paper-deep);
  color: var(--ink);
  font-size: clamp(0.75rem, 0.85vw, 0.9rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.turntable-vinyl__label.has-approved-artwork {
  background-color: var(--paper-deep);
  color: transparent;
}

.turntable-vinyl__label img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.turntable-vinyl__label img[hidden] {
  display: none;
}

.is-playing .turntable-vinyl {
  animation-play-state: running;
}

@keyframes record-spin {
  to {
    transform: rotate(360deg);
  }
}

.turntable-brand-mask {
  position: absolute;
  z-index: 5;
  left: 53.2%;
  top: 66.1%;
  width: 15.8%;
  min-height: 3.1rem;
  padding: 0.45rem 0.6rem;
  border: 0.1rem solid #786043;
  background: #1c1712;
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  text-transform: uppercase;
}

.turntable-poster-slot {
  position: absolute;
  z-index: 4;
  left: 16.4%;
  top: 4.5%;
  width: 15.2%;
  aspect-ratio: 0.83;
  border: 0.14rem solid rgba(23, 17, 13, 0.74);
  background: rgba(231, 217, 172, 0.92);
  box-shadow: inset 0 0 1.2rem rgba(86, 54, 25, 0.25);
}

.turntable-receiver {
  position: absolute;
  z-index: 5;
  left: 72.8%;
  top: 36.5%;
  width: 21.8%;
  min-height: 10%;
  padding: 0.65rem 0.8rem;
  border: 0.14rem solid #514536;
  background: rgba(10, 14, 12, 0.95);
  color: var(--green);
  box-shadow: inset 0 0 1.2rem #000;
}

.turntable-receiver strong,
.turntable-receiver span {
  display: block;
}

.turntable-receiver strong {
  margin-top: 0.25rem;
  color: var(--paper);
  font-size: clamp(0.8rem, 1.2vw, 1.2rem);
}

.turntable-receiver span:last-child {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}

.turntable-paper-slot {
  position: absolute;
  z-index: 4;
  left: 74.5%;
  top: 70%;
  width: 20%;
  aspect-ratio: 1.35;
  padding: 1rem;
  transform: rotate(-1deg);
}

.control-dock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: center;
  width: min(100% - 1.5rem, 62rem);
  margin: 1rem auto 0;
  padding: 1rem;
  border: 0.14rem solid #5d4d3b;
  background: #17120e;
  box-shadow: var(--heavy-shadow);
}

.control-dock h2,
.control-dock p {
  margin: 0;
}

.control-dock h2 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  text-transform: uppercase;
}

.control-dock p {
  color: #cabf9f;
}

.control-dock button,
.form-button,
.archive-trigger,
.archive-close,
.inactive-drawer {
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 0.14rem solid var(--ink);
  border-radius: 0.14rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  cursor: pointer;
}

.control-dock button:hover,
.form-button:hover,
.archive-trigger:hover,
.archive-close:hover,
.inactive-drawer:hover {
  background: var(--focus);
}

.control-dock__status {
  grid-column: 1 / -1;
  min-height: 1.5rem;
  font-size: 0.9rem;
}

.release-service-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.release-service-links[hidden] {
  display: none;
}

.release-service-links a,
.home-featured a {
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border: 0.14rem solid currentColor;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.release-track-list {
  grid-column: 1 / -1;
}

.release-track-list[hidden] {
  display: none;
}

.release-track-list h2 {
  font-size: 1rem;
}

.release-track-list ol {
  display: grid;
  gap: 0.45rem;
  margin: 0.6rem 0 0;
  padding: 0;
  list-style: none;
}

.release-track-list li,
.release-track-list button {
  width: 100%;
}

.release-track-list li > span {
  display: block;
  padding: 0.65rem 0.8rem;
  border: 0.12rem dashed #5d4d3b;
  overflow-wrap: anywhere;
}

/* Television */

.television-screen {
  position: absolute;
  z-index: 4;
  left: 33.5%;
  top: 36.3%;
  display: flex;
  width: 30.4%;
  aspect-ratio: 1.47;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(0.8rem, 2vw, 2rem);
  overflow: hidden;
  border: 0.2rem solid #201a15;
  border-radius: 35% / 17%;
  background:
    repeating-linear-gradient(0deg, rgba(183, 203, 88, 0.04) 0 0.16rem, transparent 0.16rem 0.34rem),
    radial-gradient(circle, #29302a, #070a08 72%);
  box-shadow: inset 0 0 3rem #000;
  color: var(--paper);
  text-align: center;
}

.television-screen h2,
.television-screen p {
  margin: 0;
}

.television-feature-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.television-feature-media {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: #020302;
}

.television-feature-media[hidden] {
  display: none;
}

.television-feature-media img,
.television-feature-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.television-screen[data-media-kind="poster"] .television-feature-media img {
  object-fit: contain;
}

.television-screen.has-media {
  justify-content: flex-end;
}

.television-screen.has-media .television-feature-copy {
  width: 100%;
  padding: 0.55rem;
  background: rgba(0, 0, 0, 0.82);
  pointer-events: none;
}

.television-screen[data-media-kind="video"].has-media {
  justify-content: flex-start;
}

.television-screen h2 {
  max-width: 23rem;
  margin-top: 0.35rem;
  font-size: clamp(1rem, 2.1vw, 2.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.television-screen p:last-child {
  max-width: 28rem;
  margin-top: 0.55rem;
  color: #d3c8a8;
  font-size: clamp(0.75rem, 1.05vw, 1rem);
}

.board-surface {
  position: absolute;
  z-index: 4;
  left: 14.2%;
  top: 5.7%;
  width: 67.1%;
  height: 73.8%;
  padding: clamp(0.75rem, 1.8vw, 1.6rem);
  border: 0.5rem solid #322116;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 0, 0, 0.22) 0 0.09rem, transparent 0.13rem),
    radial-gradient(circle at 78% 64%, rgba(255, 222, 150, 0.08) 0 0.1rem, transparent 0.14rem),
    var(--cork);
  box-shadow: inset 0 0 3rem rgba(0, 0, 0, 0.52), var(--heavy-shadow);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.board-heading {
  width: fit-content;
  margin: 0 auto 1rem;
  padding: 0.5rem 1rem;
  border: 0.14rem solid #0e0b09;
  background: #211710;
  color: var(--red-bright);
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.bulletin-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.2vw, 1rem);
}

.bulletin-card {
  min-width: 0;
  padding: clamp(0.55rem, 1vw, 0.9rem);
  border: 0.12rem solid #392a1b;
  background:
    repeating-linear-gradient(0deg, transparent 0 1.6rem, rgba(70, 54, 33, 0.14) 1.6rem 1.66rem),
    var(--paper);
  color: var(--ink);
  box-shadow: 0.2rem 0.25rem 0 rgba(0, 0, 0, 0.65);
  transform: rotate(0.5deg);
  overflow-wrap: anywhere;
}

.bulletin-card:nth-child(even) {
  transform: rotate(-0.8deg);
}

.bulletin-card--priority {
  grid-column: span 2;
  border-color: var(--red);
}

.bulletin-card h3,
.bulletin-card p {
  margin: 0;
}

.bulletin-card h3 {
  margin-top: 0.25rem;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.bulletin-card > p:last-child {
  margin-top: 0.4rem;
  font-size: clamp(0.78rem, 1.1vw, 0.96rem);
}

.bulletin-card .surface-kicker {
  color: #713126;
}

.bulletin-media-slot {
  display: grid;
  min-height: 4.8rem;
  place-items: center;
  margin-top: 0.45rem;
  border: 0.12rem dashed #705f42;
  background: rgba(63, 47, 31, 0.12);
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.bulletin-card img {
  display: block;
  width: 100%;
  margin-top: 0.45rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bulletin-caption,
.board-status {
  font-size: 0.78rem;
}

.board-status {
  margin: 0.7rem 0 0;
  color: #dfd0a4;
  font-weight: 800;
}

/* Fridge */

.fridge-open-link {
  left: 51.2%;
  top: 28.4%;
  width: 13.5%;
  min-width: 8rem;
  align-items: center;
  text-align: center;
  transform: rotate(-2deg);
}

.fridge-tv-saying {
  position: absolute;
  z-index: 4;
  left: 15.2%;
  top: 35.2%;
  display: grid;
  width: 18.6%;
  aspect-ratio: 1.5;
  place-items: center;
  padding: 0.7rem;
  border-radius: 36% / 18%;
  background: #10130f;
  box-shadow: inset 0 0 2rem #000;
  color: var(--green);
  font-size: clamp(0.75rem, 1.15vw, 1.08rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

.scene--fridge.is-opening .scene__art {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 320ms ease, transform 360ms ease;
}

.scene--fridge.is-opening .fridge-open-link {
  transform: scale(1.06) rotate(0deg);
  transition: transform 280ms ease;
}

/* Contact */

.contact-baked-mask {
  position: absolute;
  z-index: 3;
  left: 53.5%;
  top: 13%;
  width: 34%;
  height: 58%;
  border-radius: 48% 46% 38% 44%;
  pointer-events: none;
  background: rgba(35, 28, 22, 0.74);
  box-shadow: 0 0 2rem 1.1rem rgba(25, 18, 13, 0.72);
  filter: blur(0.4rem);
  transform: rotate(-1deg);
}

.contact-art-form {
  position: absolute;
  z-index: 6;
  left: 54.2%;
  top: 5.5%;
  width: min(36%, 34rem);
  aspect-ratio: 1086 / 1448;
  color: var(--ink);
  filter: drop-shadow(0.6rem 0.8rem 0.32rem rgba(0, 0, 0, 0.8));
  transform: rotate(-0.55deg);
}

.contact-art-form,
.contact-baked-mask {
  transition: opacity 280ms var(--pdv-transition-ease, ease);
}

.contact-art-form[data-pdv-contact-transition="out"],
.contact-baked-mask[data-pdv-contact-transition="out"] {
  opacity: 0;
  pointer-events: none;
}

.contact-art-form__sheet {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contact-art-form > .contact-close {
  position: absolute;
  z-index: 7;
  top: 1.6%;
  left: 5.2%;
  right: auto;
  display: inline-flex;
  min-width: 4.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0.35rem;
  border: 0;
  color: #3b2015;
  background: transparent;
  box-shadow: none;
  font-family: Arial Black, Impact, Arial, sans-serif;
  font-size: clamp(0.58rem, 1.7cqw, 0.78rem);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.contact-art-form > .contact-close:is(:hover, :focus-visible) {
  color: #8e281c;
  background: transparent;
}

.contact-art-form > .contact-close:focus-visible {
  outline: 0.15rem dashed #6d241b;
  outline-offset: -0.08rem;
  box-shadow: none;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-art-field {
  position: absolute;
  z-index: 2;
}

.contact-art-field--name {
  left: 24.9%;
  top: 31.9%;
  width: 61%;
  height: 5.2%;
}

.contact-art-field--email {
  left: 24.9%;
  top: 41.15%;
  width: 61%;
  height: 5.2%;
}

.contact-art-field--message {
  left: 12.9%;
  top: 56.2%;
  width: 73.2%;
  height: 20.4%;
}

.contact-art-field input,
.contact-art-field textarea {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0.12rem 0.42rem 0.2rem;
  border: 0.1rem solid transparent;
  border-radius: 0;
  background: rgba(246, 235, 202, 0.08);
  color: #080604;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.82rem, 1.15vw, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
  outline-offset: 0.1rem;
  box-shadow: none;
  caret-color: #7b1d15;
}

.contact-art-field input:hover,
.contact-art-field textarea:hover {
  background: rgba(255, 243, 207, 0.2);
}

.contact-art-field input:focus-visible,
.contact-art-field textarea:focus-visible {
  background: rgba(255, 243, 207, 0.46);
}

.field-error {
  position: absolute;
  z-index: 4;
  top: calc(100% + 0.16rem);
  left: 0;
  width: max-content;
  max-width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0.12rem 0.28rem;
  background: #211713;
  color: #fff3cf;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0.16rem 0.18rem 0 rgba(118, 29, 24, 0.82);
}

.field-error:empty {
  display: none;
}

.contact-art-field [aria-invalid="true"] {
  border-color: #761d18;
  background: rgba(255, 243, 207, 0.58);
  box-shadow: 0 0 0 0.16rem rgba(118, 29, 24, 0.48);
}

.contact-art-field textarea {
  padding-top: 0.35rem;
  line-height: 1.72;
  resize: none;
}

.contact-art-submit {
  position: absolute;
  z-index: 3;
  left: 36.8%;
  top: 78.6%;
  width: 29.1%;
  height: 6%;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: rotate(-0.4deg);
}

.contact-art-submit:hover:not(:disabled) {
  background: rgba(255, 243, 207, 0.24);
}

.contact-art-submit:disabled {
  opacity: 0.62;
  cursor: wait;
}

.contact-feedback {
  width: min(100% - 1.5rem, 62rem);
  margin: 1rem auto 0;
}

.contact-form-help {
  min-height: 3.2rem;
  margin: 0;
  padding: 0.72rem 0.85rem;
  border-left: 0.3rem solid #705f42;
  background: rgba(231, 217, 172, 0.94);
  color: var(--ink);
  font-weight: 800;
}

.contact-status {
  position: absolute;
  z-index: 14;
  left: 50%;
  bottom: 6.5%;
  width: min(76%, 34rem);
  margin: 0;
  padding: 0;
  border: 0;
  color: rgba(255, 243, 207, 0.9);
  background: transparent;
  box-shadow: none;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.82rem, 1.5vw, 1.06rem);
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 0.12rem 0.18rem #000, 0 0 0.55rem #000;
  pointer-events: none;
  transform: translateX(-50%) rotate(-0.35deg);
}

.contact-status[data-state="error"] {
  color: #ffd7c9;
}

.contact-status[data-state="pending"] {
  color: rgba(255, 232, 176, 0.82);
}

.contact-status[data-state="success"] {
  animation: contact-success-message 5.6s ease both;
}

.contact-status[hidden] {
  display: none !important;
}

.contact-feedback.is-success .contact-visible-copy {
  justify-content: flex-end;
  background: transparent;
}

.contact-feedback.is-success .contact-form-help {
  display: none;
}

@keyframes contact-success-message {
  0%, 7% { opacity: 0; }
  16%, 82% { opacity: 1; }
  100% { opacity: 0; }
}

.contact-privacy-notice {
  width: min(100% - 1.5rem, 62rem);
  margin: 1rem auto 0;
  padding: clamp(1rem, 2.5vw, 1.6rem);
}

.contact-privacy-notice h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-privacy-notice p {
  max-width: 78ch;
  margin: 0.8rem 0 0;
  line-height: 1.55;
}

.content-layer-status,
.home-featured {
  width: min(100% - 1.5rem, 62rem);
  margin: 0.8rem auto;
  padding: 0.75rem 1rem;
}

.content-layer-status {
  border-left: 0.28rem solid var(--amber);
  background: #17120e;
  color: #cabf9f;
  font-size: 0.85rem;
}

.content-layer-status[data-state="ready"] {
  border-color: var(--green);
}

.content-layer-status[data-state="error"] {
  border-color: var(--red-bright);
}

.home-featured h2,
.home-featured p {
  margin: 0 0 0.65rem;
}

.theme-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.theme-overlay img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Archive */

.archive-drawers {
  position: absolute;
  z-index: 5;
  left: 29%;
  top: 19.5%;
  display: grid;
  width: 43.2%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.7rem, 2.4vw, 2.2rem) clamp(0.8rem, 2vw, 1.8rem);
}

.archive-trigger {
  min-width: 0;
  min-height: clamp(3rem, 6.5vw, 5.2rem);
  background: rgba(231, 217, 172, 0.96);
  box-shadow: var(--heavy-shadow);
  font-size: clamp(0.75rem, 1.35vw, 1.12rem);
}

.archive-trigger[aria-expanded="true"] {
  background: var(--focus);
  transform: translateY(0.22rem);
}

.archive-warning {
  position: absolute;
  z-index: 5;
  left: 23.2%;
  top: 68.2%;
  width: 15rem;
  max-width: 20%;
  padding: 0.65rem;
  transform: rotate(1deg);
}

.archive-warning p {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.archive-panels {
  width: min(100% - 1.5rem, 58rem);
  margin: 1rem auto 0;
}

.archive-panel {
  padding: clamp(1rem, 3vw, 2rem);
  border: 0.16rem solid #6a5740;
  background: #17120e;
  box-shadow: var(--heavy-shadow);
}

.archive-panel h2,
.archive-panel p {
  margin: 0;
}

.archive-panel h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
}

.archive-panel p {
  margin-top: 0.5rem;
  color: #d3c7a7;
}

.archive-files {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.archive-files[hidden] {
  display: none;
}

.archive-file {
  min-width: 0;
  margin: 0;
}

.archive-file--image {
  padding: 0.5rem;
  background: var(--paper);
  color: var(--ink);
}

.archive-file--image img {
  display: block;
  width: 100%;
  max-height: 28rem;
  object-fit: contain;
}

.archive-file--image figcaption {
  margin-top: 0.45rem;
  font-weight: 900;
}

.archive-file--download {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.65rem 0.8rem;
  border: 0.12rem solid var(--paper);
  color: var(--paper);
  font-weight: 900;
}

.archive-close {
  margin-top: 1rem;
}

.inactive-drawers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: min(100% - 1.5rem, 58rem);
  margin: 1rem auto 0;
  padding: 0.85rem;
  border: 0.12rem solid #4f4234;
  background: #100d0a;
}

.inactive-drawer {
  border-style: dashed;
  background: #29231d;
  color: #c9bea0;
}

.archive-status {
  width: 100%;
  min-height: 1.6rem;
  margin: 0.15rem 0 0;
  color: var(--green);
}

/* Lost */

.lost-paper {
  position: absolute;
  z-index: 5;
  left: 29.4%;
  top: 16.2%;
  width: 29.2%;
  min-height: 35%;
  padding: clamp(1rem, 2.4vw, 2.2rem);
  transform: rotate(-0.4deg);
}

.lost-paper .surface-kicker {
  color: #752d23;
}

.lost-paper h1,
.lost-paper p {
  margin: 0;
}

.lost-paper h1 {
  margin-top: 0.3rem;
  font-size: clamp(1.6rem, 4vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.lost-paper .lost-copy {
  margin-top: 0.7rem;
  color: #74291f;
  font-size: clamp(0.95rem, 1.8vw, 1.55rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.lost-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.lost-notes span {
  padding: 0.3rem 0.42rem;
  border: 0.1rem solid #776445;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lost-home-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin-top: 0.85rem;
  padding: 0.6rem 0.8rem;
  border: 0.14rem solid var(--ink);
  background: #1b1510;
  color: var(--paper);
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.route-note {
  width: min(100% - 1.5rem, 58rem);
  margin: 1rem auto 0;
  padding: 0.75rem 0.9rem;
  border-left: 0.3rem solid var(--amber);
  background: #17120e;
  color: #cbbf9f;
  font-size: 0.88rem;
}

.site-footer {
  width: min(100%, 72rem);
  margin-inline: auto;
  padding: 1.5rem 1rem 2.5rem;
  color: #988d75;
  font-size: 0.78rem;
  text-align: center;
}

@media (max-width: 1199px) {
  .logo-slot {
    left: 23.2%;
    top: 15.3%;
    width: 7.6%;
  }

  .home-screen-link {
    left: 48.6%;
    top: 34.1%;
    width: 11.8%;
  }

  .home-object--music {
    left: 23%;
    top: 43.2%;
  }

  .home-object--notes {
    left: 33.4%;
    top: 25.3%;
  }

  .home-object--contact {
    left: 73.2%;
    top: 29.5%;
  }

  .home-object--archive {
    right: 1.25rem;
    left: auto;
    top: 41.5%;
  }

  .home-object--amplifier {
    left: 1.5%;
    top: 54%;
  }

  .home-board-scrub {
    left: 31.2%;
    top: 17.2%;
    width: 19.2%;
    height: 25.3%;
  }

  .turntable-vinyl-plane {
    left: 19.4%;
    top: 34.8%;
    width: 39.6%;
    transform: scaleY(0.66);
  }

  .turntable-brand-mask {
    left: 54.1%;
    top: 62.1%;
    width: 13.6%;
  }

  .turntable-poster-slot {
    left: 16.5%;
    top: 3.1%;
    width: 14.2%;
  }

  .turntable-receiver {
    left: 72.5%;
    top: 36%;
    width: 25%;
  }

  .turntable-paper-slot {
    left: 74.8%;
    top: 65.5%;
    width: 22.5%;
  }

  .television-screen {
    left: 33.4%;
    top: 35.2%;
    width: 26.6%;
  }

  .board-surface {
    left: 10.3%;
    top: 5.2%;
    width: 75.2%;
    height: 75%;
  }

  .fridge-open-link {
    left: 53.4%;
    top: 29.8%;
  }

  .fridge-tv-saying {
    left: 19.5%;
    top: 39.1%;
    width: 17.4%;
  }

  .contact-baked-mask {
    left: 52.6%;
    top: 11%;
    width: 37%;
    height: 61%;
  }

  .contact-art-form {
    left: 53.8%;
    top: 4.4%;
    width: min(38%, 30rem);
  }

  .archive-drawers {
    left: 26.6%;
    top: 21.8%;
    width: 47.8%;
  }

  .archive-warning {
    left: 20.7%;
    top: 69.2%;
  }

  .lost-paper {
    left: 27.4%;
    top: 16%;
    width: 31.7%;
  }
}

@media (max-width: 767px), (max-width: 1100px) and (orientation: portrait) {
  html {
    scroll-behavior: auto;
  }

  .site-header {
    grid-template-columns: 1fr;
    position: relative;
  }

  .fallback-nav ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }

  .fallback-nav a {
    width: 100%;
    padding-inline: 0.35rem;
    font-size: 0.75rem;
  }

  .session-strip {
    text-align: left;
  }

  .page-intro {
    padding-top: 1.35rem;
  }

  .scene-shell {
    padding-inline: 0;
  }

  .scene {
    border-inline: 0;
  }

  .logo-slot {
    left: 13.8%;
    top: 17.4%;
    width: 13.6%;
  }

  .logo-slot figcaption {
    position: absolute;
    bottom: calc(100% + 0.4rem);
    left: -0.5rem;
    width: 7.5rem;
    margin-top: 0;
  }

  .home-screen-link {
    left: 49.2%;
    top: 31.1%;
    width: 23%;
  }

  .home-screen-link strong {
    font-size: 0.75rem;
  }

  .home-screen-link small {
    display: none;
  }

  .home-object--music {
    left: 8.5%;
    top: 39.4%;
  }

  .home-object--notes {
    left: 30.7%;
    top: 24.5%;
  }

  .home-object--contact {
    left: auto;
    right: 2.4%;
    top: 22.8%;
    width: 24%;
    min-width: 0;
  }

  .home-object--archive {
    right: auto;
    left: 62%;
    top: 70.5%;
    min-width: 34%;
  }

  .home-object--amplifier {
    left: 2%;
    top: 67.5%;
    min-width: 8rem;
  }

  .home-board-scrub {
    left: 29.5%;
    top: 18%;
    width: 25.5%;
    height: 18.4%;
  }

  .character-zone {
    left: 15%;
    top: 48%;
    width: 76%;
    height: 18%;
  }

  .character-zone .decorative-slot-label {
    right: 0.3rem;
    bottom: -2.5rem;
  }

  .turntable-vinyl-plane {
    left: 13.9%;
    top: 39.2%;
    width: 72.4%;
    transform: scaleY(0.62);
  }

  .turntable-brand-mask {
    left: 57.3%;
    top: 65.1%;
    width: 35.5%;
  }

  .turntable-poster-slot {
    left: 8.4%;
    top: 7%;
    width: 33.8%;
  }

  .turntable-receiver {
    left: 50.5%;
    top: 75.7%;
    width: 42%;
    min-height: 10%;
    background: rgba(231, 217, 172, 0.96);
    color: #6b271d;
    box-shadow: var(--heavy-shadow);
  }

  .turntable-receiver strong {
    color: var(--ink);
  }

  .turntable-paper-slot {
    display: none;
  }

  .control-dock {
    grid-template-columns: 1fr;
  }

  .control-dock button {
    width: 100%;
  }

  .television-screen {
    left: 21.7%;
    top: 31.7%;
    width: 58.2%;
    padding: 1rem;
  }

  .television-screen h2 {
    font-size: clamp(1.1rem, 6vw, 1.65rem);
  }

  .television-screen p:last-child {
    font-size: 0.78rem;
  }

  .board-surface {
    left: 8%;
    top: 8.4%;
    width: 84%;
    height: 70%;
    padding: 0.7rem;
    border-width: 0.32rem;
  }

  .board-heading {
    margin-bottom: 0.65rem;
    font-size: clamp(1.1rem, 6vw, 1.65rem);
  }

  .bulletin-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .bulletin-card--priority {
    grid-column: 1 / -1;
  }

  .bulletin-card h3 {
    font-size: 0.9rem;
  }

  .bulletin-card > p:last-child {
    font-size: 0.75rem;
  }

  .bulletin-media-slot {
    min-height: 3.2rem;
  }

  .fridge-open-link {
    left: 51.5%;
    top: 33%;
    width: 34%;
  }

  .fridge-tv-saying {
    left: 0;
    top: 33%;
    width: 26%;
    font-size: 0.75rem;
  }

  .contact-baked-mask {
    left: 2%;
    top: 3%;
    width: 96%;
    height: 62%;
    background: rgba(19, 14, 11, 0.68);
  }

  .contact-art-form {
    left: 50%;
    top: 4.5%;
    width: min(92%, 36rem);
    transform: translateX(-50%) rotate(-0.35deg);
  }

  .contact-art-field input,
  .contact-art-field textarea {
    font-size: 1rem;
  }

  .contact-art-field input {
    min-height: 2.75rem;
    transform: translateY(-0.45rem);
  }

  .contact-feedback {
    grid-template-columns: 1fr;
  }

  .archive-drawers {
    left: 19.8%;
    top: 17.2%;
    width: 60%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .archive-trigger {
    min-height: 3.3rem;
    padding: 0.45rem;
    font-size: 0.75rem;
  }

  .archive-warning {
    left: 14.8%;
    top: 55%;
    max-width: 38%;
  }

  .lost-paper {
    left: 15%;
    top: 14.5%;
    width: 69%;
    min-height: 35%;
    padding: 1rem;
  }

  .lost-paper h1 {
    font-size: clamp(1.65rem, 10vw, 2.5rem);
  }

  .lost-paper .lost-copy {
    font-size: 1rem;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  .contact-baked-mask {
    left: 50%;
    top: 3%;
    width: 49%;
    height: 86%;
  }

  .contact-art-form {
    left: 53%;
    top: 2.5%;
    width: min(45%, 27rem);
    transform: rotate(-0.35deg);
  }
}

.object-link:focus-visible,
.archive-trigger:focus-visible,
.archive-panel:focus-visible {
  box-shadow: var(--heavy-shadow), 0 0 0 0.48rem #000;
}

.home-screen-link:focus-visible {
  box-shadow: inset 0 0 2rem #000, 0 0 0 0.48rem #000;
}

@media (max-width: 420px) {
  .object-link {
    min-width: 6.3rem;
    padding: 0.42rem 0.52rem;
    font-size: 0.78rem;
  }

  .home-object--archive {
    min-width: 35%;
  }

  .turntable-brand-mask {
    font-size: 0.75rem;
  }

  .contact-art-form {
    width: 94%;
  }
}

@media (max-width: 767px), (max-width: 1100px) and (orientation: portrait) {
  .scene--bulletin .scene__art {
    transform-origin: 26% 64%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .is-playing .turntable-vinyl {
    animation: none;
  }

}

@media (forced-colors: active) {
  .scene__art {
    opacity: 0.28;
  }

  .surface-card,
  .object-link,
  .paper-surface,
  .board-surface,
  .television-screen,
  .archive-panel {
    border: 0.18rem solid CanvasText;
    color: CanvasText;
    background: Canvas;
  }

  .contact-art-form__sheet {
    opacity: 0.22;
  }

  .contact-art-field input,
  .contact-art-field textarea,
  .contact-art-submit {
    border: 0.18rem solid CanvasText;
    color: CanvasText;
    background: Canvas;
  }
}

/* Contact privacy disclosure: quiet by default, complete on request. */
.contact-visible-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.2rem;
  padding: 0.65rem 0.8rem;
  color: rgba(255, 243, 207, 0.8);
  background: rgba(8, 6, 5, 0.52);
}

.contact-visible-copy .contact-form-help {
  min-height: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  transform: none;
}

.contact-privacy-trigger,
.contact-privacy-close {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.4rem 0.3rem;
  border: 0;
  color: rgba(255, 243, 207, 0.74);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-thickness: 0.08rem;
  text-underline-offset: 0.2rem;
  cursor: pointer;
}

.contact-privacy-trigger:is(:hover, :focus-visible),
.contact-privacy-close:is(:hover, :focus-visible) {
  color: var(--chalk);
  opacity: 1;
}

.contact-privacy-trigger:focus-visible,
.contact-privacy-close:focus-visible {
  outline: 0;
  box-shadow: none;
  text-decoration-thickness: 0.16rem;
  text-shadow: 0 0 0.5rem rgba(255, 243, 207, 0.55);
}

.contact-privacy-layer {
  position: fixed;
  z-index: 240;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: auto;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgba(4, 3, 2, 0.72);
  backdrop-filter: blur(0.12rem);
}

.contact-privacy-layer[hidden] {
  display: none !important;
}

.contact-privacy-layer .contact-privacy-notice {
  position: relative;
  width: min(100%, 43rem);
  max-height: min(80vh, 44rem);
  margin: auto;
  overflow: auto;
  padding: clamp(1.25rem, 4vw, 2.2rem);
  border: 0.08rem solid rgba(201, 181, 121, 0.26);
  color: #c8bea5;
  background:
    linear-gradient(rgba(25, 20, 15, 0.96), rgba(13, 10, 8, 0.97)),
    #130f0c;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.5);
}

.contact-privacy-layer .contact-privacy-notice h2 {
  padding-right: 3.7rem;
  color: #ddd0ad;
}

.contact-privacy-layer .contact-privacy-notice p {
  font-size: clamp(0.82rem, 1.5vw, 0.94rem);
  line-height: 1.6;
}

.contact-privacy-details {
  margin-top: 1rem;
  border-top: 0.08rem dashed rgba(221, 208, 173, 0.28);
  padding-top: 0.75rem;
}

.contact-privacy-details summary {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: #ddd0ad;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  cursor: pointer;
}

.contact-privacy-details h3 {
  margin: 0.7rem 0 0;
  color: #ddd0ad;
  font-size: 0.94rem;
  line-height: 1.25;
}

.contact-privacy-details > div {
  padding-bottom: 0.2rem;
}

.contact-privacy-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
}

@media (max-width: 767px) {
  .contact-visible-copy {
    align-items: flex-start;
  }

  .contact-privacy-layer {
    place-items: end center;
    padding-top: max(3.5rem, env(safe-area-inset-top));
  }

  .contact-privacy-layer .contact-privacy-notice {
    max-height: calc(100vh - max(4.5rem, env(safe-area-inset-top)) - max(1rem, env(safe-area-inset-bottom)));
  }
}

/* Interaction polish: full-board entry, reusable local fades, and quiet controls. */
.board-surface-entry {
  position: absolute;
  z-index: 6;
  left: 29%;
  top: 22%;
  width: 39%;
  height: 32%;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: 0;
  border-radius: 1.2%;
  background: transparent;
  text-decoration: none;
}

.board-surface-entry::after {
  position: absolute;
  inset: 0;
  border: 0.14rem dashed transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.board-surface-entry:is(:hover, :focus-visible)::after {
  background: rgba(255, 243, 207, 0.025);
}

.board-surface-entry:focus-visible {
  outline: 0;
  box-shadow: none;
}

.board-surface-entry:focus-visible::after {
  border-color: var(--focus);
  box-shadow: inset 0 0 0 0.12rem rgba(0, 0, 0, 0.75), 0 0 0 0.2rem #000;
}

.board-entry-art {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 38%;
  display: block;
  width: 48%;
  height: auto;
  filter: drop-shadow(0.18rem 0.22rem 0.16rem rgba(0, 0, 0, 0.62));
  pointer-events: none;
  transform: translateX(-50%) rotate(-1.7deg);
  transform-origin: center;
  transition: filter 180ms ease, transform 180ms ease;
}

.board-surface-entry:is(:hover, :focus-visible) .board-entry-art {
  filter: drop-shadow(0.22rem 0.28rem 0.18rem rgba(0, 0, 0, 0.68)) brightness(1.025);
  transform: translate(-50%, -0.1rem) rotate(-1.35deg) scale(1.008);
}

.scene--fridge > .fridge-scene-art,
.scene--fridge > .fridge-open-controls,
.scene--fridge > .fridge-open-link,
.scene--fridge > .fridge-contact-form,
.scene--fridge > .fridge-form-mask,
[data-fridge-form-support],
.contact-privacy-layer {
  transition: opacity var(--pdv-transition-fast, 160ms) var(--pdv-transition-ease, ease);
}

.scene--fridge[data-pdv-transition="out"] > .fridge-scene-art,
.scene--fridge[data-pdv-transition="out"] > .fridge-open-controls,
.scene--fridge[data-pdv-transition="out"] > .fridge-open-link,
.scene--fridge[data-pdv-transition="out"] > .fridge-contact-form,
.scene--fridge[data-pdv-transition="out"] > .fridge-form-mask {
  opacity: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .board-surface-entry { left: 29%; top: 24%; width: 38%; height: 31%; }
  .board-entry-art { top: 40%; width: 52%; }
}

@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .board-surface-entry { left: 30%; top: 23%; width: 42%; height: 22%; }
  .board-entry-art { top: 15%; width: 55%; }
}

@media (max-width: 767px) {
  .board-surface-entry { left: 29.5%; top: 24%; width: 46%; height: 22%; }
  .board-entry-art { top: 35%; width: 70%; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-art-form,
  .contact-baked-mask,
  .contact-status {
    transition: none;
    animation: none;
  }

  .board-entry-art,
  .board-surface-entry:is(:hover, :focus-visible) .board-entry-art {
    transform: translateX(-50%) rotate(-1.7deg);
  }

  .scene--fridge > .fridge-scene-art,
  .scene--fridge > .fridge-open-controls,
  .scene--fridge > .fridge-open-link,
  .scene--fridge > .fridge-contact-form,
  .scene--fridge > .fridge-form-mask,
  [data-fridge-form-support],
  .contact-privacy-layer {
    transition: none;
  }
}

/* Owner-approved v004 scene geometry. These final rules intentionally supersede
   the legacy v002 hotspot coordinates while leaving content behavior intact. */
button.object-link {
  padding: 0;
  border: 0;
  border-radius: 0;
  font: inherit;
  appearance: none;
}

.fridge-scene-art[hidden],
.fridge-open-controls[hidden],
.fridge-contact-form[hidden],
.fridge-form-mask[hidden],
[data-fridge-form-support][hidden] {
  display: none !important;
}

.home-screen-link { left: 48.5%; top: 29%; width: 20%; height: 22%; }
.home-object--music { left: 20%; top: 44%; width: 20%; height: 11%; }
.home-object--notes { left: 31%; top: 14%; width: 23%; height: 30%; }
.home-object--contact { left: 70%; top: 16%; width: 21%; height: 54%; }
.home-object--archive { left: 91%; top: 29%; width: 8%; height: 44%; }

.television-screen {
  left: 22%;
  top: 25%;
  width: 50%;
  height: 52%;
  overflow: hidden;
  border-radius: 8% / 10%;
  clip-path: inset(0 round 8% 8% 10% 10%);
}

.turntable-receiver { left: 74%; top: 38%; width: 23%; height: 29%; }
.fridge-open-link { left: 41%; top: 14%; width: 31%; height: 74%; }

.fridge-open-controls {
  position: absolute;
  z-index: 8;
  inset: 0;
}

.fridge-contact-trigger { left: 65%; top: 55%; width: 18%; height: 33%; }
.fridge-close-link { left: 43%; top: 19%; width: 15%; height: 62%; }
.fridge-contact-form { z-index: 12; }
.fridge-form-mask { z-index: 11; }

@media (min-width: 768px) and (max-width: 1199px) {
  .home-screen-link { left: 49%; top: 28%; width: 21%; height: 22%; }
  .home-object--music { left: 21%; top: 43%; width: 17%; height: 9%; }
  .home-object--notes { left: 33%; top: 15%; width: 22%; height: 28%; }
  .home-object--contact { left: 69.5%; top: 20%; width: 21.5%; height: 56%; }
  .home-object--archive { left: 91%; top: 27%; width: 8%; height: 44%; }
  .television-screen { left: 17.5%; top: 24%; width: 58.5%; height: 54%; }
  .turntable-receiver { left: 74%; top: 38%; width: 25%; height: 29%; }
  .fridge-open-link { left: 48%; top: 17%; width: 28%; height: 61%; }
  .fridge-contact-trigger { left: 67%; top: 55%; width: 17%; height: 36%; }
  .fridge-close-link { left: 45%; top: 17%; width: 17%; height: 66%; }
}

@media (max-width: 767px), (max-width: 1100px) and (orientation: portrait) {
  .home-screen-link { left: 43%; top: 28%; width: 29%; height: 14%; }
  .home-object--music { left: 7%; top: 34%; width: 29%; height: 7%; }
  .home-object--notes { left: 30%; top: 15%; width: 33%; height: 20%; }
  .home-object--contact { left: 70%; top: 22%; width: 30%; height: 32%; }
  .home-object--archive { display: block; left: calc(100% - 44px); top: 33%; width: 44px; height: 38%; }
  .television-screen { left: 16%; top: 31%; width: 68%; height: 30%; border-radius: 9% / 12%; }
  .turntable-receiver {
    left: 55%;
    top: 84%;
    width: 38%;
    height: 10%;
    display: grid;
    place-items: center;
  }
  .fridge-open-link { left: 33%; top: 22%; width: 48%; height: 50%; }
  .fridge-contact-trigger { left: 65%; top: 49%; width: 28%; height: 31%; }
  .fridge-close-link { left: 30%; top: 23%; width: 26%; height: 56%; }
}

/* Phase 1: artwork-first public shell */

body {
  background: #050403;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 4.5rem;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(0.85rem, 2.2vw, 1.45rem);
  border: 0;
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.84), rgba(5, 4, 3, 0));
  box-shadow: none;
  pointer-events: none;
}

.site-mark,
.site-index {
  pointer-events: auto;
}

.site-mark {
  min-height: 2.75rem;
  padding: 0;
  color: rgba(255, 243, 207, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-shadow: 0 0.12rem 0.6rem #000;
}

.site-mark::before {
  width: 0.55rem;
  height: 0.55rem;
  border-width: 0.08rem;
  box-shadow: 0 0 0.8rem rgba(238, 88, 64, 0.34);
}

.site-index {
  position: relative;
  color: rgba(255, 243, 207, 0.78);
  text-transform: uppercase;
}

.site-index summary {
  display: grid;
  min-width: 3.5rem;
  min-height: 2.75rem;
  place-items: center end;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  list-style: none;
  text-shadow: 0 0.12rem 0.6rem #000;
  cursor: pointer;
}

.site-index summary::-webkit-details-marker {
  display: none;
}

.site-index summary::before {
  content: "+";
  margin-right: 0.45rem;
  color: var(--red-bright);
}

.site-index[open] summary::before {
  content: "−";
}

.fallback-nav {
  position: absolute;
  top: 2.8rem;
  right: 0;
  width: max-content;
  max-width: calc(100vw - 1.7rem);
  padding: 0.5rem 0.15rem 0.65rem 1.4rem;
  background: linear-gradient(90deg, transparent, rgba(5, 4, 3, 0.96) 20%);
}

.fallback-nav ul {
  display: grid;
  gap: 0;
  justify-items: end;
}

.fallback-nav a {
  min-height: 2.75rem;
  justify-content: flex-end;
  padding: 0.55rem 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 243, 207, 0.78);
  background: transparent;
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-shadow: 0 0.12rem 0.6rem #000;
}

.fallback-nav a:hover,
.fallback-nav a[aria-current="page"] {
  color: var(--focus);
  background: transparent;
}

.fallback-nav a[aria-current="page"]::before {
  margin-right: 0.45rem;
  color: var(--red-bright);
  content: "•";
}

.session-strip,
.page-intro {
  display: none;
}

main,
.scene-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.scene {
  width: 100%;
  border: 0;
  box-shadow: none;
}

.scene__art img {
  width: 100%;
}

.scene--home {
  min-height: 100svh;
}

.scene--home .scene__art img {
  min-height: 100svh;
  object-fit: cover;
}

.scene-hint {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: clamp(1rem, 3vw, 2rem);
  left: 0;
  margin: 0;
  color: rgba(255, 243, 207, 0.86);
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  text-align: center;
  text-shadow: 0 0.15rem 0.7rem #000, 0 0 1.5rem #000;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.4rem);
  transition: opacity 500ms ease, transform 500ms ease;
}

.scene-hint.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.object-link {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: transparent;
  background: transparent;
  box-shadow: none;
  text-transform: uppercase;
  transform: none;
  transition: transform 180ms ease, filter 180ms ease;
}

.object-link:hover {
  color: transparent;
  background: transparent;
  transform: none;
}

.object-link::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.destination-label {
  position: absolute;
  z-index: 3;
  top: calc(100% + 0.3rem);
  left: 50%;
  width: max-content;
  max-width: min(13rem, 52vw);
  color: var(--chalk);
  font-size: clamp(0.7rem, 1.25vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 0.12rem 0.35rem #000, 0 0 0.8rem #000, 0 0 1.2rem #000;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.2rem);
  transition: opacity 150ms ease, transform 150ms ease;
}

.object-link:is(:hover, :focus-visible, :active) .destination-label {
  opacity: 1;
  transform: translate(-50%, 0);
}

.object-link:is(:hover, :focus-visible, :active)::before {
  opacity: 1;
}

.object-link:focus-visible {
  outline: 0;
  box-shadow: none;
}

.home-screen-link {
  left: 46.2%;
  top: 31.5%;
  width: 16.5%;
  min-width: 0;
  aspect-ratio: 1.5;
  border-radius: 38% / 18%;
  background: transparent;
  box-shadow: none;
}

.home-screen-link::before {
  inset: 5%;
  background: repeating-linear-gradient(0deg, rgba(183, 203, 88, 0.08) 0 0.12rem, transparent 0.12rem 0.28rem);
  box-shadow: inset 0 0 1.8rem rgba(183, 203, 88, 0.42), 0 0 1rem rgba(183, 203, 88, 0.16);
}

.home-screen-link:is(:hover, :focus-visible, :active)::before {
  animation: pdv-screen-flicker 760ms steps(2, end) infinite;
}

.home-object--music {
  left: 15.5%;
  top: 38%;
  width: 20%;
  height: 17%;
}

.home-object--music::before {
  inset: 4% 14%;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(6, 5, 4, 0.9) 0 8%, rgba(26, 22, 18, 0.88) 8.4% 13%);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.5);
}

.home-object--music:is(:hover, :focus-visible, :active)::before {
  animation: pdv-record-spin 2.2s linear infinite;
}

.home-object--notes {
  left: 29%;
  top: 15.5%;
  width: 21%;
  height: 26%;
}

.home-object--notes::before {
  inset: 6%;
  border-radius: 0.15rem;
  background: rgba(231, 217, 172, 0.08);
  box-shadow: 0 0.6rem 1rem rgba(0, 0, 0, 0.32);
}

.home-object--notes:is(:hover, :focus-visible, :active)::before {
  transform: translateY(-0.28rem) rotate(0.6deg);
}

.home-object--contact {
  left: 70.5%;
  top: 17%;
  width: 19%;
  height: 32%;
}

.home-object--contact::before,
.fridge-open-link::before {
  border-radius: 48% 52% 44% 56%;
  background: radial-gradient(circle at 50% 36%, rgba(255, 238, 186, 0.24), rgba(215, 150, 63, 0.04) 58%, transparent 75%);
  box-shadow: inset 0 0 1.5rem rgba(255, 236, 178, 0.18), 0 0 1.2rem rgba(215, 150, 63, 0.18);
}

.home-object--archive {
  left: 82.5%;
  top: 37%;
  width: 16.5%;
  height: 24%;
}

.home-object--archive::before {
  inset: 14% 5%;
  background: linear-gradient(180deg, transparent 0 42%, rgba(231, 217, 172, 0.17) 43% 48%, transparent 49% 100%);
  box-shadow: 0.25rem 0.2rem 0.5rem rgba(0, 0, 0, 0.35);
}

.home-object--archive:is(:hover, :focus-visible, :active)::before {
  transform: translateX(0.35rem);
}

.home-board-scrub {
  opacity: 0.42;
}

.fridge-open-link {
  left: 48%;
  top: 23%;
  width: 19%;
  height: 42%;
  min-width: 2.75rem;
  transform: none;
}

.fridge-open-link:is(:hover, :focus-visible, :active) {
  transform: translateX(0.18rem);
}

.control-dock,
.contact-privacy-notice,
.archive-panels,
.inactive-drawers {
  width: min(100% - 2rem, 58rem);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.control-dock {
  padding-block: clamp(1.5rem, 4vw, 3rem);
}

.contact-privacy-notice {
  padding: clamp(2rem, 5vw, 4rem) 0;
  color: #9b927d;
  background: transparent;
}

.contact-privacy-notice h2 {
  color: #beb394;
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  letter-spacing: 0.04em;
}

.contact-privacy-notice p {
  font-size: 0.83rem;
}

.archive-trigger {
  border: 0;
  color: var(--paper);
  background: rgba(19, 15, 12, 0.35);
  box-shadow: none;
  text-shadow: 0 0.1rem 0.35rem #000;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.archive-trigger:hover,
.archive-trigger[aria-expanded="true"] {
  color: var(--focus);
  background: rgba(19, 15, 12, 0.58);
  transform: translateX(0.28rem);
}

.archive-trigger:focus-visible {
  outline-color: var(--focus);
  box-shadow: none;
}

.archive-warning {
  border: 0;
  color: var(--paper);
  background: rgba(9, 7, 5, 0.68);
  box-shadow: none;
}

.archive-panel {
  border: 0;
  background: rgba(15, 12, 9, 0.9);
  box-shadow: none;
}

.inactive-drawers {
  opacity: 0.72;
}

.site-footer {
  padding: 1.2rem 1rem 2rem;
  color: #6f6758;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes pdv-record-spin {
  to { transform: rotate(360deg); }
}

@keyframes pdv-screen-flicker {
  0%, 100% { filter: brightness(0.9); }
  45% { filter: brightness(1.22); }
  52% { filter: brightness(0.74); }
}

@media (max-width: 767px), (max-width: 1100px) and (orientation: portrait) {
  .site-header {
    position: fixed;
    display: flex;
    grid-template-columns: none;
    padding: 0.75rem 0.85rem;
  }

  .fallback-nav ul {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fallback-nav a {
    width: auto;
    font-size: 0.75rem;
  }

  .scene--home .scene__art img {
    object-fit: contain;
    object-position: top center;
  }

  .home-screen-link {
    left: 45.5%;
    top: 29.2%;
    width: 29%;
  }

  .home-object--music {
    left: 3%;
    top: 36%;
    width: 31%;
    height: 13%;
  }

  .home-object--notes {
    left: 26%;
    top: 19.5%;
    width: 31%;
    height: 20%;
  }

  .home-object--contact {
    right: 0;
    left: auto;
    top: 18.5%;
    width: 31%;
    height: 25%;
  }

  .home-object--archive {
    left: 57%;
    top: 67%;
    width: 41%;
    height: 16%;
    min-width: 2.75rem;
  }

  .destination-label {
    top: 50%;
    font-size: 0.7rem;
    transform: translate(-50%, -50%);
  }

  .object-link:is(:hover, :focus-visible, :active) .destination-label {
    transform: translate(-50%, -50%);
  }

  .fridge-open-link {
    left: 48%;
    top: 26%;
    width: 39%;
    height: 39%;
  }

  .contact-form-sheet {
    margin-top: -22rem;
  }
}

@media (max-width: 420px) {
  .object-link {
    min-width: 2.75rem;
    padding: 0;
    font-size: inherit;
  }

  .home-object--archive {
    min-width: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-screen-link:is(:hover, :focus-visible, :active)::before,
  .home-object--music:is(:hover, :focus-visible, :active)::before {
    animation: none;
  }
}

@media (forced-colors: active) {
  .object-link,
  .archive-trigger,
  .fallback-nav a {
    border: 0.14rem solid CanvasText;
    color: CanvasText;
    background: Canvas;
  }

  .destination-label {
    color: CanvasText;
  }
}

/* Phase 2: restrained navigation and prop interaction */

.site-header {
  min-height: 0.65rem;
  padding: 0;
  background: transparent;
  pointer-events: auto;
}

.site-header::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0.65rem;
  content: "";
}

.site-nav-trigger {
  position: absolute;
  z-index: 3;
  top: env(safe-area-inset-top, 0px);
  right: calc(0.55rem + env(safe-area-inset-right, 0px));
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.3rem;
  border: 0;
  color: rgba(255, 243, 207, 0.42);
  background: transparent;
  box-shadow: none;
  font: 900 0.58rem/1 var(--body-font);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 0.1rem 0.45rem #000;
  cursor: pointer;
  opacity: 0.72;
}

.site-back-link {
  position: absolute;
  z-index: 4;
  top: env(safe-area-inset-top, 0px);
  left: calc(0.55rem + env(safe-area-inset-left, 0px));
  display: inline-flex;
  min-width: 5.25rem;
  min-height: 3rem;
  align-items: center;
  justify-content: flex-start;
  padding: 0.3rem;
  color: rgba(255, 243, 207, 0.72);
  font: 900 0.58rem/1 var(--body-font);
  letter-spacing: 0.12em;
  text-decoration: none;
  text-shadow: 0 0.1rem 0.45rem #000;
  white-space: nowrap;
  pointer-events: auto;
  touch-action: manipulation;
  opacity: 0.82;
}

.site-back-link:is(:hover, :focus-visible) {
  color: var(--focus);
  opacity: 1;
}

.site-nav-trigger:is(:hover, :focus-visible),
.site-header[data-open="true"] .site-nav-trigger {
  color: var(--chalk);
  opacity: 1;
}

.fallback-nav {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: none;
  padding: 0 4.8rem;
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.78));
  box-shadow: 0 0.35rem 1.2rem rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 0.2rem));
  transition: opacity 160ms ease, transform 180ms ease;
}

.site-header:is(:hover, :focus-within) .fallback-nav,
.site-header[data-open="true"] .fallback-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.fallback-nav ul {
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2.2vw, 1.65rem);
}

.fallback-nav a {
  min-height: 2.75rem;
  justify-content: center;
  padding: 0.4rem 0;
  color: rgba(255, 243, 207, 0.72);
  font-size: clamp(0.59rem, 1vw, 0.72rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.fallback-nav a:hover,
.fallback-nav a[aria-current="page"] {
  color: var(--focus);
}

.fallback-nav a[aria-current="page"]::before {
  margin-right: 0.35rem;
}

.object-link::before {
  content: none;
}

.object-link::after {
  position: absolute;
  z-index: 1;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 220ms ease, filter 220ms ease;
}

.object-link:is(:hover, :focus-visible, :active)::after {
  opacity: 1;
}

.object-link:focus-visible {
  outline: 0.12rem dashed rgba(255, 243, 109, 0.92);
  outline-offset: 0.18rem;
}

.destination-label {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: clamp(0.62rem, 1vw, 0.76rem);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.home-screen-link::after {
  inset: 12%;
  background:
    radial-gradient(circle at 28% 34%, rgba(199, 221, 126, 0.1), transparent 48%),
    radial-gradient(circle at 72% 62%, rgba(199, 221, 126, 0.08), transparent 54%);
  box-shadow: none;
  filter: blur(0.5rem);
  mix-blend-mode: screen;
}

.home-screen-link:is(:hover, :focus-visible, :active)::after {
  animation: pdv-screen-flicker 900ms steps(2, end) infinite;
}

.home-object--music::after {
  inset: 18% 23%;
  background: conic-gradient(from 0deg, transparent 0 42%, rgba(255, 244, 201, 0.13) 46%, transparent 51% 100%);
  filter: blur(0.18rem);
  -webkit-mask-image: radial-gradient(closest-side, #000 50%, transparent 78%);
  mask-image: radial-gradient(closest-side, #000 50%, transparent 78%);
}

.home-object--music:is(:hover, :focus-visible, :active)::after {
  animation: pdv-prop-turn 6s linear infinite;
}

.home-object--notes::after {
  inset: 13% 20% 18% 20%;
  backdrop-filter: brightness(1.1);
  -webkit-backdrop-filter: brightness(1.1);
  -webkit-mask-image: radial-gradient(circle at 48% 48%, #000 0 34%, transparent 72%);
  mask-image: radial-gradient(circle at 48% 48%, #000 0 34%, transparent 72%);
}

.home-object--notes:is(:hover, :focus-visible, :active)::after {
  transform: translateY(-0.2rem) rotate(0.35deg);
}

.home-object--contact::after,
.fridge-open-link::after {
  top: 30%;
  left: 4%;
  width: 18%;
  height: 42%;
  background: rgba(255, 239, 190, 0.18);
  filter: blur(0.32rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 42% 58%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 42% 58%, transparent);
}

.home-object--archive::after {
  inset: 16% 2%;
  backdrop-filter: brightness(1.12);
  -webkit-backdrop-filter: brightness(1.12);
  -webkit-mask-image: radial-gradient(ellipse at 54% 56%, #000 0 18%, transparent 58%);
  mask-image: radial-gradient(ellipse at 54% 56%, #000 0 18%, transparent 58%);
}

.home-object--archive:is(:hover, :focus-visible, :active)::after {
  transform: translateX(0.2rem);
}

.home-object--music {
  left: 15%;
  top: 32%;
  width: 22%;
  height: 18%;
}

.home-object--contact {
  left: 69%;
  top: 13%;
  width: 25%;
  height: 45%;
}

.home-object--archive {
  left: 91.5%;
  top: 29%;
  width: 8.5%;
  height: 37%;
}

.fridge-open-link {
  left: 47%;
  top: 19%;
  width: 25%;
  height: 52%;
}

.fridge-open-link:is(:hover, :focus-visible, :active) {
  transform: translateX(0.12rem);
}

.turntable-receiver {
  display: grid;
  place-items: center;
  padding: 0.35rem 0.55rem;
  text-align: center;
}

.turntable-receiver strong {
  max-width: 100%;
  margin: 0;
  font-size: clamp(0.62rem, 1.25vw, 1.05rem);
  line-height: 1.05;
}

.turntable-published-release {
  position: absolute;
  z-index: 5;
  right: 4.5%;
  bottom: 4.5%;
  width: min(25rem, 29%);
  padding: 0.8rem;
  color: var(--ink);
  background: rgba(231, 217, 172, 0.96);
  transform: rotate(-0.4deg);
}

.turntable-published-release img {
  display: block;
  width: 100%;
  max-height: 18rem;
  object-fit: contain;
}

.turntable-published-release p {
  margin: 0.55rem 0 0;
}

.board-surface {
  left: 14.2%;
  top: 5.7%;
  width: 67.1%;
  height: 73.8%;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
}

.bulletin-items {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: start;
  gap: 1rem;
  padding: 1.5rem;
}

.bulletin-card {
  border: 0;
  box-shadow: 0.16rem 0.2rem 0 rgba(0, 0, 0, 0.45);
  overflow-wrap: anywhere;
}

.bulletin-card--empty {
  position: absolute;
  left: 23.5%;
  top: 45%;
  display: grid;
  width: 15%;
  min-height: 10%;
  place-items: center;
  padding: 0.3rem;
  border: 0;
  color: #30251a;
  background: transparent;
  box-shadow: none;
  font-size: clamp(0.62rem, 1.15vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  transform: rotate(-1.1deg);
}

.bulletin-card--empty p {
  margin: 0;
}

.contact-form-sheet {
  background:
    radial-gradient(circle at 11% 18%, rgba(91, 58, 28, 0.09), transparent 12%),
    radial-gradient(circle at 82% 74%, rgba(91, 58, 28, 0.07), transparent 14%),
    rgba(231, 217, 172, 0.98);
}

.contact-close {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin: -0.35rem 0 0.15rem auto;
  color: #5e281f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-close:is(:hover, :focus-visible) {
  color: #1d1610;
}

.archive-drawers {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.archive-trigger {
  position: absolute;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  color: transparent;
  background: transparent;
  box-shadow: none;
  -webkit-mask-image: radial-gradient(ellipse at 50% 62%, #000 0 24%, transparent 68%);
  mask-image: radial-gradient(ellipse at 50% 62%, #000 0 24%, transparent 68%);
}

.archive-trigger:nth-child(1) { left: 24.5%; top: 16%; width: 15%; height: 19%; }
.archive-trigger:nth-child(2) { left: 40%; top: 16%; width: 15.5%; height: 19%; }
.archive-trigger:nth-child(3) { left: 56.5%; top: 16%; width: 15.5%; height: 19%; }
.archive-trigger:nth-child(4) { left: 24.5%; top: 36%; width: 15%; height: 19%; }
.archive-trigger:nth-child(5) { left: 40%; top: 36%; width: 15.5%; height: 19%; }
.archive-trigger:nth-child(6) { left: 56.5%; top: 36%; width: 15.5%; height: 19%; }

.archive-trigger:is(:hover, :focus-visible),
.archive-trigger[aria-expanded="true"] {
  color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: brightness(1.14);
  -webkit-backdrop-filter: brightness(1.14);
  transform: translateY(0.2rem);
}

.archive-trigger:focus-visible {
  outline: 0.12rem dashed rgba(255, 243, 109, 0.92);
  outline-offset: -0.1rem;
}

.archive-panels {
  width: 100%;
  margin: 0;
}

.archive-panels.is-open {
  position: fixed;
  z-index: 300;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(118, 84, 49, 0.18), transparent 36%),
    linear-gradient(180deg, #17120e, #080604 74%);
  box-shadow: inset 0 0 8rem #000;
}

.archive-panel {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  width: min(100% - 2rem, 72rem);
  margin: auto;
  padding: clamp(2rem, 8vw, 7rem);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.archive-panel[hidden] {
  display: none;
}

.archive-panel:focus-visible {
  outline: 0;
}

.archive-panel h2 {
  font-size: clamp(2rem, 8vw, 6rem);
}

.archive-panel > p:not(.surface-kicker) {
  font-size: clamp(1rem, 2.2vw, 1.45rem);
}

.archive-close {
  width: fit-content;
  min-height: 2.75rem;
  margin-top: 2rem;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: transparent;
  box-shadow: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-close:is(:hover, :focus-visible) {
  color: var(--focus);
  background: transparent;
}

body.has-open-drawer {
  overflow: hidden;
}

@keyframes pdv-prop-turn {
  to { transform: rotate(360deg); }
}

@media (max-width: 767px), (max-width: 1100px) and (orientation: portrait) {
  .site-header {
    padding: 0;
  }

  .site-header:not([data-open="true"]):not(:focus-within) .fallback-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-100% - 0.2rem));
  }

  .fallback-nav {
    padding: 0.35rem 5rem;
  }

  .fallback-nav ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    justify-items: stretch;
  }

  .fallback-nav li {
    width: 100%;
  }

  .fallback-nav a {
    width: 100%;
    min-width: 0;
    font-size: 0.59rem;
    white-space: normal;
  }

  .home-object--music {
    left: 3%;
    top: 35.5%;
    width: 32%;
    height: 11%;
  }

  .home-object--contact {
    right: 0;
    left: auto;
    top: 22%;
    width: 32%;
    height: 25%;
  }

  .home-object--archive {
    display: block;
  }

  .fridge-open-link {
    left: 45%;
    top: 23%;
    width: 45%;
    height: 45%;
  }

  .turntable-receiver {
    border: 0;
    color: #2c2117;
    background: transparent;
    box-shadow: none;
    text-shadow: none;
    transform: rotate(-0.6deg);
  }

  .destination-label {
    top: 50%;
    max-width: 8rem;
  }

  .bulletin-items {
    padding: 0.75rem;
  }

  .bulletin-card--empty {
    left: 2%;
    top: 65%;
    width: 25%;
    font-size: clamp(0.58rem, 2.5vw, 0.76rem);
  }

  .contact-form-sheet {
    margin-top: -32rem;
  }

  .archive-trigger:nth-child(1) { left: 20.5%; top: 14.5%; width: 30.5%; height: 13%; }
  .archive-trigger:nth-child(2) { left: 51%; top: 14.5%; width: 30%; height: 13%; }
  .archive-trigger:nth-child(3) { left: 17%; top: 44.5%; width: 30%; height: 5.5%; }
  .archive-trigger:nth-child(4) { left: 20.5%; top: 28%; width: 30.5%; height: 13%; }
  .archive-trigger:nth-child(5) { left: 51%; top: 28%; width: 30%; height: 13%; }
  .archive-trigger:nth-child(6) { left: 17%; top: 50.5%; width: 30%; height: 5.5%; }

  .archive-panel {
    width: calc(100% - 1rem);
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 767px) {
  .bulletin-card--empty {
    top: 75%;
  }

  .contact-form-sheet {
    margin-top: -34rem;
  }
}

@media (min-width: 768px) and (max-width: 1100px) and (orientation: portrait) {
  .bulletin-card--empty {
    left: 70%;
    top: 64%;
    width: 25%;
  }

  .contact-form-sheet {
    position: absolute;
    left: 58%;
    top: 20%;
    width: 35%;
    margin: 0;
    padding: 1rem;
    transform: rotate(-0.3deg);
  }
}

@media (max-width: 767px) and (min-height: 1100px) {
  main,
  .scene-shell {
    min-height: 100svh;
    background:
      radial-gradient(ellipse at 18% 76%, rgba(151, 63, 28, 0.13), transparent 34rem),
      radial-gradient(ellipse at 82% 92%, rgba(215, 150, 63, 0.06), transparent 25rem),
      repeating-linear-gradient(93deg, transparent 0 4.8rem, rgba(255, 243, 207, 0.012) 4.8rem 4.88rem),
      linear-gradient(180deg, #090705, #100a06 72%, #080604);
  }

  .scene {
    background: #080604;
    box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.42);
  }

  .scene--home {
    min-height: 0;
  }

  .scene--home .scene__art img {
    min-height: 0;
    height: auto;
    object-fit: contain;
    object-position: top center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fallback-nav,
  .object-link::after,
  .archive-trigger {
    transition: none;
  }

  .home-screen-link:is(:hover, :focus-visible, :active)::after,
  .home-object--music:is(:hover, :focus-visible, :active)::after {
    animation: none;
  }
}

@media (forced-colors: active) {
  .site-nav-trigger,
  .site-back-link,
  .fallback-nav a,
  .object-link,
  .archive-trigger {
    border: 0.14rem solid CanvasText;
    color: CanvasText;
    background: Canvas;
  }
}

/* Final-final Local Red Strong hotspot cascade. */
.scene[data-artwork-grade="amber"]::after,
.scene[data-artwork-grade="local-red-strong"]::after,
.scene[data-artwork-grade="pure-red"]::after,
.scene[data-artwork-grade="blackout"]::after,
.scene[data-artwork-grade="late-night-green"]::after,
.scene[data-artwork-grade="cold-morning"]::after { background: none; }
.home-screen-link { left: 47%; top: 25%; width: 22%; height: 23.5%; z-index: 8; }
.home-object--music { left: 20%; top: 36.5%; width: 16%; height: 12%; }
.home-object--notes { left: 33%; top: 12%; width: 20%; height: 12.5%; }
.home-object--contact { left: 70.5%; top: 12%; width: 22.5%; height: 60%; }
.home-object--archive { left: 91.5%; top: 24%; width: 8%; height: 54%; }
.fridge-open-link { left: 35%; top: 12%; width: 33%; height: 74%; }
.fridge-contact-trigger { left: 52%; top: 2%; width: 47%; height: 96%; }
.fridge-close-link { left: 42%; top: 17%; width: 16%; height: 66%; }
.board-surface-entry { left: 20%; top: 7%; width: 61%; height: 78%; }

@media (min-width: 768px) and (max-width: 1199px) {
  .home-screen-link { left: 48%; top: 27.5%; width: 23%; height: 14%; }
  .home-object--music { left: 10%; top: 37.5%; width: 20%; height: 7.5%; }
  .home-object--notes { left: 28.5%; top: 16.5%; width: 19.5%; height: 10.5%; }
  .home-object--contact { left: 48.5%; top: 31%; width: 21%; height: 37%; }
  .home-object--archive { left: 68%; top: 36%; width: 8%; height: 48%; }
  .fridge-open-link { left: 43%; top: 15%; width: 31%; height: 65%; }
  .fridge-contact-trigger { left: 50%; top: 3%; width: 50%; height: 94%; }
  .fridge-close-link { left: 42%; top: 15%; width: 19%; height: 70%; }
  .board-surface-entry { left: 20%; top: 8%; width: 61%; height: 77%; }
}

@media (max-width: 767px) {
  .home-screen-link { left: 50%; top: 29%; width: 24%; height: 11.5%; }
  .home-object--music { left: 10%; top: 34%; width: 24%; height: 7%; }
  .home-object--notes { left: 30.5%; top: 18.5%; width: 31%; height: 10%; }
  .home-object--contact { right: auto; left: 70%; top: 22%; width: 27%; height: 26%; }
  .home-object--archive { left: calc(100% - 44px); top: 25%; width: 44px; height: 31%; min-width: 44px; }
  .fridge-open-link { left: 37%; top: 18%; width: 43%; height: 52%; }
  .fridge-contact-trigger { left: 58%; top: 10%; width: 42%; height: 72%; }
  .fridge-close-link { left: 31%; top: 17%; width: 27%; height: 66%; }
  .board-surface-entry { left: 17%; top: 8%; width: 66%; height: 78%; }
}
