:root {
  --archive-black: #0a0a0a;
  --archive-black-soft: #101114;
  --fog-white: #f4f1ec;
  --cold-grey: #b8b8bd;
  --line: rgba(244, 241, 236, 0.22);
  --glass: rgba(244, 241, 236, 0.055);
  --glass-strong: rgba(244, 241, 236, 0.12);
  --melancholia-1: #1b2436;
  --melancholia-2: #4a6384;
  --melancholia-3: #8fa7c6;
  --null-1: #f1f1ef;
  --null-2: #d9d9d7;
  --null-3: #bebeba;
  --overload-1: #0b0b0b;
  --overload-2: #5f0000;
  --overload-3: #ff2a2a;
  --euphoria-1: #f6d8af;
  --euphoria-2: #c99865;
  --euphoria-3: #fff2e3;
  --font-display: "Helvetica Now Thin", "Helvetica Neue", Arial, sans-serif;
  --font-ui: "Suisse Intl", "Helvetica Neue", Arial, "HarmonyOS Sans SC", "Source Han Sans SC", sans-serif;
  --ease-slow: cubic-bezier(0.2, 0.8, 0.2, 1);
  --page-x: clamp(24px, 8.3vw, 120px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--archive-black);
  color: var(--fog-white);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 76% 10%, rgba(143, 167, 198, 0.16), transparent 28%),
    radial-gradient(circle at 12% 48%, rgba(201, 152, 101, 0.08), transparent 22%),
    linear-gradient(180deg, #070708 0%, #0a0a0a 38%, #111214 100%);
  color: var(--fog-white);
  cursor: none;
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.7;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  content: "";
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 4px);
  opacity: 0.16;
}

body::after {
  position: fixed;
  z-index: 21;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}

button,
a {
  color: inherit;
  cursor: none;
  font: inherit;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  background: #070708;
  color: var(--fog-white);
  transition: opacity 1.2s var(--ease-slow), visibility 1.2s var(--ease-slow);
}

.loader.is-hidden {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.loader__mark {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cold-grey);
  font-family: var(--font-display);
  font-size: 18px;
}

.loader__line {
  width: min(360px, 58vw);
  height: 1px;
  overflow: hidden;
  background: rgba(244, 241, 236, 0.16);
}

.loader__line::before {
  display: block;
  width: 38%;
  height: 100%;
  content: "";
  background: var(--fog-white);
  animation: loadingLine 1.8s var(--ease-slow) infinite;
}

.loader p,
.system-label,
.frame-label,
.site-footer,
nav,
.hero__meta,
.hero__index,
.status-row,
.block-status {
  margin: 0;
  color: var(--cold-grey);
  font-size: 11px;
  line-height: 1.55;
  text-transform: uppercase;
}

.particle-field {
  position: fixed;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.46;
}

.cursor,
.cursor-trail {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

body.has-cursor .cursor,
body.has-cursor .cursor-trail {
  opacity: 1;
}

.cursor {
  width: 8px;
  height: 8px;
  background: rgba(244, 241, 236, 0.92);
}

.cursor-trail {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 241, 236, 0.34);
  background: rgba(143, 167, 198, 0.07);
  filter: blur(1px);
  transition: width 0.4s var(--ease-slow), height 0.4s var(--ease-slow), border-color 0.4s var(--ease-slow);
}

.cursor-trail.is-hovering {
  width: 58px;
  height: 58px;
  border-color: rgba(244, 241, 236, 0.62);
}

.system-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 44px;
  align-items: center;
  gap: 40px;
  padding: 32px var(--page-x);
  color: var(--fog-white);
  transition: background 0.4s var(--ease-slow), border-color 0.4s var(--ease-slow), padding 0.4s var(--ease-slow);
}

.system-header.is-scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.08);
  background: rgba(10, 10, 10, 0.68);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  width: max-content;
  gap: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.brand small {
  color: rgba(244, 241, 236, 0.54);
  font-size: 9px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
}

