:root {
  color-scheme: dark;
  --ink-0: #03070b;
  --ink-1: #071018;
  --ink-2: #0a1721;
  --ink-3: #10222d;
  --line: rgba(197, 218, 225, 0.1);
  --line-strong: rgba(213, 228, 231, 0.17);
  --text: #edf1ef;
  --muted: #81909a;
  --quiet: #52616b;
  --warm: #f5ead2;
  --warm-dim: #bbaa8b;
  --good: #c49c62;
  --low: #536c7c;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-width: 320px;
  height: 100%;
  margin: 0;
  background: var(--ink-0);
  color: var(--text);
}

body {
  overflow: hidden;
}

body.is-home-open {
  overflow-x: hidden;
  overflow-y: auto;
  background: #000;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 1px solid rgba(238, 221, 187, 0.72);
  outline-offset: 3px;
}

.entry-button:focus-visible {
  outline: 1px solid rgba(238, 221, 187, 0.82);
  outline-offset: 4px;
}

.is-hidden {
  display: none !important;
}

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

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--warm-dim);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.entry {
  position: fixed;
  z-index: 20;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 24px;
  background: #000;
}

.entry__frame {
  position: relative;
  display: flex;
  width: auto;
  max-width: 100%;
  height: min(calc(100vh - 48px), calc(40vw - 20px), 768px);
  min-height: 0;
  aspect-ratio: 2.5 / 1;
  align-items: center;
  overflow: hidden;
  background-color: #000;
  color: #f5efe5;
}

.entry__frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.12));
  content: "";
  pointer-events: none;
}

.entry__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.62) saturate(0.78) contrast(1.08);
}

.entry__frame[data-tone="dark"] {
  color: #4b2d20;
}

.entry__content {
  position: relative;
  z-index: 2;
  width: min(80%, 650px);
  margin: 0 auto;
  transform: translateY(-2%);
  text-align: center;
}

.entry__meta {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: rgba(245, 239, 229, 0.42);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1.65;
}

