:root {
  --ink: #2e3a3a;
  --soft-ink: #6b728c;
  --paper: #fff7f9;
  --white: #f9fbfa;
  --line: #7fb8a6;
  --accent-blue: #a9cfe5;
  --accent-green: #7fb8a6;
  --red: #d10000;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

/* -----------------------------
   SHARED SITE STRUCTURE
----------------------------- */

.site-shell {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-right: none;
  border-bottom: none;
  transform: rotate(45deg);
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 8px;
  width: 28px;
  height: 28px;
  border-left: 2px solid var(--ink);
  border-top: 2px solid var(--ink);
  transform: rotate(45deg);
  background: var(--white);
}

.brand-text strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.brand-text span {
  display: block;
  color: var(--soft-ink);
  font-size: 0.9rem;
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--soft-ink);
}

.nav a:hover {
  color: var(--red);
}

.footer-note {
  color: var(--soft-ink);
  font-size: 0.95rem;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

/* -----------------------------
   THE HAG ENTRY PAGE
----------------------------- */

.hag-entry {
  min-height: 100vh;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hag-entry h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  letter-spacing: -0.06em;
  margin: 0 0 80px;
}

.works-list,
.works-space {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.works-list a {
  font-size: 1.4rem;
  color: var(--soft-ink);
}

.works-list a:hover {
  color: var(--red);
}

.works-space a {
  display: block;
  margin: 140px 0;
  text-decoration: none;
}

.works-space a:first-child {
  margin-left: 60px;
  font-size: 2rem;
}

.works-space a:last-child {
  margin-left: 240px;
  font-size: 1.6rem;
  opacity: 0.85;
  font-family: "Comic Sans MS", "Trebuchet MS", sans-serif;
  transform: rotate(-3deg);
}

.works-space a:nth-child(2):hover {
  transform: rotate(-3deg) scale(1.05);
}

/* -----------------------------
   HOUSE LANDING / INSTALLATION CARD GRID
----------------------------- */

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  margin-bottom: 72px;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.hero-copy p {
  max-width: 520px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--soft-ink);
  margin: 0 0 30px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-weight: 700;
}

.hero-link span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--red);
}

.house {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(80px, auto);
  gap: 12px;
  transform: rotate(-1deg);
  cursor: pointer;
}

.room {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  box-shadow: 0 6px 12px rgba(22, 22, 22, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.room:hover {
  transform: translateY(-5px) rotate(1deg);
  box-shadow: 0 24px 50px rgba(22, 22, 22, 0.09);
}

.room small {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

.room h2 {
  margin: 12px 0 0;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.room p {
  margin: 14px 0 0;
  color: var(--soft-ink);
  line-height: 1.45;
  font-size: 0.95rem;
}

.room.big {
  grid-column: span 3;
  grid-row: span 3;
  justify-content: flex-end;
}

.room.big h2 {
  margin-top: 30px;
  transform: translateY(10px);
}

.room.big small {
  margin-bottom: 40px;
}

.room.tall {
  justify-content: center;
}

.room.tall h2 {
  margin-left: 14px;
}

.room.tall small {
  align-self: flex-end;
}

.room.wide {
  grid-column: span 3;
  grid-row: span 2;
}

.room.small {
  grid-column: span 2;
  grid-row: span 2;
}

.room.dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.room.dark p,
.room.dark small {
  color: #f0c9ce;
}

.manifesto {
  border-top: 1px solid var(--line);
  padding-top: 38px;
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 32px;
}

.manifesto h2 {
  margin: 0;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.manifesto p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 680px;
}

/* -----------------------------
   INDEX PIECE LINKS / FRAGMENTS
----------------------------- */

.pieces-threshold {
  height: 160px;
}

.latest {
  max-width: 720px;
  margin: 80px 0 120px auto;
  display: grid;
  gap: 14px;
}

.piece {
  display: block;
  border-top: none;
  padding: 22px 0;
}

.piece h3 {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.1;
  font-weight: 400;
  color: var(--soft-ink);
  letter-spacing: -0.02em;
}

.piece:hover h3 {
  color: var(--ink);
}

.piece-large h3 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.piece-small {
  margin-left: 140px;
}

.piece-small h3 {
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: var(--soft-ink);
}

.piece-left {
  margin-left: 20px;
}

.piece-left h3 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.piece-offset {
  margin-left: 260px;
  margin-top: 60px;
}

.piece-offset h3 {
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--soft-ink);
}

/* -----------------------------
   SHARED ROOM PAGES
----------------------------- */

.room-page {
  position: relative;
  max-width: 720px;
  margin: 180px 40px 80px auto;
}

.room-label {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 16px;
}

.room-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
}

.room-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--soft-ink);
}

