@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=IBM+Plex+Mono:wght@500;600;700&family=Noto+Sans+KR:wght@400;500;600;700;800;900&display=swap");

@font-face { font-family: "Miun Display"; src: url("/fonts/HeirofLightRegular.ttf") format("truetype"); font-display: swap; font-style: normal; font-weight: 400; }
@font-face { font-family: "Miun Display"; src: url("/fonts/HeirofLightBold.ttf") format("truetype"); font-display: swap; font-style: normal; font-weight: 700; }

:root {
  --ink: #07090c;
  --soft-ink: #11151b;
  --paper: #f2f0ea;
  --muted: #a9adb4;
  --line: rgba(242, 240, 234, .2);
  --humanity: #d40718;
  --accent: #7ee2ff;
  --secondary: #7d69ff;
  --mist: #dfeaec;
  --violet-ink: #403b70;
  --display: "Archivo Black", "Arial Black", "Noto Sans KR", sans-serif;
  --body: "Noto Sans KR", "Malgun Gothic", sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

body[data-work="yehun"] { --accent: #ffb45c; --secondary: #a77eff; }
body[data-work="fishman"] { --accent: #63cfff; --secondary: #ff6945; }

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; }
body { margin: 0; color: var(--paper); background: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
canvas { display: block; }
::selection { color: var(--ink); background: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }

.page-progress { position: fixed; z-index: 80; top: 0; right: 0; left: 0; height: 3px; transform-origin: left; background: var(--accent); transform: scaleX(0); }
.site-header { position: absolute; z-index: 20; top: 0; right: 0; left: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 70px; padding: 0 24px; border-bottom: 1px solid var(--line); font: 700 10px/1 var(--mono); letter-spacing: .09em; }
.site-header .mark { color: var(--accent); font: 400 25px/1 var(--display); letter-spacing: -.08em; }
.site-header p { margin: 0; }
.site-header nav { display: flex; justify-content: flex-end; gap: 22px; }
.site-header a:not(.mark) { position: relative; padding: 10px 0; }
.site-header a:not(.mark)::after { position: absolute; right: 0; bottom: 4px; left: 0; height: 1px; background: currentColor; content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-header a:hover::after { transform: scaleX(1); transform-origin: left; }

.hero { position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; }
.hero-canvas { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; background: var(--soft-ink); }
.hero::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(7,9,12,.18), transparent 56%, rgba(7,9,12,.72)); content: ""; }
.hero::after { position: absolute; z-index: 1; right: 24px; bottom: 24px; left: 24px; height: 1px; background: var(--line); content: ""; }
.hero-title { position: absolute; z-index: 2; top: 49%; left: 1.4vw; margin: 0; color: var(--paper); font: 400 clamp(88px, 19vw, 292px)/.72 var(--display); letter-spacing: -.085em; text-transform: uppercase; transform: translateY(-50%); }
body[data-work="fishman"] .hero-title { font-size: clamp(72px, 14.4vw, 220px); letter-spacing: -.09em; }
.hero-title span { display: block; color: transparent; -webkit-text-stroke: 1.5px var(--paper); }
.hero-side { position: absolute; z-index: 3; top: 112px; right: 24px; display: flex; flex-direction: column; width: min(350px, calc(100vw - 48px)); min-height: calc(100% - 166px); }
.hero-side .eyebrow { color: var(--accent); }
.hero-side-copy { margin-top: auto; padding: 22px 0 24px; border-top: 1px solid var(--paper); }
.hero-side-copy p { margin: 0 0 28px; font-size: clamp(15px, 1.22vw, 19px); font-weight: 650; line-height: 1.75; letter-spacing: -.025em; word-break: keep-all; }
.hero-side-copy dl { display: grid; grid-template-columns: 86px 1fr; gap: 10px 18px; margin: 0; font: 600 10px/1.45 var(--mono); letter-spacing: .04em; }
.hero-side-copy dt { color: var(--muted); }
.hero-side-copy dd { margin: 0; }
.interaction-note { position: absolute; z-index: 3; bottom: 44px; left: 24px; display: flex; align-items: center; gap: 11px; color: var(--muted); font: 600 9px/1 var(--mono); letter-spacing: .1em; }
.interaction-note i { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 18px var(--accent); animation: work-pulse 1.6s ease-in-out infinite; }
@keyframes work-pulse { 50% { opacity: .35; transform: scale(.65); } }

.eyebrow { margin: 0; font: 700 10px/1.3 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.section-label { display: flex; justify-content: space-between; padding: 11px 0; border-top: 1px solid currentColor; font: 700 9px/1 var(--mono); letter-spacing: .1em; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

.statement { display: grid; grid-template-columns: minmax(190px, .55fr) minmax(0, 1.45fr); gap: 7vw; padding: clamp(100px, 12vw, 180px) 24px; color: var(--ink); background: var(--paper); }
.statement .section-label { grid-column: 1 / -1; }
.statement .eyebrow { color: var(--humanity); }
.statement h2 { max-width: 980px; margin: 0; font-size: clamp(42px, 6.8vw, 104px); font-weight: 850; line-height: 1.08; letter-spacing: -.065em; word-break: keep-all; }
.statement h2 em { color: var(--humanity); font-style: normal; }
.statement-copy { grid-column: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); margin-top: 70px; }
.statement-copy p { margin: 0; font-size: clamp(15px, 1.25vw, 19px); line-height: 1.9; letter-spacing: -.025em; word-break: keep-all; }
.statement-copy p:first-child { font-weight: 750; }

.climate { padding: 24px 24px clamp(110px, 12vw, 190px); overflow: hidden; background: radial-gradient(circle at 82% 18%, rgba(125,105,255,.18), transparent 30%), linear-gradient(180deg, #0d1019, var(--ink)); }
.climate-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 7vw; align-items: start; padding: clamp(90px, 10vw, 145px) 0 clamp(55px, 7vw, 105px); }
.climate-heading > .eyebrow { color: var(--accent); }
.climate-heading h2 { max-width: 960px; margin: 0; font-size: clamp(44px, 6.8vw, 104px); font-weight: 850; line-height: 1.02; letter-spacing: -.065em; word-break: keep-all; }
.climate-heading div > p { max-width: 48ch; margin: 36px 0 0; color: var(--muted); font-size: clamp(14px, 1.1vw, 17px); line-height: 1.75; word-break: keep-all; }
.climate-index { border-top: 1px solid var(--paper); }
.climate-card { --weather: var(--accent); position: relative; display: grid; grid-template-columns: 80px minmax(220px, .7fr) 1.3fr; gap: 3vw; align-items: center; min-height: 190px; padding: 28px 16px; overflow: hidden; border-bottom: 1px solid var(--line); isolation: isolate; transition: color .3s ease, background .3s ease; }
.climate-card::before { position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; width: 4px; background: var(--weather); content: ""; transform: scaleY(.12); transform-origin: bottom; transition: transform .35s cubic-bezier(.16,1,.3,1), width .35s cubic-bezier(.16,1,.3,1), opacity .35s; }
.climate-card:hover { color: var(--ink); background: color-mix(in srgb, var(--weather) 72%, var(--paper)); }
.climate-card:hover::before { width: 100%; opacity: .16; transform: scaleY(1); }
.climate-card[data-climate="sadness"] { --weather: #7c9fbe; }
.climate-card[data-climate="anger"] { --weather: #ff6b4a; }
.climate-card[data-climate="hatred"] { --weather: #9b7cff; }
.climate-card[data-climate="fear"] { --weather: #b8bdc9; }
.climate-code { color: var(--weather); font: 700 9px/1.2 var(--mono); letter-spacing: .1em; }
.climate-card:hover .climate-code { color: var(--ink); }
.climate-card h3 { margin: 0; font-size: clamp(30px, 3.2vw, 50px); line-height: 1.02; letter-spacing: -.055em; }
.climate-card h3 small { display: block; margin-bottom: 11px; color: var(--weather); font: 700 10px/1 var(--mono); letter-spacing: .12em; }
.climate-card:hover h3 small { color: var(--ink); }
.climate-card dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 24px; margin: 0; }
.climate-card dl div { min-height: 76px; padding-top: 12px; border-top: 1px solid var(--line); }
.climate-card:hover dl div { border-color: rgba(7,9,12,.25); }
.climate-card dt { margin-bottom: 11px; color: var(--weather); font: 700 9px/1 var(--mono); letter-spacing: .1em; }
.climate-card:hover dt { color: var(--ink); }
.climate-card dd { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; line-height: 1.55; word-break: keep-all; }
.climate-card:hover dd { color: rgba(7,9,12,.76); }

.sequence { padding: 24px 24px clamp(110px, 12vw, 190px); background: var(--ink); }
.sequence-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 7vw; align-items: end; padding: clamp(90px, 10vw, 145px) 0 clamp(55px, 6vw, 90px); }
.sequence-heading .eyebrow { color: var(--accent); }
.sequence-heading h2 { max-width: 850px; margin: 0; font-size: clamp(42px, 6.6vw, 100px); font-weight: 850; line-height: 1.02; letter-spacing: -.065em; }
.sequence-list { border-top: 1px solid var(--paper); }
.sequence-list article { display: grid; grid-template-columns: 80px minmax(190px, .75fr) 1.25fr; gap: 4vw; align-items: center; min-height: 165px; padding: 30px 16px; border-bottom: 1px solid var(--line); transition: color .25s, background .25s; }
.sequence-list article:hover { color: var(--ink); background: var(--accent); }
.sequence-list b { color: var(--accent); font: 700 12px/1 var(--mono); }
.sequence-list article:hover b { color: var(--ink); }
.sequence-list h3 { margin: 0; font-size: clamp(25px, 2.4vw, 38px); line-height: 1.1; letter-spacing: -.04em; }
.sequence-list p { max-width: 60ch; margin: 0; color: var(--muted); font-size: clamp(14px, 1.1vw, 17px); line-height: 1.75; letter-spacing: -.02em; word-break: keep-all; }
.sequence-list article:hover p { color: rgba(7,9,12,.72); }

.senses { padding: clamp(100px, 11vw, 170px) 24px; color: var(--ink); background: var(--mist); }
.senses-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 7vw; align-items: end; margin: clamp(75px, 8vw, 120px) 0 60px; }
.senses-heading .eyebrow { color: var(--violet-ink); }
.senses-heading h2 { max-width: 920px; margin: 0; font-size: clamp(44px, 6.8vw, 104px); font-weight: 850; line-height: 1.02; letter-spacing: -.065em; word-break: keep-all; }
.sense-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.sense-grid article { display: flex; flex-direction: column; min-height: 510px; padding: 18px; border-right: 1px solid var(--ink); }
.sense-grid article:last-child { border-right: 0; }
.sense-grid article > span, .sense-grid article > small { font: 700 9px/1.3 var(--mono); letter-spacing: .09em; }
.sense-grid article > strong { margin: auto 0 28px; color: transparent; font: 900 clamp(64px, 8vw, 122px)/.8 var(--body); letter-spacing: -.08em; -webkit-text-stroke: 1.5px var(--violet-ink); }
.sense-grid article h3 { margin: 0 0 14px; font-size: clamp(23px, 2.2vw, 34px); letter-spacing: -.04em; }
.sense-grid article p { min-height: 8em; margin: 0 0 28px; padding-top: 18px; border-top: 1px solid var(--ink); font-size: 14px; line-height: 1.8; word-break: keep-all; }
.sense-grid article > small { margin-top: auto; color: var(--violet-ink); }
.system-block { display: grid; grid-template-columns: minmax(240px, .45fr) minmax(0, 1.55fr); gap: 5vw; margin-top: 1px; padding: clamp(46px, 5vw, 74px); color: var(--paper); background: var(--ink); }
.system-block header h3 { margin: 20px 0 22px; font-size: clamp(31px, 3.8vw, 56px); line-height: 1; letter-spacing: -.05em; }
.system-block header > p:last-child { max-width: 42ch; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; word-break: keep-all; }
.system-block .eyebrow { color: var(--accent); }
.system-map { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-self: end; margin: 0; padding: 0; border-top: 1px solid var(--paper); border-bottom: 1px solid var(--paper); list-style: none; }
.system-map li { position: relative; display: flex; flex-direction: column; min-height: 180px; padding: 16px 12px; border-left: 1px solid var(--line); }
.system-map li:first-child { border-left: 0; }
.system-map li:not(:last-child)::after { position: absolute; z-index: 1; top: 50%; right: -8px; color: var(--accent); font: 700 14px/1 var(--mono); content: "→"; transform: translateY(-50%); }
.system-map span, .system-map small { color: var(--muted); font: 700 8px/1.35 var(--mono); letter-spacing: .08em; }
.system-map strong { margin: auto 0 8px; font: 700 clamp(12px, 1.1vw, 17px)/1.1 var(--mono); word-break: break-word; }
.system-map small { color: var(--accent); }

.archive { padding: clamp(100px, 11vw, 170px) 24px; color: var(--ink); background: var(--paper); }
.archive-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin: clamp(70px, 8vw, 120px) 0 52px; }
.archive-heading h2 { margin: 0; font: 400 clamp(64px, 10vw, 150px)/.78 var(--display); letter-spacing: -.075em; }
.archive-heading p { max-width: 35ch; margin: 0; font-size: 14px; line-height: 1.75; word-break: keep-all; }
.archive-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 1px; background: var(--ink); border: 1px solid var(--ink); }
.archive-slot { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: min(48vw, 650px); margin: 0; padding: 20px; overflow: hidden; background: #d9d7d1; }
.archive-slot:last-child { background: #c5c3bd; }
.archive-slot::before { position: absolute; top: 50%; left: 50%; width: 42%; aspect-ratio: 1; border: 1px solid rgba(7,9,12,.25); border-radius: 50%; content: ""; transform: translate(-50%,-50%); }
.archive-slot::after { position: absolute; top: 50%; left: 50%; width: 1px; height: 130%; background: rgba(7,9,12,.2); content: ""; transform: translate(-50%,-50%) rotate(35deg); }
.archive-slot span, .archive-slot small { position: relative; z-index: 1; font: 700 9px/1.3 var(--mono); letter-spacing: .1em; }
.archive-slot small { align-self: flex-end; max-width: 22ch; text-align: right; }
.archive-slot strong { position: relative; z-index: 1; align-self: center; margin: auto 0; color: rgba(7,9,12,.42); font: 400 clamp(32px, 4vw, 58px)/1 var(--display); letter-spacing: -.055em; text-align: center; }
.space-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: 1px; color: var(--paper); background: var(--ink); border: 1px solid var(--ink); }
.space-panel { position: relative; display: flex; flex-direction: column; min-height: min(48vw, 650px); padding: 20px; overflow: hidden; background: linear-gradient(145deg, #202632, #0c1117 70%); isolation: isolate; }
.space-panel--wide { background: radial-gradient(circle at 70% 40%, rgba(126,226,255,.2), transparent 28%), linear-gradient(145deg, #192335, #0a0d12 72%); }
.space-panel::before, .space-panel::after { position: absolute; z-index: -1; top: 50%; left: 50%; border: 1px solid rgba(126,226,255,.28); border-radius: 50%; content: ""; transform: translate(-50%,-50%); }
.space-panel::before { width: 42%; aspect-ratio: 1; }
.space-panel::after { width: 75%; aspect-ratio: 1; border-color: rgba(125,105,255,.2); }
.space-panel > span, .space-panel > small { font: 700 9px/1.3 var(--mono); letter-spacing: .1em; }
.space-panel h3 { max-width: 11ch; margin: auto 0 28px; font-size: clamp(34px, 4.7vw, 72px); line-height: .96; letter-spacing: -.06em; word-break: keep-all; }
.space-panel p { max-width: 44ch; margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 1.8; word-break: keep-all; }
.space-panel > small { color: var(--accent); }
.project-notes { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7vw; margin-top: clamp(90px, 9vw, 130px); padding-top: 20px; border-top: 1px solid var(--ink); }
.project-notes .eyebrow { color: var(--humanity); }
.project-notes h3 { max-width: 13ch; margin: 24px 0 0; font-size: clamp(32px, 4.2vw, 62px); line-height: 1.04; letter-spacing: -.055em; word-break: keep-all; }
.project-notes dl { margin: 0; }
.project-notes dl div { display: grid; grid-template-columns: minmax(110px, .55fr) 1.45fr; gap: 32px; padding: 19px 0; border-bottom: 1px solid rgba(7,9,12,.25); }
.project-notes dt { font-size: 15px; font-weight: 800; }
.project-notes dd { margin: 0; font: 600 11px/1.5 var(--mono); letter-spacing: .02em; }
.reference-links { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(80px, 8vw, 120px); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.reference-links a { display: grid; grid-template-columns: 1fr auto; gap: 14px; min-height: 135px; padding: 18px; border-right: 1px solid var(--ink); transition: color .25s, background .25s; }
.reference-links a:last-child { border-right: 0; }
.reference-links a:hover { color: var(--paper); background: var(--violet-ink); }
.reference-links span { grid-column: 1 / -1; font: 700 9px/1 var(--mono); letter-spacing: .1em; }
.reference-links b { align-self: end; font-size: 15px; }
.reference-links i { align-self: end; color: var(--humanity); font-style: normal; }
.reference-links a:hover i { color: var(--accent); }

.next { position: relative; display: grid; grid-template-columns: .6fr 1.4fr; gap: 7vw; min-height: 620px; padding: 24px; overflow: hidden; color: var(--paper); background: var(--humanity); }
.next .section-label { grid-column: 1 / -1; align-self: start; }
.next-copy { grid-column: 2; align-self: center; padding: 80px 0; }
.next-copy .eyebrow { margin-bottom: 28px; color: var(--ink); }
.next-copy h2 { max-width: 900px; margin: 0; font-size: clamp(50px, 8vw, 122px); font-weight: 900; line-height: .98; letter-spacing: -.07em; }
.next-copy p { max-width: 45ch; margin: 42px 0 0; font-size: clamp(15px, 1.3vw, 19px); font-weight: 600; line-height: 1.75; word-break: keep-all; }
.next-copy a { display: flex; justify-content: space-between; gap: 24px; max-width: 560px; margin-top: 58px; padding: 18px 0; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; }
.next-copy a span:last-child { color: var(--ink); }

.site-footer { display: grid; grid-template-columns: 1fr auto; align-items: end; min-height: 210px; padding: 24px; color: var(--ink); background: var(--paper); border-top: 1px solid var(--ink); font: 700 9px/1 var(--mono); letter-spacing: .1em; }
.site-footer strong { color: var(--humanity); font: 400 clamp(44px, 7vw, 96px)/.8 var(--display); letter-spacing: -.065em; }

@media (max-width: 840px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header > p { display: none; }
  .hero-title { top: 43%; font-size: 24vw; }
  body[data-work="fishman"] .hero-title { font-size: 18vw; }
  .hero-side { top: auto; right: 24px; bottom: 42px; left: 24px; width: auto; min-height: 0; }
  .hero-side > .eyebrow { position: absolute; bottom: calc(100% + 24px); left: 0; }
  .hero-side-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero-side-copy p { margin: 0; }
  .interaction-note { display: none; }
  .statement, .climate-heading, .sequence-heading, .senses-heading, .next { grid-template-columns: 1fr; }
  .statement .eyebrow, .statement h2, .statement-copy, .next-copy { grid-column: 1; }
  .statement .eyebrow { margin-top: 36px; }
  .statement h2 { margin-top: 32px; }
  .statement-copy { grid-template-columns: 1fr; margin-top: 56px; }
  .climate-heading > .eyebrow, .senses-heading > .eyebrow { margin-bottom: 24px; }
  .climate-card { grid-template-columns: 62px 1fr; }
  .climate-card dl { grid-column: 2; }
  .sequence-heading .eyebrow { margin-bottom: 24px; }
  .sequence-list article { grid-template-columns: 60px 1fr; }
  .sequence-list article p { grid-column: 2; }
  .sense-grid { grid-template-columns: 1fr; }
  .sense-grid article { min-height: 390px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .sense-grid article:last-child { border-bottom: 0; }
  .sense-grid article > strong { margin-top: 80px; font-size: 100px; }
  .sense-grid article p { min-height: 0; }
  .system-block { grid-template-columns: 1fr; }
  .system-map { margin-top: 24px; }
  .archive-grid { grid-template-columns: 1fr; }
  .archive-slot { min-height: 75vw; }
  .space-grid { grid-template-columns: 1fr; }
  .space-panel { min-height: 72vw; }
  .project-notes { grid-template-columns: 1fr; }
  .project-notes h3 { max-width: 15ch; margin-bottom: 42px; }
  .next-copy { align-self: end; }
}

@media (max-width: 560px) {
  .site-header { min-height: 62px; padding: 0 16px; }
  .site-header nav { gap: 14px; }
  .site-header nav a:first-child { display: none; }
  .hero::after { right: 16px; bottom: 16px; left: 16px; }
  .hero-title { left: 1vw; }
  .hero-side { right: 16px; bottom: 26px; left: 16px; }
  .hero-side-copy { display: block; padding-bottom: 10px; }
  .hero-side-copy p { margin-bottom: 20px; font-size: 14px; }
  .hero-side-copy dl { grid-template-columns: 76px 1fr; font-size: 9px; }
  .statement, .climate, .sequence, .senses, .archive, .next { padding-right: 16px; padding-left: 16px; }
  .statement { padding-top: 100px; padding-bottom: 100px; }
  .statement-copy { gap: 26px; }
  .climate-card { grid-template-columns: 1fr; gap: 22px; padding: 30px 4px; }
  .climate-card dl { grid-column: 1; grid-template-columns: 1fr; gap: 0; }
  .climate-card dl div { min-height: 0; padding: 13px 0; }
  .sequence-list article { grid-template-columns: 42px 1fr; gap: 16px; padding: 26px 4px; }
  .sense-grid article { min-height: 430px; padding: 16px; }
  .sense-grid article > strong { margin-top: 70px; font-size: 80px; }
  .system-block { padding: 38px 18px; }
  .system-map { grid-template-columns: 1fr; }
  .system-map li { min-height: 105px; border-bottom: 1px solid var(--line); border-left: 0; }
  .system-map li:last-child { border-bottom: 0; }
  .system-map li:not(:last-child)::after { top: auto; right: 12px; bottom: -9px; content: "↓"; transform: none; }
  .system-map strong { font-size: 16px; }
  .archive-heading { display: block; }
  .archive-heading p { margin-top: 32px; }
  .archive-slot { min-height: 105vw; }
  .space-panel { min-height: 118vw; padding: 16px; }
  .project-notes dl div { grid-template-columns: 1fr; gap: 8px; }
  .reference-links { grid-template-columns: 1fr; }
  .reference-links a { border-right: 0; border-bottom: 1px solid var(--ink); }
  .reference-links a:last-child { border-bottom: 0; }
  .next { min-height: 650px; }
  .site-footer { min-height: 175px; padding: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* MIUN — production interpretation of the forest / postbox exhibition concept */
body[data-work="miun"] {
  --ink: #07110c;
  --soft-ink: #0c1c14;
  --paper: #f5e8c3;
  --muted: #aeb8aa;
  --line: rgba(245,232,195,.2);
  --accent: #d8bd7a;
  --secondary: #bb4029;
  --mist: #dce4d7;
  --violet-ink: #543027;
  --forest: #07110c;
  --moss: #173d29;
  --cream: #f5e8c3;
  --clay: #bb4029;
  --gold: #d8bd7a;
  --miun-display: "Miun Display", "Noto Sans KR", serif;
  background: var(--forest);
}

body[data-work="miun"] .page-progress { height: 2px; background: var(--gold); }
body[data-work="miun"] .site-header { color: var(--cream); border-color: rgba(245,232,195,.2); }
body[data-work="miun"] .site-header .mark { color: var(--gold); font-family: var(--miun-display); }
body[data-work="miun"] .hero { min-height: max(760px, 100svh); background: var(--forest); }
body[data-work="miun"] .hero::before { z-index: 0; background: radial-gradient(circle at 50% 38%, rgba(53,102,70,.24), transparent 25%), linear-gradient(180deg, rgba(3,8,5,.06), rgba(3,8,5,.18) 58%, rgba(3,8,5,.82)); }
body[data-work="miun"] .hero::after { right: 24px; bottom: 24px; left: 24px; background: rgba(245,232,195,.22); }
body[data-work="miun"] .hero-canvas { z-index: -1; background: var(--forest); }
.hero-title-group { position: absolute; z-index: 2; top: clamp(96px, 13vh, 132px); left: 50%; width: min(700px, calc(100% - 48px)); text-align: center; transform: translateX(-50%); }
.hero-overline { margin: 0 0 16px; color: var(--gold); font: 700 9px/1 var(--mono); letter-spacing: .34em; }
body[data-work="miun"] .hero-title { position: static; display: flex; flex-direction: column; align-items: center; margin: 0; color: var(--cream); font-family: var(--miun-display); font-size: initial; font-weight: 700; line-height: 1; letter-spacing: 0; text-transform: none; transform: none; }
body[data-work="miun"] .hero-title span { display: block; color: var(--cream); -webkit-text-stroke: 0; }
body[data-work="miun"] .hero-title .hero-ko { margin-bottom: 4px; color: rgba(245,232,195,.7); font: 400 16px/1 var(--body); letter-spacing: .7em; transform: translateX(.35em); }
body[data-work="miun"] .hero-title .hero-hanja { font-family: Batang, "Times New Roman", serif; font-size: clamp(72px, 8.5vw, 128px); font-weight: 700; line-height: .86; letter-spacing: .12em; text-shadow: 0 0 45px rgba(216,189,122,.14); transform: translateX(.06em); }
.hero-subtitle { margin: 20px 0 0; color: rgba(245,232,195,.66); font-family: var(--body); font-size: clamp(13px, 1.1vw, 16px); line-height: 1.65; letter-spacing: .05em; word-break: keep-all; }
.mailbox-stage { --mailbox-x: 0px; --mailbox-y: 0px; position: absolute; z-index: 3; top: 62%; left: 50%; width: clamp(225px, 22vw, 310px); pointer-events: none; text-align: center; transform: translate(calc(-50% + var(--mailbox-x)), calc(-43% + var(--mailbox-y))); transition: transform .65s cubic-bezier(.16,1,.3,1); }
.mailbox-stage::before { position: absolute; z-index: -1; top: 16%; left: 50%; width: 1px; height: 62%; background: linear-gradient(transparent, rgba(216,189,122,.48), transparent); box-shadow: 0 0 50px 18px rgba(216,189,122,.05); content: ""; transform: translateX(-50%); }
.mailbox-stage svg { width: 100%; overflow: visible; filter: drop-shadow(0 28px 32px rgba(0,0,0,.45)); }
.mailbox-stage .mailbox-object { transform-origin: 160px 510px; animation: mailbox-breathe 5.5s ease-in-out infinite; }
.mailbox-stage > span { display: block; margin-top: -20px; color: rgba(245,232,195,.54); font: 700 8px/1 var(--mono); letter-spacing: .24em; }
@keyframes mailbox-breathe { 50% { transform: translateY(-5px) rotate(.35deg); } }
body[data-work="miun"] .hero-side { top: auto; right: 24px; bottom: 44px; width: min(350px, calc(100vw - 48px)); min-height: 0; padding: 16px; border: 1px solid rgba(245,232,195,.23); background: rgba(5,13,9,.58); backdrop-filter: blur(12px); }
body[data-work="miun"] .hero-side > .eyebrow { color: var(--gold); }
body[data-work="miun"] .hero-side-copy { margin-top: 14px; padding: 16px 0 0; border-color: rgba(245,232,195,.52); }
body[data-work="miun"] .hero-side-copy p { margin-bottom: 20px; font-size: 13px; font-weight: 500; line-height: 1.7; }
body[data-work="miun"] .hero-side-copy dl { grid-template-columns: 76px 1fr; gap: 7px 14px; font-size: 8px; }
.hero-letter-link { display: flex; justify-content: space-between; margin-top: 17px; padding: 12px 0 2px; border-top: 1px solid rgba(245,232,195,.3); color: var(--cream); font-size: 11px; font-weight: 700; }
.hero-letter-link span:last-child { color: var(--gold); }
body[data-work="miun"] .interaction-note { color: rgba(245,232,195,.5); }
body[data-work="miun"] .interaction-note i { background: var(--gold); box-shadow: 0 0 18px var(--gold); }

.team-chapter { padding: clamp(100px, 12vw, 180px) 24px; overflow: hidden; color: var(--cream); background: radial-gradient(circle at 50% -10%, rgba(53,102,70,.48), transparent 42%), linear-gradient(180deg, #07110c, #0c1c14 55%, #07110c); }
.chapter-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 7vw; align-items: start; margin: clamp(74px, 8vw, 118px) 0 58px; }
.chapter-heading > .eyebrow { color: var(--gold); }
.chapter-heading h2 { max-width: 960px; margin: 0; font: 700 clamp(44px, 6.8vw, 104px)/1.03 var(--miun-display); letter-spacing: -.035em; word-break: keep-all; }
.chapter-heading > p:last-child { grid-column: 2; max-width: 50ch; margin: -22px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; word-break: keep-all; }
.chapter-heading--center { display: block; text-align: center; }
.chapter-heading--center > .eyebrow { margin-bottom: 26px; }
.chapter-heading--center h2 { margin-right: auto; margin-left: auto; font-size: clamp(42px, 6vw, 86px); }
.team-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; max-width: 1180px; margin: 0 auto; }
.team-card { position: relative; grid-column: span 2; display: flex; flex-direction: column; min-height: 390px; padding: 26px; overflow: hidden; color: var(--forest); background: linear-gradient(150deg, #f7edcf, #dfcf9f); border: 1px solid rgba(216,189,122,.42); }
.team-card:nth-child(4) { grid-column: 2 / 4; }
.team-card:nth-child(5) { grid-column: 4 / 6; }
.team-card::after { position: absolute; right: -20px; bottom: -45px; color: rgba(187,64,41,.1); font: 700 190px/.8 var(--miun-display); content: attr(data-glyph); }
.team-card > span, .team-card > small { position: relative; z-index: 1; font: 700 8px/1.4 var(--mono); letter-spacing: .1em; }
.team-card > span { color: var(--clay); }
.team-card h3 { position: relative; z-index: 1; margin: auto 0 20px; font: 700 clamp(34px, 3.2vw, 50px)/1 var(--miun-display); }
.team-card p { position: relative; z-index: 1; min-height: 7.2em; margin: 0 0 28px; padding-top: 16px; border-top: 1px solid rgba(7,17,12,.32); font-size: 13px; line-height: 1.8; word-break: keep-all; }
.team-card > small { color: #67463a; }

body[data-work="miun"] .section-label { border-color: currentColor; }
body[data-work="miun"] .statement { color: var(--forest); background: var(--cream); }
body[data-work="miun"] .statement .eyebrow { color: var(--clay); }
body[data-work="miun"] .statement h2 { font-family: var(--miun-display); font-weight: 700; letter-spacing: -.035em; }
body[data-work="miun"] .statement h2 em { color: var(--clay); }
body[data-work="miun"] .statement-copy p:first-child { font-weight: 700; }
.concept-threads { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: clamp(70px, 8vw, 120px); border-top: 1px solid var(--forest); border-bottom: 1px solid var(--forest); }
.concept-threads article { min-height: 250px; padding: 18px; border-right: 1px solid rgba(7,17,12,.28); }
.concept-threads article:last-child { border-right: 0; }
.concept-threads span { color: var(--clay); font: 700 9px/1 var(--mono); }
.concept-threads h3 { margin: 72px 0 18px; font: 700 clamp(21px, 2vw, 29px)/1.1 var(--miun-display); }
.concept-threads p { margin: 0; color: #4b544d; font-size: 12px; line-height: 1.75; word-break: keep-all; }

.worldview { padding: clamp(100px, 11vw, 170px) 24px; color: var(--cream); background: radial-gradient(circle at 50% 42%, rgba(42,92,59,.3), transparent 32%), var(--forest); }
.worldview .chapter-heading { margin-bottom: clamp(70px, 8vw, 110px); }
.worldview-route { display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid var(--cream); border-bottom: 1px solid var(--cream); }
.worldview-route article { position: relative; min-height: 340px; padding: 18px 14px; border-right: 1px solid var(--line); }
.worldview-route article:last-child { border-right: 0; }
.worldview-route article:not(:last-child)::after { position: absolute; z-index: 2; top: 50%; right: -9px; display: grid; width: 18px; height: 18px; place-items: center; color: var(--forest); background: var(--gold); border-radius: 50%; font: 700 10px/1 var(--mono); content: "→"; }
.worldview-route b { color: var(--gold); font: 700 10px/1 var(--mono); }
.worldview-route span { display: block; margin-top: 8px; color: var(--muted); font: 700 8px/1 var(--mono); letter-spacing: .08em; }
.worldview-route h3 { margin: 130px 0 14px; font: 700 clamp(22px, 2vw, 31px)/1 var(--miun-display); }
.worldview-route p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; word-break: keep-all; }

body[data-work="miun"] .climate { position: relative; isolation: isolate; background: radial-gradient(circle at 80% 12%, rgba(43,90,59,.36), transparent 27%), linear-gradient(180deg, #0b1b12, var(--forest)); }
body[data-work="miun"] .climate::before { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(245,232,195,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(245,232,195,.025) 1px, transparent 1px); background-size: 80px 80px; content: ""; mask-image: linear-gradient(transparent, #000 20%, #000 80%, transparent); }
body[data-work="miun"] .climate-heading h2 { font-family: var(--miun-display); font-weight: 700; letter-spacing: -.035em; }
body[data-work="miun"] .climate-heading > .eyebrow { color: var(--gold); }
body[data-work="miun"] .climate-card { --weather: var(--gold); }
body[data-work="miun"] .climate-card[data-climate="sadness"] { --weather: #8fa7a2; }
body[data-work="miun"] .climate-card[data-climate="anger"] { --weather: #c95738; }
body[data-work="miun"] .climate-card[data-climate="hatred"] { --weather: #98748d; }
body[data-work="miun"] .climate-card[data-climate="fear"] { --weather: #bac2b7; }
body[data-work="miun"] .climate-card h3 { font-family: var(--miun-display); font-weight: 700; letter-spacing: -.025em; }
body[data-work="miun"] .climate-card:hover { background: color-mix(in srgb, var(--weather) 58%, var(--cream)); }

.letter-lab { padding: clamp(100px, 11vw, 170px) 24px; color: var(--forest); background: var(--mist); }
.letter-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 7vw; align-items: start; margin: clamp(74px, 8vw, 118px) 0 56px; }
.letter-heading > .eyebrow { color: var(--clay); }
.letter-heading h2 { max-width: 960px; margin: 0; font: 700 clamp(43px, 6.6vw, 98px)/1.05 var(--miun-display); letter-spacing: -.035em; word-break: keep-all; }
.letter-heading div > p { max-width: 52ch; margin: 30px 0 0; color: #4f5c53; font-size: 14px; line-height: 1.8; word-break: keep-all; }
.letter-console { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; border: 1px solid var(--forest); }
.letter-form { display: flex; flex-direction: column; padding: clamp(24px, 3vw, 44px); background: var(--cream); }
.letter-form label { display: flex; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(7,17,12,.38); font: 700 9px/1 var(--mono); letter-spacing: .1em; }
.letter-form textarea { width: 100%; min-height: 280px; margin: auto 0; padding: 34px 0; resize: none; color: var(--forest); background: transparent; border: 0; outline: 0; font: 400 clamp(22px, 2.4vw, 34px)/1.75 var(--miun-display); letter-spacing: .01em; word-break: keep-all; }
.letter-form textarea::placeholder { color: rgba(7,17,12,.35); }
.letter-form textarea:focus-visible { box-shadow: inset 0 -2px var(--clay); }
.letter-form-foot { display: flex; align-items: end; justify-content: space-between; gap: 28px; padding-top: 18px; border-top: 1px solid rgba(7,17,12,.38); }
.letter-form-foot small { max-width: 36ch; color: #687168; font-size: 10px; line-height: 1.55; }
.letter-form button { display: flex; justify-content: space-between; gap: 28px; min-width: 185px; padding: 15px 17px; cursor: pointer; color: var(--cream); background: var(--clay); border: 1px solid var(--clay); font-size: 12px; font-weight: 800; transition: color .25s, background .25s; }
.letter-form button:hover { color: var(--clay); background: transparent; }
.letter-forecast { --forecast: var(--gold); position: relative; display: flex; flex-direction: column; padding: clamp(24px, 3vw, 44px); overflow: hidden; color: var(--cream); background-color: var(--forest); background-image: radial-gradient(circle at 50% 35%, color-mix(in srgb, var(--forecast) 26%, transparent), transparent 31%); isolation: isolate; transition: background .6s; }
.letter-forecast[data-climate="sadness"] { --forecast: #8fa7a2; }
.letter-forecast[data-climate="anger"] { --forecast: #d05a3b; }
.letter-forecast[data-climate="hatred"] { --forecast: #9c7694; }
.letter-forecast[data-climate="fear"] { --forecast: #bfc7bd; }
.letter-forecast[data-climate="mixed"] { --forecast: #6b9b76; }
.forecast-field { position: relative; display: grid; width: min(330px, 75%); aspect-ratio: 1; place-items: center; margin: 0 auto auto; }
.forecast-field i { position: absolute; inset: 8%; border: 1px solid color-mix(in srgb, var(--forecast) 58%, transparent); border-radius: 48% 52% 43% 57% / 58% 42% 56% 44%; animation: forecast-orbit 12s linear infinite; }
.forecast-field i:nth-child(2) { inset: 21%; animation-direction: reverse; animation-duration: 8s; }
.forecast-field i:nth-child(3) { inset: 34%; animation-duration: 6s; }
.forecast-field span { color: var(--forecast); font: 700 clamp(48px, 6vw, 78px)/1 var(--miun-display); text-shadow: 0 0 34px color-mix(in srgb, var(--forecast) 38%, transparent); }
@keyframes forecast-orbit { to { transform: rotate(360deg); } }
.letter-forecast > .eyebrow { margin-top: 16px; color: var(--forecast); }
.letter-forecast h3 { margin: 15px 0 10px; font: 700 clamp(28px, 3.2vw, 48px)/1.08 var(--miun-display); letter-spacing: -.02em; }
.letter-forecast > p:not(.eyebrow) { max-width: 46ch; margin: 0; color: rgba(245,232,195,.65); font-size: 13px; line-height: 1.7; word-break: keep-all; }
.letter-forecast dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 34px 0 0; }
.letter-forecast dl div { padding-top: 12px; border-top: 1px solid rgba(245,232,195,.24); }
.letter-forecast dt { margin-bottom: 9px; color: var(--forecast); font: 700 8px/1 var(--mono); letter-spacing: .1em; }
.letter-forecast dd { margin: 0; font-size: 11px; line-height: 1.5; word-break: keep-all; }
.letter-forecast.is-reading .forecast-field { animation: forecast-pulse .7s ease both; }
@keyframes forecast-pulse { 40% { opacity: .3; transform: scale(.92); } }

body[data-work="miun"] .sequence { background: var(--forest); }
body[data-work="miun"] .sequence-heading h2 { font-family: var(--miun-display); font-weight: 700; letter-spacing: -.035em; }
body[data-work="miun"] .sequence-heading .eyebrow, body[data-work="miun"] .sequence-list b { color: var(--gold); }
body[data-work="miun"] .sequence-list article:hover { background: var(--gold); }
body[data-work="miun"] .sequence-list h3 { font-family: var(--miun-display); letter-spacing: -.015em; }

body[data-work="miun"] .senses { background: #dce4d7; }
body[data-work="miun"] .senses-heading h2 { font-family: var(--miun-display); font-weight: 700; letter-spacing: -.035em; }
body[data-work="miun"] .senses-heading .eyebrow { color: var(--clay); }
body[data-work="miun"] .sense-grid article > strong { font-family: var(--miun-display); -webkit-text-stroke-color: var(--clay); }
body[data-work="miun"] .sense-grid article > small { color: #664235; }
body[data-work="miun"] .system-block { background: var(--forest); }
body[data-work="miun"] .system-block header h3 { font-family: var(--miun-display); }
body[data-work="miun"] .system-block .eyebrow, body[data-work="miun"] .system-map small { color: var(--gold); }

.tech-effect { padding: clamp(100px, 11vw, 170px) 24px; color: var(--forest); background: var(--cream); }
.tech-effect .chapter-heading > .eyebrow { color: var(--clay); }
.tech-effect .chapter-heading > p:last-child { color: #59625a; }
.tech-nodes { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--forest); }
.tech-nodes article { display: flex; flex-direction: column; min-height: 410px; padding: 18px; border-right: 1px solid var(--forest); transition: color .25s, background .25s; }
.tech-nodes article:last-child { border-right: 0; }
.tech-nodes article:hover { color: var(--cream); background: var(--moss); }
.tech-nodes span, .tech-nodes small { font: 700 8px/1.4 var(--mono); letter-spacing: .08em; }
.tech-nodes span { color: var(--clay); }
.tech-nodes article:hover span { color: var(--gold); }
.tech-nodes h3 { margin: auto 0 24px; font: 700 clamp(25px, 2.2vw, 34px)/1 var(--miun-display); letter-spacing: -.015em; }
.tech-nodes p { min-height: 9em; margin: 0 0 28px; padding-top: 16px; border-top: 1px solid currentColor; font-size: 12px; line-height: 1.75; word-break: keep-all; }
.tech-nodes small { color: #6a4a3e; }
.tech-nodes article:hover small { color: var(--gold); }

.exhibition { padding: clamp(100px, 11vw, 170px) 24px; overflow: hidden; color: var(--cream); background: var(--clay); }
.exhibition-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: 7vw; align-items: start; margin: clamp(74px, 8vw, 118px) 0 70px; }
.exhibition-heading > .eyebrow { color: var(--forest); }
.exhibition-heading h2 { max-width: 1000px; margin: 0; font: 700 clamp(44px, 6.8vw, 102px)/1.02 var(--miun-display); letter-spacing: -.04em; word-break: keep-all; }
.exhibition-heading > p:not(.eyebrow) { grid-column: 2; max-width: 48ch; margin: 0; font-size: 14px; font-weight: 600; line-height: 1.8; word-break: keep-all; }
.exhibition-heading > a { grid-column: 2; display: flex; justify-content: space-between; max-width: 560px; padding: 17px 0; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; }
.exhibition-heading > a span:last-child { color: var(--forest); }
.exhibition-goals { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--cream); border-bottom: 1px solid var(--cream); }
.exhibition-goals article { min-height: 260px; padding: 18px; border-right: 1px solid rgba(245,232,195,.36); }
.exhibition-goals article:last-child { border-right: 0; }
.exhibition-goals b { color: var(--forest); font: 700 10px/1 var(--mono); }
.exhibition-goals h3 { margin: 75px 0 15px; font: 700 clamp(24px, 2.2vw, 34px)/1 var(--miun-display); }
.exhibition-goals p { max-width: 36ch; margin: 0; font-size: 12px; line-height: 1.75; word-break: keep-all; }

body[data-work="miun"] .archive { color: var(--forest); background: var(--cream); }
body[data-work="miun"] .archive-heading h2 { font-family: var(--miun-display); letter-spacing: -.025em; }
body[data-work="miun"] .space-panel { background: radial-gradient(circle at 50% 35%, rgba(52,104,70,.28), transparent 30%), linear-gradient(145deg, #142d1f, #06100b 72%); }
body[data-work="miun"] .space-panel--wide { background: radial-gradient(circle at 70% 40%, rgba(216,189,122,.16), transparent 28%), linear-gradient(145deg, #173d29, #06100b 72%); }
body[data-work="miun"] .space-panel::before { border-color: rgba(216,189,122,.28); }
body[data-work="miun"] .space-panel::after { border-color: rgba(85,133,96,.25); }
body[data-work="miun"] .space-panel h3, body[data-work="miun"] .project-notes h3 { font-family: var(--miun-display); letter-spacing: -.025em; }
body[data-work="miun"] .space-panel > small { color: var(--gold); }
body[data-work="miun"] .project-notes .eyebrow { color: var(--clay); }
body[data-work="miun"] .reference-links a:hover { background: var(--moss); }
body[data-work="miun"] .reference-links i { color: var(--clay); }
body[data-work="miun"] .next-copy h2 { font-family: var(--miun-display); font-weight: 700; letter-spacing: -.04em; }
body[data-work="miun"] .site-footer strong { color: var(--clay); font-family: var(--miun-display); }

.ending { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: 7vw; min-height: 760px; padding: clamp(100px, 11vw, 170px) 24px; overflow: hidden; color: var(--cream); background: radial-gradient(circle at 22% 48%, rgba(216,189,122,.14), transparent 24%), var(--forest); }
.ending-mark { align-self: center; color: transparent; font: 700 clamp(110px, 17vw, 250px)/.8 Batang, serif; letter-spacing: -.08em; -webkit-text-stroke: 1px rgba(216,189,122,.42); writing-mode: vertical-rl; }
.ending-copy { align-self: center; }
.ending-copy .eyebrow { margin-bottom: 30px; color: var(--gold); }
.ending-copy h2 { max-width: 920px; margin: 0; font: 700 clamp(48px, 7.4vw, 110px)/1.03 var(--miun-display); letter-spacing: -.035em; word-break: keep-all; }
.ending-copy > p:not(.eyebrow) { max-width: 45ch; margin: 38px 0 0; color: var(--muted); font-size: 15px; line-height: 1.8; word-break: keep-all; }
.ending-copy a { display: flex; justify-content: space-between; max-width: 560px; margin-top: 50px; padding: 17px 0; border-top: 1px solid var(--cream); border-bottom: 1px solid var(--cream); font-size: 13px; font-weight: 800; }
.ending-copy a span:last-child { color: var(--gold); }

@media (max-width: 840px) {
  body[data-work="miun"] .hero { min-height: max(980px, 100svh); }
  .hero-title-group { top: 90px; }
  body[data-work="miun"] .hero-title .hero-hanja { font-size: clamp(70px, 16vw, 105px); }
  .hero-subtitle { margin-top: 14px; }
  .mailbox-stage { top: 50%; left: 38%; width: 230px; }
  body[data-work="miun"] .hero-side { right: 24px; bottom: 34px; left: auto; width: min(330px, calc(100vw - 48px)); }
  body[data-work="miun"] .hero-side > .eyebrow { position: static; }
  body[data-work="miun"] .hero-side-copy { display: block; }
  body[data-work="miun"] .hero-side-copy p { margin-bottom: 18px; }
  .chapter-heading, .exhibition-heading, .ending { grid-template-columns: 1fr; gap: 32px; }
  .chapter-heading > p:last-child, .exhibition-heading > p:not(.eyebrow), .exhibition-heading > a { grid-column: 1; }
  .chapter-heading > p:last-child { margin-top: 0; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-card, .team-card:nth-child(4), .team-card:nth-child(5) { grid-column: auto; }
  .team-card:last-child { grid-column: 1 / -1; }
  .concept-threads { grid-template-columns: repeat(2, 1fr); }
  .concept-threads article { border-bottom: 1px solid rgba(7,17,12,.28); }
  .concept-threads article:nth-child(even) { border-right: 0; }
  .concept-threads article:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .worldview-route { grid-template-columns: repeat(3, 1fr); }
  .worldview-route article:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .worldview-route article:nth-child(3) { border-right: 0; }
  .worldview-route article:nth-child(3)::after { display: none; }
  .tech-nodes { grid-template-columns: repeat(2, 1fr); }
  .tech-nodes article { border-bottom: 1px solid var(--forest); }
  .tech-nodes article:nth-child(even) { border-right: 0; }
  .tech-nodes article:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .ending { min-height: 680px; }
  .ending-mark { position: absolute; right: -18px; bottom: 80px; opacity: .34; }
  .ending-copy { position: relative; z-index: 1; }
  .letter-heading { grid-template-columns: 1fr; }
  .letter-heading > .eyebrow { margin-bottom: 28px; }
  .letter-console { grid-template-columns: 1fr; }
  .letter-form, .letter-forecast { min-height: 620px; }
  .forecast-field { width: min(320px, 70%); }
}

@media (max-width: 560px) {
  body[data-work="miun"] .hero { min-height: 880px; }
  body[data-work="miun"] .hero::after { right: 16px; bottom: 16px; left: 16px; }
  .hero-title-group { top: 78px; width: calc(100% - 32px); }
  .hero-overline { margin-bottom: 12px; font-size: 7px; }
  body[data-work="miun"] .hero-title .hero-ko { font-size: 12px; }
  body[data-work="miun"] .hero-title .hero-hanja { font-size: 70px; }
  .hero-subtitle { font-size: 11px; }
  .mailbox-stage { top: 45%; left: 50%; width: 190px; }
  .mailbox-stage > span { font-size: 6px; }
  body[data-work="miun"] .hero-side { right: 16px; bottom: 28px; left: 16px; width: auto; padding: 13px; }
  body[data-work="miun"] .hero-side-copy { margin-top: 10px; padding-top: 11px; }
  body[data-work="miun"] .hero-side-copy p { margin-bottom: 12px; font-size: 11px; line-height: 1.6; }
  body[data-work="miun"] .hero-side-copy dl { grid-template-columns: 66px 1fr; gap: 5px 10px; font-size: 7px; }
  .hero-letter-link { margin-top: 11px; padding-top: 10px; font-size: 10px; }
  .team-chapter, .worldview, .tech-effect, .exhibition, .ending { padding-right: 16px; padding-left: 16px; }
  .chapter-heading, .exhibition-heading { margin-top: 62px; }
  .chapter-heading h2, .exhibition-heading h2 { font-size: 43px; }
  .team-grid, .concept-threads, .worldview-route, .tech-nodes, .exhibition-goals { grid-template-columns: 1fr; }
  .team-card, .team-card:nth-child(4), .team-card:nth-child(5), .team-card:last-child,
  .concept-threads article, .concept-threads article:last-child,
  .tech-nodes article, .tech-nodes article:last-child { grid-column: 1; }
  .team-card { min-height: 340px; }
  .concept-threads article { min-height: 210px; border-right: 0; border-bottom: 1px solid rgba(7,17,12,.28); }
  .concept-threads article:last-child { border-bottom: 0; }
  .concept-threads h3 { margin-top: 52px; }
  .worldview-route article, .worldview-route article:nth-child(3) { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .worldview-route article:last-child { border-bottom: 0; }
  .worldview-route article:nth-child(3)::after { display: grid; }
  .worldview-route article:not(:last-child)::after { top: auto; right: 14px; bottom: -9px; content: "↓"; }
  .worldview-route h3 { margin-top: 86px; }
  .tech-nodes article { min-height: 340px; border-right: 0; border-bottom: 1px solid var(--forest); }
  .tech-nodes article:last-child { border-bottom: 0; }
  .tech-nodes p { min-height: 0; }
  .exhibition-goals article { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(245,232,195,.36); }
  .exhibition-goals article:last-child { border-bottom: 0; }
  .ending { display: block; min-height: 720px; }
  .ending-mark { top: 156px; right: -40px; bottom: auto; font-size: 150px; writing-mode: horizontal-tb; }
  .ending-copy { padding-top: 110px; }
  .ending-copy h2 { font-size: 48px; }
  .letter-lab { padding-right: 16px; padding-left: 16px; }
  .letter-heading h2 { font-size: 42px; }
  .letter-console { min-height: 0; }
  .letter-form, .letter-forecast { min-height: 540px; padding: 20px; }
  .letter-form textarea { min-height: 250px; font-size: 23px; }
  .letter-form-foot { display: block; }
  .letter-form-foot small { display: block; margin-bottom: 18px; }
  .letter-form button { width: 100%; }
  .forecast-field { width: 82%; }
  .letter-forecast dl { grid-template-columns: 1fr; gap: 0; }
  .letter-forecast dl div { padding: 10px 0; }
}