nav a {
  transition: color 0.4s var(--ease-slow), opacity 0.4s var(--ease-slow);
}

nav a:hover {
  color: var(--fog-white);
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  align-content: center;
  gap: 5px;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  padding: 0 13px;
  transition: border-color 0.4s var(--ease-slow), background 0.4s var(--ease-slow);
}

.icon-button span {
  height: 1px;
  background: var(--fog-white);
}

.icon-button:hover {
  border-color: var(--line);
  background: rgba(244, 241, 236, 0.06);
}

.frame {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow: hidden;
}

.frame-label {
  position: absolute;
  z-index: 5;
  left: var(--page-x);
  top: 112px;
  color: rgba(244, 241, 236, 0.42);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 100svh;
  padding: 132px var(--page-x) 64px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.1);
}

.hero__image,
.entry__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  object-position: center right;
  filter: saturate(0.8) contrast(1.05);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.94) 0%, rgba(7, 8, 10, 0.72) 32%, rgba(7, 8, 10, 0.24) 62%, rgba(7, 8, 10, 0.68) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 44%, rgba(0, 0, 0, 0.72));
}

.hero__content {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(860px, 62vw);
  padding-top: 32px;
}

.hero h1,
.section-heading h2,
.story__copy h2,
.entry__content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 200;
  line-height: 0.92;
}

.hero h1 {
  margin-top: 28px;
  font-size: clamp(58px, 8vw, 118px);
}

.hanzi {
  margin: 18px 0 0;
  color: rgba(244, 241, 236, 0.72);
  font-size: clamp(18px, 2vw, 26px);
}

.hero__copy {
  width: min(380px, 100%);
  margin: 48px 0 0;
  color: rgba(244, 241, 236, 0.72);
}

.hero__meta {
  display: grid;
  grid-template-columns: auto auto;
  gap: 8px 24px;
  width: max-content;
  max-width: 100%;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.hero__meta strong {
  color: var(--fog-white);
  font-weight: 400;
}

.hero__index {
  position: absolute;
  z-index: 4;
  right: var(--page-x);
  top: 50%;
  display: grid;
  gap: 18px;
  transform: translateY(-50%);
  text-align: right;
}

.hero__index a {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  opacity: 0.54;
  transition: opacity 0.4s var(--ease-slow), color 0.4s var(--ease-slow);
}

.hero__index a:hover,
.hero__index a.is-active {
  color: var(--fog-white);
  opacity: 1;
}

.hero__bottom {
  position: relative;
  z-index: 4;
  align-self: end;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.micro-lines {
  display: grid;
  gap: 4px;
  width: 42px;
  margin-top: 12px;
}

.micro-lines span {
  height: 1px;
  background: rgba(244, 241, 236, 0.48);
}

.archive-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 241, 236, 0.42);
  border-radius: 0;
  background: rgba(244, 241, 236, 0.02);
  color: var(--fog-white);
  padding: 0 28px;
  font-size: 11px;
  text-transform: uppercase;
  transition: border-color 0.4s var(--ease-slow), background 0.4s var(--ease-slow), box-shadow 0.4s var(--ease-slow), color 0.4s var(--ease-slow);
}

.archive-button::before,
.archive-button::after {
  content: "[";
  margin-right: 8px;
  color: rgba(244, 241, 236, 0.62);
}

.archive-button::after {
  content: "]";
  margin-right: 0;
  margin-left: 8px;
}

.archive-button:hover {
  border-color: rgba(244, 241, 236, 0.86);
  background: rgba(244, 241, 236, 0.08);
  box-shadow: 0 0 36px rgba(143, 167, 198, 0.16);
}

.archive-button--primary {
  border-color: rgba(246, 216, 175, 0.6);
  color: var(--euphoria-3);
}

.selector,
.fragments {
  padding: 148px var(--page-x);
}