.door-link {
  position: fixed;
  left: 0;
  top: 200px;
  width: 180px;
  height: 220px;
  border: 2px solid var(--ink);
  border-left: none;
  border-radius: 0 12px 12px 0;
  z-index: 9999;
  cursor: pointer;
  display: block;
}

.door-link::after {
  content: none;
}

/* -----------------------------
   FRONT ROOM
----------------------------- */

.front-frame {
  position: absolute;
  top: 120px;
  right: 120px;
  width: 260px;
  height: 340px;
  border: 1px solid var(--soft-ink);
  opacity: 0.28;
  z-index: 1;
  pointer-events: none;
}

.front-mark {
  display: block;
  position: absolute;
  width: 34px;
  height: 1px;
  background: var(--red);
  opacity: 0.45;
  z-index: 20;
}

.front-mark:hover {
  opacity: 0.8;
  cursor: pointer;
}

.mark-one {
  top: 180px;
  right: 340px;
  transform: rotate(-8deg);
}

.mark-two {
  top: 260px;
  right: 90px;
  transform: rotate(6deg);
}

.mark-three {
  top: 390px;
  right: 260px;
  transform: rotate(-3deg);
}

.note-front {
  position: absolute;
  top: 260px;
  left: 120px;
  transform: rotate(2deg);
  z-index: 30;
}

/* -----------------------------
   MIRROR ROOM
----------------------------- */

.mirror-page {
  position: relative;
  width: 340px;
  min-height: 700px;
  margin: 160px 80px 120px auto;
  padding: 40px 24px;
  border: 2px solid var(--ink);
  border-radius: 120px 120px 12px 12px;
  background: var(--white);
  text-align: center;
}

.mirror-page::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 50%;
  width: 1px;
  background: var(--line);
}

.mirror-page .room-title,
.mirror-page .room-content {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}

.mirror-page .room-title {
  font-size: 1.4rem;
  line-height: 1.2;
  color: #777;
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: -0.02em;
  max-width: 240px;
  margin-bottom: 60px;
}

.mirror-thoughts {
  position: absolute;
  left: 24px;
  top: 260px;
  width: 200px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #9b4a2f;
  z-index: 2;
}

.mirror-thoughts p {
  margin: 0;
  color: #9b4a2f;
}

.mirror-thoughts p:nth-child(1) { opacity: 0.45; }
.mirror-thoughts p:nth-child(2) { margin-top: 20px; opacity: 0.55; }
.mirror-thoughts p:nth-child(3) { margin-top: 8px; opacity: 0.65; }
.mirror-thoughts p:nth-child(4) { margin-top: 24px; opacity: 0.75; }
.mirror-thoughts p:nth-child(5) { margin-top: 10px; opacity: 0.85; }
.mirror-thoughts p:nth-child(6) { margin-top: 18px; opacity: 0.95; }

.mirror-thoughts p:nth-child(7) {
  margin-top: 34px;
  opacity: 1;
  font-size: 1rem;
  font-weight: 800;
}

.mirror-exit {
  position: absolute;
  right: -10px;
  bottom: 40px;
  font-size: 2rem;
  line-height: 1;
  opacity: 0.8;
  transform: rotate(-8deg);
  cursor: pointer;
}

.mirror-exit:hover {
  opacity: 1;
  transform: rotate(-8deg) translateX(3px);
}

.mirror-up {
  position: absolute;
  top: -48px;
  right: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-ink);
}

.mirror-up:hover {
  color: var(--ink);
}

.mirror-label {
  position: absolute;
  top: 140px;
  right: 460px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--soft-ink);
  opacity: 0.6;
}

.mirror-arrow {
  position: fixed;
  left: 200px;
  top: 260px;
  font-size: 1.6rem;
  color: var(--ink);
  opacity: 0.6;
  pointer-events: none;
  z-index: 10000;
}

.mirror-door::after {
  opacity: 0.4;
  top: 540px;
}

/* -----------------------------
   BACK DOOR ROOM
----------------------------- */

.back-door-page {
  position: relative;
  max-width: 520px;
  margin: 300px auto 80px 40px;
  padding: 40px 24px;
  border: none;
  background: transparent;
}