.entry__meta--brand {
  top: clamp(28px, 4vw, 52px);
  left: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.entry__meta--brand strong {
  color: rgba(245, 239, 229, 0.72);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.entry__meta--brand span {
  margin-top: 3px;
}

.entry__meta--edition {
  right: clamp(28px, 4vw, 52px);
  bottom: clamp(28px, 4vw, 52px);
  text-align: right;
}

.entry__meta--edition span {
  margin: 0 0.45em;
  color: rgba(245, 239, 229, 0.24);
}

.entry__image {
  animation: entry-image-in 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.entry h1 {
  animation: entry-copy-in 650ms 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.entry__actions {
  animation: entry-copy-in 650ms 330ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.entry__meta {
  animation: entry-meta-in 650ms 500ms ease-out both;
}

@keyframes entry-image-in {
  from { opacity: 0; transform: scale(1.012); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes entry-copy-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes entry-meta-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.entry h1 {
  margin: 0;
  color: currentColor;
  font-size: clamp(2rem, 3.45vw, 3.55rem);
  font-weight: 300;
  letter-spacing: 0.018em;
  line-height: 1.08;
}

.entry__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1vw, 16px);
  margin-top: clamp(24px, 3.2vh, 38px);
}

.entry-button {
  display: grid;
  min-width: clamp(116px, 9vw, 150px);
  min-height: 39px;
  place-items: center;
  padding: 10px 22px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.entry-button--primary {
  border-color: #ece5d6;
  background: #ece5d6;
  color: #261d18;
}

.entry-button--ghost {
  border-color: color-mix(in srgb, currentColor 52%, transparent);
  background: transparent;
  color: inherit;
}

.entry-button:hover {
  transform: translateY(-2px);
}

.entry-button--primary:hover {
  box-shadow: 0 8px 26px rgba(236, 229, 214, 0.22);
}

.entry-button--ghost:hover {
  border-color: currentColor;
  background: color-mix(in srgb, currentColor 8%, transparent);
}

.entry-button:active {
  transform: translateY(0);
}

.app-shell {
  display: block;
  width: 100vw;
  min-height: 100vh;
  background: #000;
}

.side-nav {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(187, 207, 214, 0.06);
  background: #04090e;
}

.app-shell > .side-nav {
  display: none;
}

.side-nav__links {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.nav-item {
  display: grid;
  width: 52px;
  min-height: 55px;
  place-items: center;
  border-left: 1px solid transparent;
  background: transparent;
  color: #5d6970;
}

.nav-item span {
  font-family: "Songti SC", SimSun, serif;
  font-size: 20px;
}

.nav-item small {
  margin-top: -8px;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.nav-item:hover,
.nav-item.is-active {
  color: #d8d8d1;
}

.nav-item.is-active {
  border-left-color: var(--warm-dim);
  background: linear-gradient(90deg, rgba(183, 164, 124, 0.1), transparent);
}

.brand {
  margin-top: 22px;
}

.brand-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(211, 201, 179, 0.34);
  color: #d8d4c9;
  font-family: Georgia, serif !important;
  font-size: 15px !important;
}

.side-nav__motto {
  margin: 0 0 24px;
  color: #303b42;
  font-size: 9px;
  line-height: 1.8;
  letter-spacing: 0.25em;
  text-align: center;
}

.home-view {
  display: block;
  min-height: 100vh;
  height: auto;
  overflow: visible;
  background: #000;
}

.voice-exhibit {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: clamp(72px, 9vh, 120px) clamp(22px, 4vw, 76px);
  background: #000;
}

.voice-stage {
  position: relative;
  display: flex;
  width: min(100%, 1540px);
  min-height: min(76vh, 820px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.78) 0%, rgba(2, 7, 18, 0.5) 39%, rgba(2, 7, 18, 0.08) 67%, rgba(2, 7, 18, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 11, 27, 0.12), rgba(0, 3, 11, 0.28)),
    url("../assets/home-quotes-background.jpg") center / cover no-repeat,
    linear-gradient(145deg, #283d75, #0b1838 56%, #030713);
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.28);
  animation: voice-stage-in 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.voice-stage::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(220, 228, 242, 0.08);
  content: "";
  pointer-events: none;
}

.voice-stage__copy {
  position: relative;
  z-index: 1;
  width: min(48%, 650px);
  margin-left: clamp(42px, 7vw, 118px);
  color: #f1eee7;
}

.voice-stage h1 {
  max-width: 560px;
  margin: 0 0 clamp(36px, 6vh, 64px);
  color: #f4f0e8;
  font-family: "Songti SC", STSong, SimSun, serif;
  font-size: clamp(2.35rem, 4.1vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.2;
  animation: voice-copy-in 700ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.voice-quotes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.voice-quotes li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: clamp(13px, 1.5vw, 24px);
  padding: clamp(19px, 2.8vh, 30px) 0;
  border-top: 1px solid rgba(236, 239, 244, 0.24);
  animation: voice-copy-in 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.voice-quotes li:nth-child(1) { animation-delay: 330ms; }
.voice-quotes li:nth-child(2) { animation-delay: 440ms; }
.voice-quotes li:nth-child(3) { animation-delay: 550ms; }

.voice-quotes li:last-child {
  border-bottom: 1px solid rgba(236, 239, 244, 0.24);
}

.voice-quotes span {
  padding-top: 0.35em;
  color: rgba(238, 240, 243, 0.44);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.voice-quotes p {
  margin: 0;
  color: rgba(246, 244, 239, 0.88);
  font-size: clamp(0.88rem, 1.08vw, 1.08rem);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1.85;
}

.desire-exhibit {
  min-height: 100svh;
  padding: clamp(100px, 14vw, 210px) clamp(22px, 4vw, 76px) clamp(120px, 16vw, 240px);
  background: #000;
}

.desire-shell {
  width: min(100%, 1540px);
  margin: 0 auto;
}

.desire-heading {
  display: flex;
  min-height: clamp(120px, 15vw, 230px);
  align-items: flex-start;
}

.desire-heading h2 {
  max-width: 920px;
  margin: 0;
  color: #f0eee8;
  font-family: "Songti SC", STSong, SimSun, serif;
  font-size: clamp(2.45rem, 5.6vw, 5.9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.desire-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
}

.desire-frame {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: clamp(12px, 1.15vw, 18px);
  background-color: #0a0a0a;
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.12)),
    var(--desire-image, none);
  background-position: var(--desire-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2);
  isolation: isolate;
  transition: filter 500ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.desire-frame::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent 46%, rgba(0, 0, 0, 0.12)),
    radial-gradient(ellipse at center, transparent 65%, rgba(0, 0, 0, 0.16));
  content: "";
  pointer-events: none;
}

.desire-frame:not(.is-empty):hover {
  z-index: 2;
  filter: brightness(1.045);
  transform: scale(1.006);
}

.desire-frame > span {
  position: absolute;
  z-index: 2;
  inset: 50% auto auto 50%;
  color: rgba(255, 255, 255, 0.22);
  font-size: 10px;
  letter-spacing: 0.14em;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.desire-frame:not(.is-empty) > span {
  display: none;
}

.desire-frame--air {
  grid-column: 1 / -1;
  aspect-ratio: 2.12 / 1;
  --desire-position: center 58%;
}

.desire-frame--rolls {
  grid-column: 1 / span 7;
  height: clamp(360px, 38vw, 590px);
  --desire-position: 52% center;
}

.desire-frame--ferrari {
  grid-column: 8 / -1;
  height: clamp(360px, 38vw, 590px);
  --desire-position: 52% center;
}

.desire-frame--swiss {
  grid-column: 3 / -1;
  aspect-ratio: 2 / 1;
  margin-top: clamp(24px, 4vw, 64px);
  --desire-position: center 54%;
}

.learning-exhibit {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 190px) clamp(22px, 4vw, 76px) clamp(120px, 13vw, 210px);
  background:
    radial-gradient(circle at 12% 26%, rgba(114, 82, 42, 0.035), transparent 17%),
    radial-gradient(circle at 88% 57%, rgba(114, 82, 42, 0.03), transparent 19%),
    #000;
}

.learning-path,
.learning-manifesto {
  width: min(100%, 1120px);
  margin-right: auto;
  margin-left: auto;
}

.learning-path {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  row-gap: clamp(72px, 6.5vw, 108px);
}

.learning-card {
  position: relative;
  width: min(100%, 290px);
  aspect-ratio: 0.69 / 1;
  margin: 0;
  overflow: hidden;
  background-color: #080706;
  background-image:
    linear-gradient(180deg, rgba(4, 3, 2, 0.04), rgba(3, 2, 1, 0.22)),
    var(--learning-image, none);
  background-position: var(--learning-position, center);
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  filter: saturate(0.79) contrast(1.03) brightness(0.88);
  isolation: isolate;
  transition: filter 500ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.learning-card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(0, 0, 0, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 34%, transparent 66%, rgba(0, 0, 0, 0.16));
  content: "";
  pointer-events: none;
}

.learning-card:not(.is-empty):hover {
  filter: saturate(0.9) contrast(1.03) brightness(0.96);
  transform: translateY(-3px);
}

.learning-card h3 {
  position: absolute;
  z-index: 2;
  inset: 50% 12px auto;
  margin: 0;
  color: rgba(239, 228, 208, 0.91);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}

.learning-card.is-empty h3 {
  color: rgba(188, 160, 115, 0.28);
}

.learning-card:nth-child(odd) {
  grid-column: 2 / span 3;
  justify-self: start;
}

.learning-card:nth-child(even) {
  grid-column: 9 / span 3;
  justify-self: end;
}

.learning-card:nth-child(1) { grid-row: 1; }
.learning-card:nth-child(2) { grid-row: 2; }
.learning-card:nth-child(3) { grid-row: 3; }
.learning-card:nth-child(4) { grid-row: 4; }
.learning-card:nth-child(5) { grid-row: 5; }
.learning-card:nth-child(6) { grid-row: 6; }
.learning-card:nth-child(7) { grid-row: 7; }

.learning-card--ai { --learning-position: 50% center; }
.learning-card--finance { --learning-position: 50% center; }
.learning-card--games { --learning-position: 50% center; }
.learning-card--health { --learning-position: 50% center; }
.learning-card--health h3 { color: rgba(72, 51, 31, 0.88); }
.learning-card--calligraphy {
  --learning-position: 50% center;
  filter: saturate(0.68) contrast(1.06) brightness(0.78);
}
.learning-card--calligraphy h3 { color: rgba(67, 51, 32, 0.92); }
.learning-card--mindset { --learning-position: 50% center; }
.learning-card--english { --learning-position: 50% center; }

.learning-manifesto {
  margin-top: clamp(155px, 18vw, 280px);
  font-family: Georgia, "Times New Roman", serif;
  text-align: center;
}

.learning-manifesto p {
  margin: 0;
  font-size: clamp(1.8rem, 3.1vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.learning-manifesto p:first-child {
  color: rgba(137, 123, 103, 0.43);
}

.learning-manifesto p:last-child {
  color: rgba(239, 234, 224, 0.93);
}

.thought-fragments {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  width: min(100%, 900px);
  margin: clamp(125px, 15vw, 220px) auto 0;
}

.thought-fragment {
  position: relative;
  padding: clamp(20px, 2vw, 28px);
  outline: 1px dotted rgba(158, 126, 78, 0.08);
  background:
    repeating-linear-gradient(180deg, rgba(175, 139, 88, 0.018) 0, rgba(175, 139, 88, 0.018) 1px, transparent 1px, transparent 5px),
    radial-gradient(circle at 8% 6%, rgba(139, 104, 57, 0.075), transparent 42%),
    linear-gradient(135deg, rgba(16, 12, 7, 0.7), rgba(2, 2, 2, 0.2) 72%);
  box-shadow: inset 0 0 45px rgba(0, 0, 0, 0.34);
}

.thought-fragment::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 34px;
  height: 1px;
  background: rgba(170, 133, 78, 0.28);
  content: "";
}

.thought-fragment--left {
  grid-column: 1 / span 6;
}

.thought-fragment--right {
  grid-column: 8 / span 4;
  margin-top: clamp(90px, 9vw, 135px);
}

.thought-fragment ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.thought-fragment li {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 6px;
  margin-top: 10px;
  color: rgba(170, 163, 151, 0.31);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.63rem, 0.69vw, 0.72rem);
  letter-spacing: 0.015em;
  line-height: 1.68;
}

.thought-fragment li:first-child { margin-top: 0; }
.thought-fragment li:first-child,
.thought-fragment--left li:last-child { color: rgba(214, 207, 194, 0.52); }
.thought-fragment--left li:nth-child(3) { color: rgba(174, 167, 154, 0.22); }
.thought-fragment--left li:nth-child(4) { color: rgba(174, 167, 154, 0.34); }
.thought-fragment--right li:first-child { color: rgba(170, 131, 75, 0.65); }
.thought-fragment--right li:last-child { color: rgba(219, 211, 195, 0.48); }

.thought-fragment li > span {
  color: rgba(159, 121, 70, 0.42);
}

.thought-fragment p {
  margin: 0;
}

.thought-fragment em {
  color: rgba(181, 137, 76, 0.84);
  font-style: normal;
  font-weight: 500;
}

.home-view > .home-core,
.home-view > .right-rail {
  display: none;
}

@keyframes voice-stage-in {
  from { opacity: 0; transform: scale(0.992); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes voice-copy-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.home-core {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 1120px);
  min-width: 0;
  height: 100vh;
  margin: 0 auto;
  padding: clamp(26px, 4.2vh, 54px) clamp(38px, 5vw, 78px) clamp(22px, 3.6vh, 46px);
  overflow: hidden;
  background:
    radial-gradient(ellipse 65% 42% at 50% -4%, rgba(213, 170, 104, 0.18), transparent 72%),
    linear-gradient(90deg, rgba(4, 11, 16, 0.4), transparent 14%, transparent 86%, rgba(4, 11, 16, 0.4)),
    #0b1923;
  box-shadow: inset 0 0 0 1px rgba(196, 214, 219, 0.035), 0 0 55px rgba(0, 0, 0, 0.24);
}

.encouragement {
  flex: 0 0 auto;
}

.editable-copy {
  display: block;
  max-width: 830px;
  margin-top: 13px;
  padding: 0;
  background: transparent;
  color: #d6d9d5;
  font-family: "Songti SC", SimSun, serif;
  font-size: clamp(19px, 1.65vw, 27px);
  line-height: 1.55;
  text-align: left;
}

.editable-copy::after {
  margin-left: 9px;
  color: transparent;
  content: "改";
  font-family: sans-serif;
  font-size: 10px;
}

.editable-copy:hover::after {
  color: var(--quiet);
}

.inline-editor {
  max-width: 720px;
  margin-top: 10px;
}

.inline-editor textarea,
.dialog textarea {
  width: 100%;
  resize: none;
  border: 1px solid var(--line-strong);
  background: rgba(3, 9, 14, 0.55);
  color: var(--text);
  line-height: 1.6;
}

.inline-editor textarea {
  padding: 10px 12px;
}

.inline-editor__actions,
.dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 8px;
}

.inline-editor__actions button,
.dialog__actions button {
  padding: 7px 14px;
  background: #14242d;
  color: #aab3b5;
}

.wishes {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(18px, 2.2vh, 30px) 0 clamp(14px, 1.8vh, 24px);
}

.section-heading,
.rail-heading,
.journey__headline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.section-heading h2,
.rail-heading h2 {
  margin: 7px 0 0;
  color: #d8ddda;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.section-note,
.rail-heading > span {
  color: var(--quiet);
  font-size: 10px;
}

.cover-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(72px, 132px));
  justify-content: center;
  gap: clamp(12px, 1.6vw, 24px);
  width: 100%;
  margin-top: clamp(20px, 3vh, 34px);
}

.cover-grid--empty {
  grid-template-columns: minmax(90px, 132px);
}

.cover-item,
.cover-add {
  width: 100%;
  aspect-ratio: 1;
}

.cover-item {
  position: relative;
  border: 1px solid rgba(224, 232, 229, 0.12);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.26);
  animation: cover-float 8s ease-in-out var(--float-delay) infinite;
}

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

.cover-item:hover {
  z-index: 2;
  animation-play-state: paused;
  border-color: rgba(238, 235, 224, 0.35);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.38), 0 0 15px rgba(222, 209, 177, 0.09);
  filter: brightness(1.08);
  transform: translateY(-5px) scale(1.035);
}

@keyframes cover-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.cover-remove {
  position: absolute;
  top: 5px;
  right: 5px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  background: rgba(2, 5, 8, 0.7);
  color: #d7d7d4;
}

.cover-item:hover .cover-remove,
.cover-remove:focus-visible {
  opacity: 1;
}

.cover-add {
  border: 1px dashed rgba(190, 204, 207, 0.19);
  background: rgba(7, 16, 22, 0.38);
  color: rgba(239, 224, 190, 0.72);
  font-size: 34px;
  font-weight: 200;
  text-shadow: 0 0 16px rgba(239, 213, 158, 0.48);
}

.cover-add--nested {
  opacity: 0.28;
  text-shadow: none;
}

.cover-add:hover,
.cover-add:focus-visible {
  border-color: rgba(218, 204, 174, 0.42);
  opacity: 1;
  color: var(--warm);
  text-shadow: 0 0 13px rgba(239, 213, 158, 0.35);
}

.journey {
  flex: 0 0 auto;
  padding-top: clamp(16px, 2vh, 26px);
  border-top: 1px solid var(--line);
}

.journey__headline {
  align-items: center;
}

.journey h2 {
  margin: 7px 0 0;
  color: #c9cfcd;
  font-size: clamp(19px, 1.6vw, 26px);
  font-weight: 400;
}

.journey h2 strong {
  padding: 0 3px;
  color: #fff7e8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.4vw, 68px);
  font-weight: 400;
  text-shadow: 0 0 11px rgba(255, 235, 193, 0.38), 0 0 30px rgba(232, 192, 122, 0.2);
}

.journey__arrow {
  color: var(--warm-dim);
  font-size: 14px;
}

.start-date {
  padding: 0;
  background: transparent;
  color: var(--quiet);
  font-size: 10px;
}

.start-date:hover {
  color: var(--muted);
}

.quiet-button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: #737f83;
  font-size: 11px;
}

.quiet-button:hover {
  border-color: var(--line-strong);
  color: #b8bfbd;
}

.stage-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  margin: 13px 4px 0;
}

.stage-track::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: #263740;
  content: "";
}

.stage-track__line--done {
  position: absolute;
  left: 0;
  width: 50%;
  height: 1px;
  background: #887b61;
}

.stage-dot {
  z-index: 1;
  width: 7px;
  height: 7px;
  border: 1px solid #64747b;
  border-radius: 50%;
  background: var(--ink-2);
}

.stage-dot--done { justify-self: start; border-color: #8e8063; background: #8e8063; }
.stage-dot--current { justify-self: center; width: 10px; height: 10px; border-color: #d8c8a3; background: #d8c8a3; box-shadow: 0 0 10px rgba(225, 205, 160, 0.26); }
.stage-dot--next { justify-self: end; }

.stage-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 10px;
}

.stage-copy > div:last-child {
  text-align: right;
}

.stage-copy span {
  display: block;
  color: var(--quiet);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.stage-copy button {
  max-width: 100%;
  margin-top: 5px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  color: #aeb6b5;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.stage-copy button:hover {
  color: #e0e1dc;
}

.right-rail {
  display: flex;
  min-width: 0;
  height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vh, 46px) 24px clamp(22px, 3.6vh, 40px);
  border-left: 1px solid rgba(185, 206, 211, 0.055);
  background: #050b10;
}

.right-rail section {
  min-height: 0;
}

.clock-panel p {
  margin: 0;
  color: var(--quiet);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.clock-panel time {
  display: block;
  margin-top: 5px;
  color: #a8b0b1;
  font-family: Georgia, serif;
  font-size: clamp(30px, 2.5vw, 40px);
  letter-spacing: 0.06em;
}

.clock-panel .clock-panel__line {
  margin-top: 5px;
  color: #39464d;
  letter-spacing: 0;
}

.plan-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.plan-list {
  max-height: 30vh;
  margin: 14px 0 9px;
  padding: 0;
  overflow-y: auto;
  scrollbar-color: #26333a transparent;
  list-style: none;
}

.plan-item {
  display: grid;
  grid-template-columns: 15px minmax(0, 1fr) 18px;
  gap: 8px;
  align-items: start;
  min-height: 31px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(182, 203, 210, 0.055);
  color: #a7afae;
  font-size: 12px;
  line-height: 1.45;
}

.plan-toggle {
  width: 13px;
  height: 13px;
  margin-top: 2px;
  border: 1px solid #4b5a61;
  background: transparent;
}

.plan-toggle[aria-pressed="true"]::after {
  display: block;
  color: #8f9a98;
  font-size: 10px;
  line-height: 10px;
  content: "✓";
}

.plan-item.is-completed {
  color: #465158;
}

.plan-item.is-completed .plan-text {
  text-decoration: line-through;
}

.plan-remove {
  padding: 0;
  opacity: 0;
  background: transparent;
  color: #56636a;
}

.plan-item:hover .plan-remove,
.plan-remove:focus-visible {
  opacity: 1;
}

.plan-empty {
  padding: 14px 0;
  color: #3f4b52;
  font-size: 11px;
}

.add-plan {
  display: flex;
  border-bottom: 1px solid var(--line);
}

.add-plan input {
  min-width: 0;
  flex: 1;
  padding: 8px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #b8bfbd;
  font-size: 11px;
}

.add-plan input::placeholder {
  color: #39464c;
}

.add-plan button {
  padding: 0 0 0 8px;
  background: transparent;
  color: #69777d;
  font-size: 10px;
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-weekdays {
  margin-top: 15px;
  color: #3d494f;
  font-size: 8px;
}

.calendar-grid {
  row-gap: 3px;
  margin-top: 6px;
}

.calendar-day {
  display: grid;
  width: 25px;
  height: 25px;
  place-self: center;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #647077;
  font-size: 9px;
}

.calendar-day.mood-good {
  background: rgba(196, 156, 98, 0.5);
  color: #ede2cc;
}

.calendar-day.mood-low {
  background: rgba(83, 108, 124, 0.55);
  color: #ced8da;
}

.calendar-day.is-today {
  border-color: rgba(221, 214, 197, 0.58);
}

.calendar-legend {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  color: #4a565c;
  font-size: 8px;
}

.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.legend-dot--good { background: rgba(196, 156, 98, 0.72); }
.legend-dot--low { background: rgba(83, 108, 124, 0.76); }

.archive-threshold {
  display: grid;
  min-height: 72svh;
  place-items: center;
  padding: clamp(110px, 16vw, 240px) 24px;
  background:
    radial-gradient(ellipse 35% 24% at 50% 49%, rgba(137, 100, 49, 0.055), transparent 76%),
    #000;
}

.archive-threshold__door {
  position: relative;
  padding: 34px 34px 45px;
  background: transparent;
  color: rgba(232, 226, 216, 0.78);
}

.archive-threshold__door strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4.8vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.archive-threshold__door::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 1px;
  background: rgba(178, 135, 74, 0.62);
  content: "";
  transition: right 320ms ease, left 320ms ease;
}

.archive-threshold__door strong {
  display: block;
  transition: color 280ms ease, transform 280ms ease;
}

.archive-threshold__door:hover strong {
  color: #fff;
  transform: translateY(-3px);
}

.archive-threshold__door:hover::after {
  right: 34px;
  left: 34px;
}

.archive-view,
.records-view {
  min-height: 100svh;
  background:
    radial-gradient(ellipse 62% 36% at 50% -16%, rgba(135, 99, 48, 0.09), transparent 70%),
    #000;
  color: #eae6dd;
}

.archive-view {
  height: 100svh;
  overflow: hidden;
  padding: 0 clamp(24px, 5vw, 78px);
}

.record-topbar {
  display: flex;
  width: min(100%, 1320px);
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding-top: 34px;
  color: rgba(188, 176, 155, 0.48);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.record-topbar button {
  padding: 8px 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.record-topbar button:hover {
  color: #c29a61;
}

.record-topbar > span {
  display: flex;
  gap: 24px;
}

.archive-shell {
  position: relative;
  width: min(100%, 760px);
  height: 100svh;
  margin: 0 auto;
}

.archive-title {
  position: absolute;
  top: 44%;
  left: 50%;
  margin: 0;
  color: rgba(239, 234, 225, 0.9);
  font-family: "Songti SC", STSong, SimSun, serif;
  font-size: clamp(4rem, 9vw, 8.6rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transition: color 300ms ease, font-size 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-prompt {
  position: absolute;
  z-index: 2;
  top: 59%;
  left: 50%;
  padding: 18px 24px;
  background: transparent;
  color: rgba(237, 232, 222, 0.84);
  font-family: "Songti SC", STSong, SimSun, serif;
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  transition: color 260ms ease, font-size 420ms cubic-bezier(0.22, 1, 0.36, 1), transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-prompt::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 13px;
  border-radius: 50%;
  background: rgba(184, 139, 76, 0.72);
  content: "";
  vertical-align: 0.26em;
  transition: transform 260ms ease;
}

.archive-prompt:hover {
  color: #fff;
}

.archive-prompt:hover::after {
  transform: scale(1.8);
}

.archive-doors {
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(197, 176, 143, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  visibility: hidden;
  transition: opacity 300ms 100ms ease, transform 420ms 70ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 420ms;
}

.archive-doors button {
  display: grid;
  width: 100%;
  grid-template-columns: 52px minmax(0, 1fr) 28px;
  align-items: center;
  padding: clamp(20px, 2.2vw, 28px) 4px;
  border-top: 1px solid rgba(197, 176, 143, 0.18);
  background: transparent;
  color: #ddd8ce;
  text-align: left;
  transition: color 220ms ease, padding 220ms ease, background-color 220ms ease;
}

.archive-doors button:hover {
  padding-right: 16px;
  padding-left: 16px;
  background: rgba(174, 130, 68, 0.04);
  color: #fff;
}

.archive-doors span,
.archive-doors b {
  color: rgba(174, 130, 68, 0.64);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.archive-doors strong {
  font-family: "Songti SC", STSong, SimSun, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.archive-doors b {
  text-align: right;
}

.archive-home {
  position: absolute;
  top: calc(50% + 250px);
  left: 50%;
  padding: 8px;
  background: transparent;
  color: rgba(182, 169, 148, 0.34);
  font-size: 9px;
  letter-spacing: 0.18em;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  visibility: hidden;
  transition: color 180ms ease, opacity 260ms 180ms ease, transform 320ms 160ms ease, visibility 0s 420ms;
}

.archive-home:hover {
  color: #c29a61;
}

.archive-view.is-choice-open .archive-prompt {
  font-size: 0.82rem;
  transform: translate(-50%, -172px);
}

.archive-view.is-choice-open .archive-title {
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  transform: translate(-50%, -168px);
}

.archive-view.is-choice-open .archive-prompt::after {
  transform: scale(0.7);
}

.archive-view.is-choice-open .archive-doors,
.archive-view.is-choice-open .archive-home {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 100ms, 70ms, 0s;
}

.archive-view.is-choice-open .archive-home {
  transform: translate(-50%, 0);
  transition-delay: 180ms, 160ms, 0s;
}

.records-view {
  height: 100svh;
  overflow-y: auto;
  scrollbar-color: #2b241a #000;
}

.records-wrap {
  width: min(860px, calc(100% - 64px));
  min-height: 100%;
  margin: 0 auto;
  padding: 0 0 130px;
}

.record-topbar {
  width: 100%;
}

.records-header {
  margin-top: clamp(82px, 12vh, 145px);
}

.records-header h1 {
  margin: 18px 0 0;
  color: #eeeae1;
  font-family: "Songti SC", STSong, SimSun, serif;
  font-size: clamp(3.1rem, 7vw, 6.3rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1;
}

.record-composer {
  margin: clamp(66px, 9vw, 105px) 0 84px;
  border-top: 1px solid rgba(197, 176, 143, 0.2);
  border-bottom: 1px solid rgba(197, 176, 143, 0.2);
  background: linear-gradient(90deg, rgba(137, 98, 42, 0.025), transparent 72%);
}

.record-composer textarea {
  display: block;
  width: 100%;
  min-height: 168px;
  padding: 27px 2px 20px;
  resize: vertical;
  border: 0;
  outline: 0;
  background: transparent;
  color: #e4ded3;
  font-family: "Songti SC", STSong, SimSun, serif;
  font-size: 16px;
  letter-spacing: 0.025em;
  line-height: 1.9;
}

.record-composer textarea::placeholder {
  color: rgba(174, 160, 138, 0.3);
}

.record-composer__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 16px;
}

.record-composer__footer span {
  color: rgba(174, 160, 138, 0.3);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.record-composer__footer button {
  min-width: 82px;
  padding: 10px 19px;
  border: 1px solid rgba(184, 139, 76, 0.48);
  background: transparent;
  color: #c29a61;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.record-composer__footer button:hover {
  border-color: #c29a61;
  background: rgba(184, 139, 76, 0.08);
}

.record-feed {
  position: relative;
}

.record-card {
  position: relative;
  padding: 28px 2px 34px;
  border-bottom: 1px solid rgba(197, 176, 143, 0.12);
}

.record-card[data-section-start] {
  margin-top: 58px;
}

.record-card[data-section-start]::before {
  position: absolute;
  top: -26px;
  left: 2px;
  color: rgba(174, 130, 68, 0.58);
  font-size: 9px;
  letter-spacing: 0.22em;
  content: attr(data-section-start);
}

.record-card__head {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: space-between;
}

.record-card time {
  color: rgba(176, 164, 145, 0.42);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.record-card__body {
  margin: 13px 0 0;
  color: rgba(231, 225, 214, 0.82);
  font-family: "Songti SC", STSong, SimSun, serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.95;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.record-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.record-card:hover .record-actions,
.record-actions:focus-within {
  opacity: 1;
}

.record-actions button {
  padding: 2px;
  background: transparent;
  color: rgba(174, 160, 138, 0.38);
  font-size: 9px;
}

.record-actions button:hover {
  color: #c29a61;
}

.record-empty {
  display: grid;
  min-height: 250px;
  place-items: center;
  align-content: center;
  color: rgba(174, 160, 138, 0.3);
  text-align: center;
}

.record-empty__mark {
  color: rgba(174, 130, 68, 0.45);
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 0.7;
}

.record-empty p {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.dialog {
  width: min(520px, calc(100% - 32px));
  padding: 25px;
  border: 1px solid #273943;
  background: #0a151c;
  color: var(--text);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.dialog::backdrop {
  background: rgba(0, 4, 7, 0.76);
}

.dialog h2 {
  margin: 0 0 17px;
  font-size: 17px;
  font-weight: 500;
}

.dialog p {
  color: var(--muted);
  font-size: 12px;
}

.dialog textarea {
  padding: 13px;
}

.dialog__actions .danger-button {
  background: #3b2022;
  color: #e1c9c7;
}

@media (max-width: 1120px) {
  .home-view { grid-template-columns: minmax(480px, 1fr) 286px; }
  .home-core { padding-right: 38px; padding-left: 38px; }
  .cover-grid { grid-template-columns: repeat(3, minmax(82px, 118px)); max-width: 430px; margin-right: auto; margin-left: auto; }
}

@media (max-width: 859px) {
  .app-shell { grid-template-columns: 62px minmax(0, 1fr); }
  .home-view { display: block; }
  .right-rail { display: none; }
  .home-core { padding-right: clamp(22px, 6vw, 48px); padding-left: clamp(22px, 6vw, 48px); }
  .nav-item { width: 44px; }
  .records-wrap { width: min(100% - 40px, 720px); padding-top: 45px; }
}

@media (max-width: 760px) {
  .voice-exhibit { min-height: 100svh; padding: 34px 0; }
  .voice-stage { width: 100%; min-height: min(88svh, 760px); background-position: 58% center; }
  .voice-stage__copy { width: calc(100% - 48px); margin: 0 auto; }
  .voice-stage h1 { max-width: 390px; margin-bottom: 32px; font-size: clamp(2.25rem, 11vw, 3.5rem); }
  .voice-quotes li { grid-template-columns: 26px minmax(0, 1fr); padding: 18px 0; }
  .voice-quotes p { font-size: 0.9rem; line-height: 1.75; }
  .desire-exhibit { padding: 96px 0 120px; }
  .desire-shell { width: 100%; }
  .desire-heading { min-height: 150px; padding: 0 24px; }
  .desire-heading h2 { max-width: 9em; font-size: clamp(2.55rem, 12vw, 4.2rem); line-height: 1.12; }
  .desire-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
  .desire-frame { border-radius: 13px; }
  .desire-frame--air { grid-column: 1 / -1; aspect-ratio: 1.45 / 1; --desire-position: 62% center; }
  .desire-frame--rolls { grid-column: 1 / -1; height: auto; aspect-ratio: 1.35 / 1; --desire-position: 55% center; }
  .desire-frame--ferrari { grid-column: 2 / -1; height: auto; aspect-ratio: 1.25 / 1; --desire-position: 54% center; }
  .desire-frame--swiss { grid-column: 1 / span 5; aspect-ratio: 1.35 / 1; margin-top: 18px; --desire-position: 64% center; }
  .learning-exhibit { padding: 92px 20px 120px; }
  .learning-path { grid-template-columns: repeat(6, minmax(0, 1fr)); row-gap: 62px; }
  .learning-card { width: min(100%, 238px); }
  .learning-card:nth-child(odd) { grid-column: 1 / span 4; justify-self: start; }
  .learning-card:nth-child(even) { grid-column: 3 / span 4; justify-self: end; }
  .learning-card h3 { font-size: 1.32rem; }
  .learning-manifesto { margin-top: 130px; }
  .learning-manifesto p { font-size: clamp(1.8rem, 8vw, 2.65rem); }
  .thought-fragments { display: block; margin-top: 110px; }
  .thought-fragment { width: 88%; padding: 20px 17px; }
  .thought-fragment--right { width: 76%; margin: 48px 0 0 auto; }
  .thought-fragment li { grid-template-columns: 11px minmax(0, 1fr); gap: 4px; font-size: 0.64rem; }
  .archive-threshold { min-height: 72svh; padding-right: 16px; padding-left: 16px; }
  .archive-threshold__door { padding: 25px 10px 38px; }
  .archive-threshold__door:hover::after { right: 10px; left: 10px; }
  .archive-view { padding-right: 20px; padding-left: 20px; }
  .archive-doors button { grid-template-columns: 34px minmax(0, 1fr) 18px; padding: 24px 2px; }
  .archive-doors button:hover { padding-right: 7px; padding-left: 7px; }
  .archive-doors strong { line-height: 1.25; }
  .records-header { margin-top: 76px; }
  .record-composer { margin-top: 58px; }
}

@media (max-width: 560px) {
  .entry { padding: 12px 0; }
  .entry__frame { width: 100%; height: min(calc(100vh - 24px), 68vw, 420px); aspect-ratio: 1.45 / 1; }
  .entry__content { width: calc(100% - 48px); margin: 0 auto; transform: none; }
  .entry h1 { font-size: clamp(1.9rem, 10vw, 2.7rem); }
  .entry__actions { gap: 9px; margin-top: 24px; }
  .entry-button { min-width: 112px; padding-right: 16px; padding-left: 16px; }
  .entry__meta--brand { top: 22px; left: 20px; }
  .entry__meta--brand span { display: none; }
  .entry__meta--edition { right: 20px; bottom: 22px; }
  .app-shell { grid-template-columns: 54px minmax(0, 1fr); }
  .nav-item { width: 40px; }
  .nav-item small { display: none; }
  .home-core { padding-right: 19px; padding-left: 19px; }
  .cover-grid { grid-template-columns: repeat(3, minmax(58px, 96px)); gap: 10px; }
  .stage-copy { gap: 12px; }
  .records-wrap { width: calc(100% - 28px); }
  .record-actions { opacity: 0.72; }
  .archive-title { font-size: clamp(3.6rem, 20vw, 5.5rem); }
  .archive-prompt { font-size: 0.9rem; }
  .archive-view.is-choice-open .archive-title { font-size: 2.2rem; transform: translate(-50%, -148px); }
  .archive-view.is-choice-open .archive-prompt { font-size: 0.78rem; transform: translate(-50%, -165px); }
  .archive-doors { top: calc(50% - 8px); }
  .archive-doors strong { font-size: 1.15rem; }
  .archive-home { top: calc(50% + 225px); }
  .record-topbar { padding-top: 24px; }
  .records-header h1 { font-size: clamp(2.75rem, 14vw, 4.6rem); }
  .record-composer textarea { min-height: 145px; padding-top: 22px; font-size: 15px; }
}

@media (max-height: 650px) {
  .archive-view.is-choice-open .archive-title { transform: translate(-50%, -126px); }
  .archive-view.is-choice-open .archive-prompt { transform: translate(-50%, -142px); }
  .archive-doors { top: calc(50% - 6px); }
  .archive-doors button { padding-top: 17px; padding-bottom: 17px; }
  .archive-home { top: calc(50% + 180px); }
}

@media (max-height: 720px) and (min-width: 860px) {
  .home-core { padding-top: 22px; padding-bottom: 18px; }
  .wishes { padding-top: 12px; padding-bottom: 9px; }
  .cover-grid { margin-top: 13px; }
  .cover-item, .cover-add { max-width: 102px; }
  .journey { padding-top: 11px; }
  .journey h2 strong { font-size: 44px; }
  .right-rail { padding-top: 21px; padding-bottom: 19px; }
  .plan-panel { padding: 10px 0; }
  .plan-list { margin-top: 9px; margin-bottom: 5px; }
  .calendar-weekdays { margin-top: 9px; }
  .calendar-grid { row-gap: 1px; }
  .calendar-day { width: 21px; height: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .cover-item { animation: none; }
  .entry-button { transition: none; }
  .entry__image,
  .entry h1,
  .entry__actions,
  .entry__meta,
  .voice-stage,
  .voice-stage h1,
  .voice-quotes li { animation: none; }
  .desire-frame,
  .learning-card { transition: none; }
}