.selector__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  margin-top: 72px;
}

.section-heading {
  width: min(760px, 100%);
}

.section-heading h2,
.story__copy h2,
.entry__content h2 {
  margin-top: 18px;
  font-size: clamp(34px, 4vw, 56px);
}

.orbit-panel,
.emotion-card,
.fragment-card {
  border: 1px solid rgba(244, 241, 236, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(244, 241, 236, 0.07), rgba(244, 241, 236, 0.022));
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
}

.orbit-panel {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: 500px;
}

.orbit {
  position: relative;
  width: min(390px, 76vw);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(244, 241, 236, 0.17);
  border-radius: 50%;
  animation: breathe 8s var(--ease-slow) infinite alternate;
}

.orbit::before,
.orbit::after {
  position: absolute;
  inset: 50%;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(244, 241, 236, 0.12);
  transform: translate(-50%, -50%);
}

.orbit::after {
  width: 100%;
  height: 1px;
}

.emotion-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 132px;
  border: 0;
  background: transparent;
  color: rgba(244, 241, 236, 0.62);
  font-size: 10px;
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-195px) rotate(calc(var(--angle) * -1));
  transition: color 0.4s var(--ease-slow), opacity 0.4s var(--ease-slow);
}

.emotion-node::before {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto 10px;
  border: 1px solid rgba(244, 241, 236, 0.58);
  border-radius: 50%;
  background: rgba(244, 241, 236, 0.08);
  content: "";
  transition: background 0.4s var(--ease-slow), box-shadow 0.4s var(--ease-slow);
}

.emotion-node:hover,
.emotion-node.is-active {
  color: var(--fog-white);
}

.emotion-node.is-active::before {
  background: var(--emotion-color, var(--melancholia-3));
  box-shadow: 0 0 28px var(--emotion-color, rgba(143, 167, 198, 0.5));
}

.orbit__core {
  position: absolute;
  inset: 26%;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 236, 0.22);
  border-radius: 50%;
  background: #050506;
  transition: border-color 1.5s var(--ease-slow), box-shadow 1.5s var(--ease-slow), filter 1.5s var(--ease-slow);
}

.orbit__core img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.58) contrast(1.1);
  transform: scale(1.02);
  transition: opacity 1.5s var(--ease-slow), transform 1.5s var(--ease-slow), filter 1.5s var(--ease-slow);
}

.orbit__core.is-switching img {
  opacity: 0.18;
  filter: saturate(0.28) contrast(1.18) blur(5px);
  transform: scale(1.08);
}

.orbit__core.is-overload {
  border-color: rgba(255, 42, 42, 0.48);
  box-shadow: 0 0 60px rgba(255, 42, 42, 0.16);
}

.orbit__core.is-overload::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255, 42, 42, 0.12) 0 1px, transparent 1px 7px),
    linear-gradient(90deg, transparent, rgba(255, 42, 42, 0.14), transparent);
  mix-blend-mode: screen;
  opacity: 0.6;
  animation: scanBreak 2.4s steps(2, end) infinite;
}

.emotion-card {
  min-height: 500px;
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 72px);
}

.emotion-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  border-bottom: 1px solid rgba(244, 241, 236, 0.16);
  padding-bottom: 28px;
}

.emotion-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 68px);
  font-weight: 200;
  line-height: 1;
}

.emotion-card p:not(.system-label) {
  width: min(480px, 100%);
  margin: 34px 0 0;
  color: rgba(244, 241, 236, 0.72);
}

.status-list {
  display: grid;
  gap: 22px;
  margin-top: 56px;
}

.status-row {
  display: grid;
  grid-template-columns: 82px 1fr 32px;
  gap: 18px;
  align-items: center;
}

.status-track {
  height: 2px;
  overflow: hidden;
  background: rgba(244, 241, 236, 0.12);
}