.back-door-page .room-title {
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.back-door-exit {
  position: fixed;
  right: 0;
  left: auto;
  top: 420px;
  width: 180px;
  height: 220px;
  border: 3px solid var(--ink);
  border-right: none;
  border-radius: 12px 0 0 12px;
}

.back-door-exit::after {
  content: "→";
  position: absolute;
  right: 62px;
  top: 70px;
  font-size: 1.8rem;
  color: var(--ink);
  opacity: 1;
}

.stamp {
  display: inline-block;
  margin-top: -60px;
  margin-left: 40px;
  padding: 10px 14px;
  border: 2px solid var(--red);
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: rotate(-4deg);
}

.stamp + * {
  margin-top: 40px;
}

.slam-door {
  position: fixed;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 260px;
  border: 4px solid var(--ink);
  border-right: none;
  border-radius: 16px 0 0 16px;
  background: var(--white);
  z-index: 20;
  transition: transform 120ms ease, background 120ms ease, opacity 120ms ease;
}

.slam-door::after {
  content: "→";
  position: absolute;
  right: 80px;
  top: 90px;
  font-size: 2rem;
  color: var(--ink);
  opacity: 0.45;
}

.slam-door:hover {
  transform: translateY(-50%) translateX(18px);
}

.slam-door:active {
  transform: translateY(-50%) translateX(14px);
  background: var(--ink);
  opacity: 0.6;
}

/* -----------------------------
   NOTES / FOUND FRAGMENTS
----------------------------- */

.notes {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-left: 0;
}

.note {
  max-width: 340px;
  padding: 18px;
  background: #f6f1c2;
  border: 2px solid var(--ink);
  font-size: 0.95rem;
  line-height: 1.5;
}

.note p {
  margin: 0 0 8px;
}

.note p:last-child {
  margin: 0;
  font-weight: 700;
}

.note.offset {
  margin-left: auto;
  margin-right: 40px;
}

.note-forward {
  display: inline-block;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.note-forward:hover {
  color: var(--red);
}

/* -----------------------------
   ATTIC ROOM
----------------------------- */

.attic-page {
  position: relative;
  min-height: 100vh;
  padding: 80px 40px;
}

.attic-link {
  display: block;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--soft-ink);
  text-decoration: none;
}

.attic-link:hover {
  color: var(--ink);
}

.attic-card {
  position: relative;
}

.attic-card .ghosts {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: var(--ink);
  opacity: 0.18;
  letter-spacing: 0.06em;
  font-weight: 300;
  z-index: 5;
  pointer-events: none;
}

.attic-fragment {
  position: absolute;
  max-width: 240px;
  line-height: 1.4;
  animation: attic-breathe 4s ease-in-out infinite;
}

.attic-fragment.one {
  top: 120px;
  left: 60px;
  opacity: 0.85;
  font-size: 1.1rem;
  font-family: Georgia, serif;
  color: #1a1a1a;
  animation: none;
  transform: rotate(-2deg);
}

.attic-fragment.two {
  top: 320px;
  right: 80px;
  opacity: 0.65;
  font-size: 0.95rem;
  font-family: Arial, sans-serif;
  color: #3a5a7a;
  transform: rotate(1deg);
  animation-delay: 1.5s;
}

.attic-fragment.three {
  bottom: 200px;
  left: 140px;
  opacity: 0.9;
  font-size: 1.2rem;
  font-family: "Courier New", monospace;
  color: #7a3a3a;
  transform: rotate(-1deg);
  animation-delay: 3s;
}

.attic-fragment.four {
  top: 220px;
  left: 50%;
  opacity: 0.7;
  font-size: 0.9rem;
  font-family: "Trebuchet MS", sans-serif;
  color: #5a6b4a;
  transform: translateX(-50%) rotate(2deg);
  animation-delay: 4.5s;
}

.attic-up {
  position: fixed;
  top: 28px;
  right: 40px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-ink);
  text-decoration: none;
}

.attic-up:hover {
  color: var(--ink);
}

@keyframes attic-breathe {
  0% { opacity: 0.1; }
  50% { opacity: 1; }
  100% { opacity: 0.1; }
}

/* -----------------------------
   ROOF ROOM
----------------------------- */

.roof-page {
  position: relative;
  min-height: 100vh;
}

.roof-line {
  position: absolute;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--ink);
  max-width: 300px;
  margin: 0;
}

.line-one {
  top: 38%;
  right: 24%;
}

.line-two {
  top: 46%;
  right: 18%;
}

.roof-down {
  position: fixed;
  bottom: 40px;
  left: 40px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-ink);
  text-decoration: none;
}