.status-track span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--emotion-color, var(--melancholia-3));
  box-shadow: 0 0 18px var(--emotion-color, rgba(143, 167, 198, 0.6));
  transition: width 1.5s var(--ease-slow), background 1.5s var(--ease-slow), box-shadow 1.5s var(--ease-slow);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 0;
  min-height: 860px;
  border-top: 1px solid rgba(244, 241, 236, 0.1);
  border-bottom: 1px solid rgba(244, 241, 236, 0.1);
}

.story__image {
  min-height: 640px;
  overflow: hidden;
}

.story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.46) contrast(1.08);
}

.story__copy {
  display: grid;
  align-content: center;
  padding: 120px var(--page-x) 120px clamp(48px, 6vw, 96px);
  background:
    linear-gradient(180deg, rgba(244, 241, 236, 0.035), rgba(244, 241, 236, 0.01)),
    #0b0c0e;
}

.story__copy p:not(.system-label) {
  width: min(420px, 100%);
  margin: 32px 0 0;
  color: rgba(244, 241, 236, 0.72);
}

.story__copy .archive-button {
  width: max-content;
  margin-top: 48px;
}

.scent {
  min-height: auto;
  padding: 128px var(--page-x);
  background: var(--fog-white);
  color: var(--archive-black);
}

.section-heading--dark .system-label,
.scent .system-label {
  color: rgba(10, 10, 10, 0.56);
}

.scent__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 72px;
  border: 1px solid rgba(10, 10, 10, 0.14);
  background: rgba(10, 10, 10, 0.16);
}

.scent-note {
  min-height: 320px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(160deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0)),
    var(--fog-white);
  padding: 32px;
}

.scent-note span {
  color: rgba(10, 10, 10, 0.44);
  font-size: 11px;
}

.scent-note h3 {
  margin: 72px 0 0;
  font-family: var(--font-display);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 300;
}

.scent-note p {
  min-height: 54px;
  margin: 28px 0 0;
  color: rgba(10, 10, 10, 0.62);
  font-size: 13px;
}

.fragment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  grid-template-rows: 320px 320px;
  gap: 24px;
  margin-top: 72px;
}

.fragment-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  backdrop-filter: none;
}

.fragment-card--large {
  grid-row: span 2;
}

.fragment-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  opacity: 1;
  filter: none;
}

.fragment-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46));
}

.fragment-card > div:not(.glitch-field),
.fragment-card > p,
.fragment-card > h3,
.fragment-card > .block-status {
  position: relative;
  z-index: 2;
}

.fragment-card h3 {
  width: min(520px, 100%);
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.7vw, 42px);
  font-weight: 240;
  line-height: 1.22;
}

.fragment-card--large {
  display: grid;
  align-content: end;
}

.fragment-card--overload {
  display: grid;
  align-content: center;
  background:
    radial-gradient(circle at 72% 40%, rgba(255, 42, 42, 0.24), transparent 32%),
    linear-gradient(135deg, #090909, #170303);
}

.fragment-card--overload img {
  opacity: 0.9;
  filter: none;
}

.fragment-card--overload::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5));
  opacity: 1;
  animation: scanBreak 2.8s steps(2, end) infinite;
}

.glitch-field {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 28%, rgba(255, 42, 42, 0.12) 42%, transparent 62%);
  opacity: 0.28;
  animation: glitchDrift 1.5s steps(4, end) infinite;
}

.block-status {
  margin-top: 32px;
  color: var(--overload-3);
}

.fragment-card--warm img {
  filter: none;
}

.entry {
  min-height: 760px;
  display: grid;
  place-items: center start;
  padding: 148px var(--page-x);
}

.entry__image {
  filter: saturate(0.8) contrast(1.04);
}

.entry__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.58) 44%, rgba(8, 8, 8, 0.18)),
    linear-gradient(180deg, rgba(8, 8, 8, 0.2), rgba(8, 8, 8, 0.84));
}