.roof-down:hover {
  color: var(--ink);
}

.roof-edge {
  position: absolute;
  bottom: 160px;
  left: 20%;
  width: 260px;
  height: 2px;
  background: var(--ink);
  opacity: 0.6;
}

.roof-card {
  position: relative;
}

.roof-card .roof-text {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--soft-ink);
  opacity: 0.7;
  z-index: 5;
}

/* -----------------------------
   INDIVIDUAL WRITTEN FRAGMENT PAGES
----------------------------- */

.piece-page {
  position: relative;
  min-height: 100vh;
}

.piece-page p {
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 80px;
}

.piece-one {
  max-width: 700px;
  margin: 180px auto 100px;
}

.piece-one p {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.piece-two {
  max-width: 600px;
  margin: 220px 80px 100px auto;
}

.piece-two p {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: var(--soft-ink);
}

.piece-three {
  max-width: 420px;
  margin: 420px auto 100px 140px;
}

.piece-three p {
  font-size: clamp(1.2rem, 4vw, 2.4rem);
}

.piece-four {
  max-width: 520px;
  margin: 500px auto 80px auto;
}

.piece-five {
  max-width: 420px;
  margin: 120px auto 100px 120px;
}

.piece-five p {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* -----------------------------
   I MADE THIS INSTALLATION
----------------------------- */

.child-page {
  margin: 0;
  background: #ffffff;
  overflow: hidden;
  cursor: crosshair;
  font-family: "Comic Sans MS", cursive;
}

#child-space {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.child-shape {
  position: absolute;
  mix-blend-mode: multiply;
  animation: arrive 500ms ease-out forwards;
  filter: blur(0.3px);
}

.child-line {
  position: absolute;
  border-radius: 999px;
  mix-blend-mode: multiply;
  filter: blur(0.2px);
}

.child-back {
  position: fixed;
  top: 24px;
  left: 28px;
  z-index: 999;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft-ink);
  text-decoration: none;
}

.child-back:hover {
  color: var(--red);
}

#question {
  position: fixed;
  top: 37%;
  left: 63%;
  z-index: 1000;
  color: var(--soft-ink);
  font-size: 1rem;
  opacity: 0;
  transition: opacity 2s ease;
}

#question.show {
  opacity: 0.75;
}

#after {
  position: fixed;
  bottom: 120px;
  left: 140px;
  z-index: 1000;
  color: var(--soft-ink);
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 3s ease;
}

#after.show {
  opacity: 0.55;
}

@keyframes arrive {
  from { transform: scale(0.2); }
  to { transform: scale(1); }
}

/* -----------------------------
   RESPONSIVE
----------------------------- */

@media (max-width: 900px) {
  .topbar,
  .hero,
  .manifesto {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar {
    gap: 18px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .house {
    display: block;
    min-height: auto;
    transform: none;
  }

  .room {
    margin-bottom: 14px;
  }

  .latest {
    margin: 80px 0 120px;
  }

  .piece-small,
  .piece-left,
  .piece-offset {
    margin-left: 0;
  }

  .room-page,
  .back-door-page,
  .mirror-page {
    width: auto;
    max-width: none;
    margin: 140px 28px 80px;
  }

  .front-frame,
  .front-mark,
  .note-front,
  .mirror-label,
  .mirror-arrow {
    position: absolute;
  }

  .door-link,
  .slam-door,
  .back-door-exit {
    opacity: 0.75;
  }
}

.leaves-piece {
  position: absolute;
  top: 340px;
  right: 180px;

  transform: rotate(-2deg);

  color: var(--soft-ink);

  line-height: 1.3;
  font-size: 1rem;

  opacity: 0.72;
}

.leaves-piece p:first-child {
  margin: 0 0 6px 0;
}

.leaves-piece p:last-child {
  margin: 0 0 0 46px;
}
.front-whisper:hover {
  opacity: 0.88;
}
.mirror-page {
  position: relative;
}

.mirror-note {
  position: absolute;
  right: 34px;
  bottom: 90px;
  z-index: 9999;

  color: #9b4a2f;
  font-size: 1rem;
  letter-spacing: 0.04em;
  opacity: 0.75;

  transform: rotate(-7deg);
}

.mirror-note:hover {
  opacity: 1;
}
.door-note {
  position: fixed;

  right: 110px;
  bottom: 38px;

  color: var(--soft-ink);

  font-size: 0.92rem;
  letter-spacing: 0.02em;

  opacity: 0.5;

  transform: rotate(2deg);

  transition: opacity 180ms ease;

  z-index: 9999;
}

.door-note:hover {
  opacity: 0.9;
}
/* -----------------------------
   LANDING
----------------------------- */

.landing-page {
  margin: 0;
  min-height: 100vh;

  background: #fffdf9;

  overflow: hidden;
}

.landing-space {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.landing-word {
  position: absolute;

  top: 42%;
  left: 46%;

  color: var(--soft-ink);

  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: 0.08em;
  font-weight: 300;

  opacity: 0.72;

  animation: landing-drift 18s ease-in-out infinite;
}

@keyframes landing-drift {
  0% {
    transform: translate(0px, 0px) rotate(-1deg);
    opacity: 0.62;
  }

  25% {
    transform: translate(8px, -18px) rotate(1deg);
    opacity: 0.78;
  }

  50% {
    transform: translate(-6px, 10px) rotate(-0.5deg);
    opacity: 0.68;
  }

  75% {
    transform: translate(10px, -8px) rotate(1.5deg);
    opacity: 0.8;
  }

  100% {
    transform: translate(0px, 0px) rotate(-1deg);
    opacity: 0.62;
  }
}

.landing-back {
  position: fixed;

  bottom: 28px;
  left: 32px;

  color: var(--soft-ink);

  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  opacity: 0.45;
}

.landing-back:hover {
  opacity: 0.9;
}
.landing-link {
  margin-left: 420px !important;

  font-size: 1.2rem !important;
  letter-spacing: 0.12em;

  opacity: 0.55;

  font-style: italic;
  font-weight: 300;

  transform: rotate(2deg);
}

.landing-link:hover {
  opacity: 0.95;
}
.hag-entry {
  position: relative;
}

.hag-entry h1 {
  margin-bottom: 140px;
}

.works-space {
  min-height: 60vh;
}
.works-space a {
  display: block;
  margin: 120px 0;
  text-decoration: none;
}

.works-space a:first-child {
  margin-left: 40px;
}

.works-space a:nth-child(2) {
  margin-left: 220px;

  transform: rotate(-2deg);

  font-family: "Comic Sans MS", cursive;
}

.landing-link {
  margin-left: 420px !important;

  font-size: 1.1rem !important;

  opacity: 0.55;

  font-style: italic;

  transform: rotate(2deg);
}
.hag-whisper {
  position: fixed;

  right: 34px;
  bottom: 28px;

  color: var(--soft-ink);

  font-size: 0.72rem;
  letter-spacing: 0.12em;

  opacity: 0.4;
}
.emergence-link {
  margin-left: 620px !important;

  font-size: 0.95rem !important;

  opacity: 0.32;

  letter-spacing: 0.18em;
  font-weight: 300;

  transform: rotate(-1deg);
}

.emergence-link:hover {
  opacity: 0.7;
}
.works-space a {
  transition:
    opacity 6s ease,
    transform 8s ease,
    filter 8s ease;
}

.works-space.fade-others a {
  opacity: 0.12;
  filter: blur(2px);
}

.works-space.fade-others a.active {
  opacity: 0.95;
  filter: blur(0);
}
.elsewhere-door {
  position: fixed;
  left: 34px;
  bottom: 28px;

  color: var(--soft);
  text-decoration: none;

  font-size: 0.72rem;
  letter-spacing: 0.12em;
  font-weight: 300;

  opacity: 0;

  transition: opacity 10s ease;

  z-index: 9999;
}

.elsewhere-door.visible {
  opacity: 0.24;
}

.elsewhere-door:hover {
  opacity: 0.65;
}




/* -----------------------------
   ELSEWHERE
----------------------------- */

.elsewhere-page {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  overflow: hidden;
}

.elsewhere-space {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.elsewhere-word {
  position: absolute;

  color: var(--soft-ink);
  text-decoration: none;

  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;

  opacity: 0.52;

  transition:
    opacity 12s ease,
    filter 12s ease,
    transform 14s ease;
}

.elsewhere-word:nth-child(1) {
  top: 22%;
  left: 18%;
}

.elsewhere-word:nth-child(2) {
  top: 46%;
  left: 62%;
  transform: rotate(-3deg);
  font-family: "Comic Sans MS", cursive;
}

.elsewhere-word:nth-child(3) {
  top: 68%;
  left: 34%;
  font-style: italic;
}

.elsewhere-word:nth-child(4) {
  top: 78%;
  right: 18%;

  left: auto;

  opacity: 0.24;
}

.elsewhere-word.gone {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px);
  pointer-events: none;
}