.entry__content {
  position: relative;
  z-index: 3;
  width: min(720px, 100%);
}

.entry__content p:not(.system-label) {
  width: min(420px, 100%);
  margin: 32px 0 0;
  color: rgba(244, 241, 236, 0.72);
}

.entry__content .archive-button {
  margin-top: 48px;
}

.site-footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(244, 241, 236, 0.12);
  padding: 36px var(--page-x);
  background: #080809;
}

.site-footer p {
  margin: 0;
  color: rgba(244, 241, 236, 0.66);
  text-align: center;
}

.site-footer span:last-child {
  text-align: right;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.2s var(--ease-slow), transform 1.2s var(--ease-slow);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loadingLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(270%);
  }
}

@keyframes breathe {
  from {
    transform: scale(0.985) translateY(8px);
    box-shadow: 0 0 0 rgba(143, 167, 198, 0);
  }
  to {
    transform: scale(1.015) translateY(-8px);
    box-shadow: 0 0 80px rgba(143, 167, 198, 0.08);
  }
}

@keyframes scanBreak {
  0%,
  78%,
  100% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(8px);
  }
  82% {
    transform: translateY(-5px);
  }
}

@keyframes glitchDrift {
  0% {
    transform: translateX(0);
    opacity: 0.42;
  }
  50% {
    transform: translateX(9px);
    opacity: 0.8;
  }
  100% {
    transform: translateX(-4px);
    opacity: 0.52;
  }
}

@media (max-width: 980px) {
  :root {
    --page-x: 24px;
  }

  body {
    cursor: auto;
  }

  button,
  a {
    cursor: pointer;
  }

  .cursor,
  .cursor-trail {
    display: none;
  }

  .system-header {
    grid-template-columns: 1fr 44px;
    padding: 20px var(--page-x);
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 112px var(--page-x) 36px;
  }

  .hero__image {
    object-position: 62% center;
  }

  .hero__veil {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.84) 0%, rgba(5, 6, 8, 0.24) 48%, rgba(5, 6, 8, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 6, 8, 0.64), rgba(5, 6, 8, 0.18));
  }

  .frame-label {
    top: 82px;
  }

  .hero__content {
    align-self: end;
    width: min(312px, 82vw);
    padding-bottom: 110px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 9vw, 38px);
    overflow-wrap: normal;
  }

  .hero__copy,
  .hero__meta {
    margin-top: 28px;
  }

  .hero__copy {
    width: 100%;
  }

  .hero__index {
    display: none;
  }

  .hero__bottom {
    position: absolute;
    left: var(--page-x);
    right: var(--page-x);
    bottom: 30px;
  }

  .hero__bottom .archive-button {
    display: none;
  }

  .selector,
  .fragments,
  .scent,
  .entry {
    padding: 96px var(--page-x);
  }

  .selector__grid,
  .story,
  .fragment-grid {
    grid-template-columns: 1fr;
  }

  .selector__grid {
    margin-top: 48px;
  }

  .orbit-panel {
    min-height: 420px;
  }

  .orbit {
    width: min(300px, 74vw);
  }

  .emotion-node {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px) rotate(calc(var(--angle) * -1));
  }

  .emotion-card {
    min-height: auto;
  }

  .story {
    min-height: auto;
  }

  .story__copy {
    padding: 72px var(--page-x);
  }

  .story__image {
    min-height: 72svh;
  }

  .scent__grid {
    grid-template-columns: 1fr;
  }

  .scent-note {
    min-height: 220px;
  }

  .fragment-grid {
    grid-template-rows: auto;
  }

  .fragment-card {
    min-height: 420px;
  }

  .fragment-card--overload {
    min-height: 300px;
  }

  .entry {
    min-height: 100svh;
    place-items: end start;
  }

  .entry__image {
    object-position: 66% center;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer p,
  .site-footer span:last-child {
    text-align: left;
  }
}

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