:root {
    --paper: #f2eee5;
    --paper-raised: #fbfaf6;
    --ink: #24231f;
    --muted: #706b63;
    --charcoal: #1d1d1a;
    --oxblood: #7b302d;
    --brass: #a7834e;
    --slate: #566d78;
    --mauve: #765361;
    --sage: #526f61;
    --zone-ochre: #98510f;
    --zone-brass: #806137;
    --zone-slate: #466572;
    --zone-brick: #8e352f;
    --zone-sage: #3f6b54;
    --zone-plum: #6f4a62;
    --rule: rgba(36, 35, 31, .16);
    --white-rule: rgba(255, 255, 255, .18);
    --serif: AppleMyungjo, "Iowan Old Style", "Noto Serif KR", Georgia, serif;
    --sans: "Apple SD Gothic Neo", "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --max: 1320px;
    --reading: 720px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

body:has(dialog[open]) {
    overflow: hidden;
}

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

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

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: .2em;
}

:focus-visible {
    outline: 2px solid var(--oxblood);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    background: var(--paper-raised);
    color: var(--ink);
    transform: translateY(-150%);
}

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

.site-header {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 4vw, 64px);
    border-bottom: 1px solid transparent;
    color: #fff;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: var(--rule);
    background: rgba(242, 238, 229, .94);
    color: var(--ink);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.brand-mark {
    font-family: var(--serif);
    font-size: 22px;
}

.brand-divider {
    color: var(--brass);
}

.brand-sum {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .15em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 32px);
    font-size: 13px;
    font-weight: 600;
}

.main-nav a,
.nav-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.main-nav a:hover,
.nav-button:hover {
    color: var(--brass);
}

.room-link,
.nav-button {
    border-bottom: 1px solid currentColor;
}

.hero {
    position: relative;
    display: grid;
    min-height: min(940px, 100svh);
    align-items: end;
    overflow: hidden;
    background: var(--charcoal);
    color: #fff;
}

.hero-art,
.hero-wash {
    position: absolute;
    inset: 0;
}

.hero-art {
    background-image: url("images/a-vest-for-birth.jpg");
    background-position: 60% center;
    background-size: cover;
    filter: grayscale(.95) contrast(1.02);
    opacity: .58;
    transform: scale(1.035);
}

.hero-wash {
    background:
        linear-gradient(90deg, rgba(20, 19, 17, .96) 0%, rgba(20, 19, 17, .76) 42%, rgba(20, 19, 17, .28) 74%, rgba(20, 19, 17, .56) 100%),
        linear-gradient(0deg, rgba(20, 19, 17, .88) 0%, transparent 46%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(820px, calc(100% - 48px));
    margin: 0 0 clamp(160px, 18vh, 220px) clamp(24px, 8vw, 120px);
}

.eyebrow {
    margin: 0 0 22px;
    color: var(--brass);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.4;
}

.eyebrow--ink {
    color: var(--oxblood);
}

.hero h1 {
    display: flex;
    margin: 0;
    align-items: baseline;
    gap: clamp(18px, 3vw, 38px);
    font-weight: 400;
    line-height: .85;
}

.hero-ko {
    font-family: var(--serif);
    font-size: clamp(86px, 12vw, 174px);
    letter-spacing: -.1em;
}

.hero-slash {
    color: var(--brass);
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 200;
}

.hero-en {
    font-size: clamp(74px, 11vw, 160px);
    font-weight: 800;
    letter-spacing: -.06em;
}

.hero-subtitle {
    margin: 34px 0 18px;
    color: #d2bd97;
    font-size: clamp(11px, 1.1vw, 14px);
    font-weight: 600;
    letter-spacing: .15em;
}

.hero-copy {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-family: var(--serif);
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.75;
}

.hero-actions,
.wall-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 19px;
    border: 1px solid transparent;
    border-radius: 1px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

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

.button--light {
    background: var(--paper-raised);
    color: var(--ink);
}

.button--light:hover {
    background: #fff;
}

.button--ghost-light {
    border-color: rgba(255, 255, 255, .44);
    background: rgba(0, 0, 0, .08);
    color: #fff;
}

.button--ghost-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .08);
}

.button--dark {
    background: var(--charcoal);
    color: #fff;
}

.button--dark:hover {
    background: var(--oxblood);
}

.button--full {
    width: 100%;
}

.hero-facts {
    position: absolute;
    z-index: 2;
    right: clamp(24px, 5vw, 72px);
    bottom: 34px;
    left: clamp(24px, 5vw, 72px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 18px;
    border-top: 1px solid var(--white-rule);
}

.hero-facts div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-facts span {
    color: rgba(255, 255, 255, .48);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .15em;
}

.hero-facts strong {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 400;
}

.scroll-cue {
    position: absolute;
    z-index: 3;
    right: 28px;
    bottom: 156px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .62);
    font-size: 9px;
    letter-spacing: .18em;
    text-decoration: none;
    transform: rotate(90deg);
    transform-origin: bottom right;
}

.scroll-cue i {
    width: 58px;
    height: 1px;
    background: currentColor;
}

.section {
    width: min(var(--max), calc(100% - clamp(40px, 9vw, 144px)));
    margin: 0 auto;
    padding: clamp(96px, 12vw, 180px) 0;
}

.section--dark {
    width: 100%;
    max-width: none;
    padding-right: max(clamp(20px, 7vw, 112px), calc((100vw - var(--max)) / 2));
    padding-left: max(clamp(20px, 7vw, 112px), calc((100vw - var(--max)) / 2));
    background: var(--charcoal);
    color: #fff;
}

.section-index {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: clamp(62px, 8vw, 112px);
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
}

.section-index::after {
    width: min(260px, 30vw);
    height: 1px;
    background: var(--rule);
    content: "";
}

.section-index span:first-child {
    color: var(--oxblood);
    font-family: var(--serif);
    font-size: 19px;
    letter-spacing: 0;
}

.section-index--light {
    color: rgba(255, 255, 255, .45);
}

.section-index--light::after {
    background: var(--white-rule);
}

.section-index--light span:first-child {
    color: var(--brass);
}

.intro-grid,
.wall-text-grid {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(420px, 1fr);
    gap: clamp(54px, 8vw, 140px);
}

.intro h2,
.section-heading h2,
.wall-text h2,
.selection-room h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(43px, 5.4vw, 78px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: 1.22;
}

.reading-copy {
    max-width: var(--reading);
}

.reading-copy p {
    margin: 0 0 24px;
}

.reading-copy .lead {
    font-family: var(--serif);
    font-size: clamp(22px, 2.1vw, 31px);
    line-height: 1.65;
}

.english-note {
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 14px;
    font-style: italic;
}

.three-steps {
    display: grid;
    margin-top: clamp(70px, 10vw, 150px);
    border-top: 1px solid var(--rule);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.three-steps article {
    min-height: 230px;
    padding: 30px clamp(22px, 3vw, 46px) 28px 0;
    border-right: 1px solid var(--rule);
}

.three-steps article + article {
    padding-left: clamp(22px, 3vw, 46px);
}

.three-steps article:last-child {
    border-right: 0;
}

.three-steps span,
.word-number {
    color: var(--oxblood);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.three-steps h3 {
    margin: 24px 0 10px;
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
}

.three-steps p {
    max-width: 30ch;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.title-essay {
    min-height: 760px;
}

.word-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: clamp(28px, 5vw, 80px);
}

.word-pair article {
    min-height: 330px;
    padding: clamp(28px, 4vw, 55px);
    border: 1px solid var(--white-rule);
}

.word-pair h2 {
    display: flex;
    margin: 35px 0 28px;
    align-items: baseline;
    gap: 12px;
    font-family: var(--serif);
    font-size: clamp(43px, 5vw, 70px);
    font-weight: 400;
    line-height: 1;
}

.word-pair h2 em {
    color: var(--brass);
    font-family: var(--sans);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: .16em;
}

.word-pair article > p:not(.word-number) {
    max-width: 36ch;
    color: rgba(255, 255, 255, .72);
}

.word-tags {
    display: block;
    margin-top: 30px;
    color: var(--brass);
    font-family: var(--serif);
    font-size: 15px;
}

.sum-glyph {
    color: var(--brass);
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 200;
}

.title-resolution {
    max-width: 780px;
    margin: clamp(65px, 7vw, 105px) auto 0;
    color: rgba(255, 255, 255, .86);
    font-family: var(--serif);
    font-size: clamp(22px, 2.5vw, 36px);
    line-height: 1.6;
    text-align: center;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: clamp(40px, 8vw, 120px);
    margin-bottom: 84px;
}

.section-heading .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -22px;
}

.section-heading > p:last-child {
    max-width: 52ch;
    margin: 0 0 10px;
    color: var(--muted);
}

.section-heading--wide {
    grid-template-columns: 1fr;
}

.chapter-list {
    border-top: 1px solid var(--rule);
}

.zone-theme--ochre { --zone-color: var(--zone-ochre); --zone-soft: #f0e2d1; --zone-canvas: #f2e7d9; }
.zone-theme--brass { --zone-color: var(--zone-brass); --zone-soft: #eee6d4; --zone-canvas: #f1ecdf; }
.zone-theme--slate { --zone-color: var(--zone-slate); --zone-soft: #dce7e9; --zone-canvas: #e5ecee; }
.zone-theme--brick { --zone-color: var(--zone-brick); --zone-soft: #eedddb; --zone-canvas: #f1e4e2; }
.zone-theme--sage { --zone-color: var(--zone-sage); --zone-soft: #dfe8df; --zone-canvas: #e5ece6; }
.zone-theme--plum { --zone-color: var(--zone-plum); --zone-soft: #e8dfe5; --zone-canvas: #eee6eb; }

.zone-key {
    display: grid;
    margin: 0 0 48px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.zone-key__item {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 116px;
    padding: 18px 16px 16px 22px;
    align-content: end;
    border-right: 1px solid var(--rule);
    color: var(--ink);
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}

.zone-key__item:last-child {
    border-right: 0;
}

.zone-key__item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 7px;
    background: var(--zone-color);
    content: "";
}

.zone-key__item > span {
    position: absolute;
    top: 18px;
    left: 22px;
    color: var(--zone-color);
    font-family: var(--serif);
    font-size: 22px;
}

.zone-key__item strong {
    overflow: hidden;
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.zone-key__item small {
    overflow: hidden;
    color: var(--muted);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.zone-key__item:hover {
    background: var(--zone-soft);
}

.chapter {
    position: relative;
    display: grid;
    min-height: 540px;
    padding: 54px 0;
    border-bottom: 1px solid var(--rule);
    grid-template-columns: minmax(300px, .72fr) minmax(460px, 1.28fr);
    gap: clamp(50px, 8vw, 130px);
}

.chapter::before {
    position: absolute;
    z-index: 0;
    top: 0;
    right: calc(50% - 50vw);
    bottom: 0;
    left: calc(50% - 50vw);
    background: linear-gradient(to bottom, var(--zone-color) 0 7px, var(--zone-canvas) 7px 100%);
    content: "";
}

.chapter:nth-child(even) .chapter-copy {
    order: 2;
}

.chapter-copy {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.chapter-kicker {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.chapter-kicker span:first-child {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-family: var(--serif);
    font-size: 14px;
    letter-spacing: 0;
}

.chapter .chapter-kicker { color: var(--zone-color); }

.chapter h3 {
    margin: 35px 0 8px;
    font-family: var(--serif);
    font-size: clamp(38px, 4.2vw, 64px);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: 1.12;
}

.chapter-copy > p:not(.chapter-detail) {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

.chapter-detail {
    max-width: 44ch;
    margin: 38px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    color: var(--muted);
}

.chapter-art {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 430px;
    margin: 0;
    padding: clamp(22px, 3vw, 42px);
    border: 1px solid rgba(36, 35, 31, .1);
    background: var(--paper-raised);
    grid-template-rows: minmax(320px, 1fr) auto;
}

.chapter-art img {
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
}

.chapter-art figcaption {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
}

.chapter-art figcaption strong {
    font-size: 11px;
    letter-spacing: .08em;
}

.chapter-art figcaption span {
    color: var(--muted);
    font-size: 11px;
    text-align: right;
}

.eye-interlude {
    position: relative;
    display: grid;
    min-height: 820px;
    background: var(--charcoal);
    color: #fff;
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, .75fr);
}

.eye-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.eye-grid img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    filter: saturate(.86) brightness(.82);
}

.eye-copy {
    display: flex;
    padding: clamp(48px, 7vw, 110px);
    flex-direction: column;
    justify-content: center;
}

.eye-copy h2 {
    margin: 0 0 42px;
    font-family: var(--serif);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: 1.16;
}

.eye-copy > p:last-child {
    max-width: 36ch;
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

.floorplan {
    margin: 0;
    padding: clamp(22px, 4vw, 60px);
    background: var(--paper-raised);
}

.floorplan img {
    width: 100%;
    max-height: 720px;
    object-fit: contain;
}

.floorplan figcaption {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--rule);
    color: var(--muted);
    font-size: 14px;
}

.space-principle {
    display: grid;
    margin-top: 20px;
    padding: 26px 30px;
    background: var(--charcoal);
    color: #fff;
    grid-template-columns: 150px 1fr;
}

.space-principle span {
    color: var(--brass);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
}

.space-principle p {
    margin: 0;
    font-family: var(--serif);
    font-size: 18px;
}

.wall-text-grid blockquote {
    margin: 0;
    padding: 0 0 0 clamp(26px, 4vw, 60px);
    border-left: 1px solid var(--brass);
    color: rgba(255, 255, 255, .78);
    font-family: var(--serif);
    font-size: clamp(19px, 1.7vw, 25px);
    line-height: 1.9;
}

.wall-text-grid blockquote p {
    margin: 0 0 28px;
}

.wall-actions {
    justify-content: flex-end;
    margin-top: 72px;
}

.public-work-grid,
.curation-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px 22px;
}

.public-work__image {
    height: 420px;
    padding: 24px;
    border: 1px solid var(--rule);
    background: var(--paper-raised);
}

.public-work__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.public-work h3,
.curation-card h3 {
    margin: 12px 0 4px;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.35;
}

.zone-pill {
    display: inline-block;
    margin: 18px 0 0;
    padding-left: 10px;
    border-left: 4px solid var(--zone-color, var(--oxblood));
    color: var(--zone-color, var(--oxblood));
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
}

.work-en,
.work-meta,
.work-source {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.work-en {
    font-weight: 700;
    letter-spacing: .06em;
}

.selection-room {
    width: min(1500px, calc(100% - clamp(32px, 6vw, 96px)));
}

.room-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.room-heading > div > p:last-child {
    max-width: 58ch;
    color: var(--muted);
}

.text-button {
    min-height: 44px;
    padding: 4px 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
}

.room-stats {
    display: grid;
    margin: 68px 0 34px;
    border: 1px solid var(--rule);
    background: rgba(255, 255, 255, .28);
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
}

.room-stats article {
    display: flex;
    min-height: 118px;
    padding: 20px 26px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid var(--rule);
}

.room-stats article:last-child {
    border-right: 0;
}

.room-stats span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.room-stats strong {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    line-height: 1;
}

.room-stats article:last-child strong {
    font-family: var(--sans);
    font-size: 13px;
    line-height: 1.4;
}

.room-stat--confirmed strong {
    color: var(--sage);
}

.room-toolbar {
    position: sticky;
    z-index: 15;
    top: 71px;
    display: flex;
    margin-bottom: 34px;
    padding: 14px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--rule);
    background: rgba(242, 238, 229, .96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.filters {
    display: flex;
    max-width: calc(100% - 190px);
    padding-bottom: 2px;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.filter {
    min-height: 42px;
    padding: 8px 14px;
    flex: 0 0 auto;
    border: 1px solid var(--rule);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.filter:hover,
.filter.is-active {
    border-color: var(--charcoal);
    background: var(--charcoal);
    color: #fff;
}

.filter--zone {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.filter--zone i {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--zone-color);
}

.filter--zone:hover,
.filter--zone.is-active {
    border-color: var(--zone-color);
    background: var(--zone-color);
    color: #fff;
}

.filter--zone:hover i,
.filter--zone.is-active i {
    background: #fff;
}

.filter-empty {
    padding: 70px 20px;
    border: 1px solid var(--rule);
    color: var(--muted);
    text-align: center;
}

.curation-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--rule);
    background: var(--paper-raised);
}

.curation-card[class*="zone-theme--"] {
    border-left: 5px solid var(--zone-color);
}

.curation-card[hidden] {
    display: none;
}

.curation-card--confirmed {
    border-color: rgba(82, 111, 97, .55);
    box-shadow: inset 0 3px var(--sage);
}

.curation-card--pending {
    box-shadow: inset 0 3px var(--brass);
}

.curation-card.curation-card--confirmed[class*="zone-theme--"] {
    border-left-color: var(--zone-color);
}

.curation-image {
    position: relative;
    height: 360px;
    padding: 24px;
    background: #e7e1d6;
}

.curation-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 7px 10px;
    border: 1px solid var(--rule);
    background: rgba(251, 250, 246, .94);
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 3px 14px rgba(36, 35, 31, .08);
}

.curation-card--confirmed .status-badge {
    border-color: var(--sage);
    color: var(--sage);
}

.curation-card--pending .status-badge {
    border-color: var(--brass);
    color: #765c36;
}

.curation-body {
    display: flex;
    padding: 24px;
    flex: 1;
    flex-direction: column;
}

.work-source {
    margin-top: 8px;
    font-size: 11px;
}

.decision-row {
    display: grid;
    margin: 24px 0 14px;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.decision {
    display: flex;
    min-height: 42px;
    padding: 8px 10px;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--rule);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.decision i {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border: 1px solid currentColor;
    border-radius: 50%;
}

.decision.is-selected {
    border-color: rgba(82, 111, 97, .42);
    color: var(--sage);
}

.decision.is-selected i {
    background: currentColor;
    box-shadow: inset 0 0 0 2px var(--paper-raised);
}

.selection-form {
    margin-bottom: 16px;
}

.selection-button {
    display: flex;
    width: 100%;
    min-height: 48px;
    padding: 10px 16px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid var(--charcoal);
    background: var(--charcoal);
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
}

.selection-button.is-selected {
    border-color: var(--sage);
    background: transparent;
    color: var(--sage);
}

.selection-button:hover {
    border-color: var(--oxblood);
    background: var(--oxblood);
    color: #fff;
}

.card-details {
    border-top: 1px solid var(--rule);
}

.card-details summary {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    list-style: none;
}

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

.card-details summary::after {
    color: var(--muted);
    content: "+";
    font-size: 18px;
    font-weight: 400;
}

.card-details[open] summary::after {
    content: "−";
}

.card-details summary span {
    margin-left: auto;
    margin-right: 10px;
    color: var(--muted);
    font-weight: 500;
}

.note-list {
    max-height: 260px;
    margin: 0 0 18px;
    padding: 0;
    overflow-y: auto;
    list-style: none;
}

.note-list li {
    padding: 13px 0;
    border-top: 1px solid var(--rule);
}

.note-list li div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.note-list strong {
    color: var(--oxblood);
    font-size: 11px;
}

.note-list time {
    color: var(--muted);
    font-size: 10px;
}

.note-list p,
.empty-note {
    margin: 6px 0 0;
    font-size: 13px;
    line-height: 1.6;
}

.empty-note {
    margin: 0 0 16px;
    color: var(--muted);
}

.note-form,
.metadata-form {
    display: flex;
    padding-bottom: 18px;
    flex-direction: column;
    gap: 9px;
}

.note-form label,
.metadata-form label,
.upload-form label,
.field-label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

textarea,
input[type="text"],
input[type="password"],
input:not([type]),
select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--rule);
    border-radius: 0;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
}

textarea {
    min-height: 90px;
    resize: vertical;
}

.metadata-form label,
.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.small-button {
    min-height: 42px;
    padding: 8px 14px;
    border: 1px solid var(--charcoal);
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
}

.small-button:hover {
    background: var(--charcoal);
    color: #fff;
}

.closing {
    padding-top: clamp(120px, 16vw, 230px);
    padding-bottom: clamp(120px, 16vw, 230px);
    text-align: center;
}

.closing > p:first-child {
    margin: 0 0 34px;
    color: var(--brass);
    font-family: var(--serif);
    font-size: clamp(20px, 2vw, 28px);
}

.closing h2 {
    margin: 0;
    font-size: clamp(58px, 10vw, 150px);
    letter-spacing: -.07em;
    line-height: .9;
}

.closing h2 span {
    color: var(--brass);
    font-family: var(--serif);
    font-weight: 300;
}

.closing > p:last-child {
    max-width: 660px;
    margin: 58px auto 0;
    color: rgba(255, 255, 255, .66);
}

.site-footer {
    display: grid;
    min-height: 150px;
    padding: 42px clamp(24px, 5vw, 72px);
    align-items: center;
    border-top: 1px solid var(--white-rule);
    background: var(--charcoal);
    color: #fff;
    grid-template-columns: 1fr 1fr 1fr;
}

.site-footer div {
    display: flex;
    flex-direction: column;
}

.site-footer strong {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
}

.site-footer span,
.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, .52);
    font-size: 11px;
}

.site-footer p {
    margin: 0;
    text-align: center;
}

.site-footer > a {
    justify-self: end;
}

.flash {
    position: fixed;
    z-index: 110;
    top: 88px;
    left: 50%;
    display: flex;
    width: min(520px, calc(100% - 32px));
    min-height: 50px;
    padding: 12px 12px 12px 18px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid var(--rule);
    background: var(--paper-raised);
    box-shadow: 0 18px 50px rgba(22, 20, 17, .16);
    font-size: 13px;
    transform: translateX(-50%);
}

.flash--success {
    border-left: 4px solid var(--sage);
}

.flash--error {
    border-left: 4px solid var(--oxblood);
}

.flash button {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 22px;
}

.modal {
    width: min(560px, calc(100% - 30px));
    max-height: min(860px, calc(100dvh - 30px));
    margin: auto;
    padding: 0;
    overflow: auto;
    border: 0;
    background: var(--paper-raised);
    color: var(--ink);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.modal--wide {
    width: min(790px, calc(100% - 30px));
}

.modal::backdrop {
    background: rgba(20, 19, 17, .76);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-inner {
    position: relative;
    padding: clamp(28px, 6vw, 58px);
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 27px;
}

.modal h2 {
    margin: 0 0 14px;
    font-family: var(--serif);
    font-size: clamp(35px, 5vw, 50px);
    font-weight: 400;
}

.modal-inner > p:not(.eyebrow) {
    margin: 0 0 28px;
    color: var(--muted);
}

.login-form fieldset {
    display: grid;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
}

.login-form legend {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
}

.login-form fieldset label {
    position: relative;
}

.login-form fieldset input {
    position: absolute;
    opacity: 0;
}

.login-form fieldset span {
    display: flex;
    min-height: 74px;
    padding: 12px 16px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--rule);
    cursor: pointer;
    font-family: var(--serif);
    font-size: 17px;
}

.login-form fieldset small {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .13em;
}

.login-form fieldset input:checked + span {
    border-color: var(--oxblood);
    box-shadow: inset 0 0 0 1px var(--oxblood);
}

.login-form fieldset input:focus-visible + span {
    outline: 2px solid var(--oxblood);
    outline-offset: 3px;
}

.field-label {
    display: block;
    margin: 14px 0 6px;
}

.login-form .button {
    margin-top: 18px;
}

.upload-drop {
    position: relative;
    display: flex;
    min-height: 210px;
    margin-bottom: 24px;
    padding: 25px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px dashed rgba(36, 35, 31, .42);
    background: var(--paper);
    cursor: pointer;
    text-align: center;
}

.upload-drop:hover {
    border-color: var(--oxblood);
}

.upload-drop input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.upload-drop strong {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 20px;
}

.upload-drop small {
    color: var(--muted);
    font-size: 11px;
    font-weight: 400;
}

.upload-preview {
    display: none;
    width: 100%;
    height: 220px;
    margin-bottom: 18px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.upload-drop.has-preview .upload-preview {
    display: block;
}

.upload-drop.has-preview {
    padding-top: 18px;
}

.form-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}

.form-hint {
    color: var(--muted);
    font-size: 11px;
}

/* Public exhibition-story components */
.route-line {
    display: grid;
    margin-top: 72px;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.route-line__step {
    position: relative;
    display: flex;
    min-height: 98px;
    padding: 28px 16px 18px;
    align-items: flex-end;
    gap: 10px;
    border-right: 1px solid var(--rule);
    text-decoration: none;
}

.route-line__step:last-child {
    border-right: 0;
}

.route-line__step::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 6px;
    background: var(--zone-color);
    content: "";
}

.route-line__step span {
    color: var(--zone-color);
    font-family: var(--serif);
    font-size: 20px;
}

.route-line__step strong {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
}

.route-line__step:hover {
    background: var(--zone-soft);
}

.ontology-heading {
    display: grid;
    margin: 0 auto clamp(60px, 8vw, 112px);
    grid-template-columns: minmax(360px, 1.15fr) minmax(300px, .85fr);
    gap: clamp(48px, 9vw, 140px);
}

.ontology-heading .eyebrow {
    grid-column: 1 / -1;
    color: var(--brass);
}

.ontology-heading h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(48px, 6vw, 86px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: 1.2;
}

.ontology-heading > p:last-child {
    align-self: end;
    max-width: 43ch;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .72);
    font-family: var(--serif);
    font-size: 20px;
    line-height: 1.9;
}

.ontology-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ontology-grid article {
    min-height: 330px;
    padding: clamp(28px, 3.5vw, 48px);
    border: 1px solid var(--white-rule);
}

.ontology-grid article + article {
    border-left: 0;
}

.ontology-grid span,
.ontology-statement::before {
    color: var(--brass);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
}

.ontology-grid h3 {
    margin: 52px 0 20px;
    font-family: var(--serif);
    font-size: clamp(25px, 2.4vw, 36px);
    font-weight: 400;
}

.ontology-grid p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

.ontology-statement {
    position: relative;
    max-width: 970px;
    margin: clamp(70px, 9vw, 130px) auto 0;
    padding: 42px 0 0;
    border-top: 1px solid var(--brass);
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.65;
    text-align: center;
}

.ontology-statement::before {
    position: absolute;
    top: -29px;
    left: 50%;
    padding: 8px 16px;
    background: var(--charcoal);
    content: "EXISTENCE + RELATION";
    transform: translateX(-50%);
    white-space: nowrap;
}

.ontology-statement p {
    margin: 0 0 12px;
}

.zone-key__item[aria-current="location"] {
    background: var(--zone-soft);
}

.room-list {
    border-top: 1px solid var(--rule);
}

.room-chapter {
    position: relative;
    padding: clamp(82px, 9vw, 130px) 0;
    scroll-margin-top: 70px;
}

.room-chapter::before {
    position: absolute;
    z-index: 0;
    top: 0;
    right: calc(50% - 50vw);
    bottom: 0;
    left: calc(50% - 50vw);
    background: linear-gradient(to bottom, var(--zone-color) 0 7px, var(--zone-canvas) 7px 100%);
    content: "";
}

.room-chapter__main,
.room-chapter__details,
.room-workset {
    position: relative;
    z-index: 1;
}

.room-chapter__main {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(300px, .72fr) minmax(460px, 1.28fr);
    gap: clamp(50px, 8vw, 130px);
}

.room-chapter:nth-child(even) .room-chapter__copy {
    order: 2;
}

.room-stage {
    margin: 30px 0 0;
    color: var(--zone-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .18em;
}

.room-chapter__copy h3 {
    margin: 6px 0 8px;
    font-family: var(--serif);
    font-size: clamp(48px, 5.4vw, 78px);
    font-weight: 400;
    letter-spacing: -.06em;
    line-height: 1.14;
}

.room-short {
    margin: 0;
    color: var(--muted);
    font-weight: 700;
}

.room-intro {
    max-width: 46ch;
    margin: 34px 0 0;
    padding-top: 28px;
    border-top: 1px solid rgba(36, 35, 31, .22);
    font-family: var(--serif);
    font-size: 19px;
    line-height: 1.85;
}

.room-accumulation {
    display: flex;
    margin: 34px 0 0;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.room-accumulation strong {
    color: var(--zone-color);
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
}

.room-chapter__hero {
    margin: 0;
    padding: clamp(22px, 3vw, 40px);
    border: 1px solid rgba(36, 35, 31, .12);
    background: var(--paper-raised);
}

.room-chapter__hero > div {
    display: grid;
    height: 430px;
    padding: 10px;
    overflow: hidden;
    background: #fff;
    place-items: center;
}

.room-chapter__hero img {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-height: 100%;
    object-fit: contain;
}

.room-chapter__hero figcaption,
.room-workset figure figcaption {
    display: flex;
    margin-top: 20px;
    padding-top: 15px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--rule);
}

.room-chapter__hero figcaption strong,
.room-workset figure figcaption strong {
    font-size: 10px;
    letter-spacing: .08em;
}

.room-chapter__hero figcaption span,
.room-workset figure figcaption span {
    color: var(--muted);
    font-size: 10px;
    text-align: right;
}

.room-chapter__details {
    display: grid;
    margin-top: clamp(54px, 7vw, 90px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room-chapter__details section {
    min-height: 305px;
    padding: clamp(26px, 3vw, 42px);
    border: 1px solid rgba(36, 35, 31, .14);
    background: rgba(251, 250, 246, .7);
}

.room-chapter__details section + section {
    border-left: 0;
}

.room-chapter__details span,
.room-workset__heading span {
    color: var(--zone-color);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
}

.room-chapter__details h4 {
    margin: 45px 0 15px;
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;
}

.room-chapter__details p {
    margin: 0;
    color: #58554f;
    font-size: 14px;
    line-height: 1.85;
}

.room-workset {
    margin-top: clamp(64px, 8vw, 110px);
}

.room-workset__heading {
    display: flex;
    margin-bottom: 24px;
    padding-bottom: 16px;
    align-items: flex-end;
    justify-content: space-between;
    border-bottom: 1px solid rgba(36, 35, 31, .22);
}

.room-workset__heading strong {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
}

.room-workset__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.room-workset figure {
    min-width: 0;
    margin: 0;
    padding: 18px;
    border: 1px solid rgba(36, 35, 31, .12);
    background: var(--paper-raised);
}

.room-workset figure > div {
    height: 250px;
    overflow: hidden;
    background: #fff;
}

.room-workset figure img {
    width: 100%;
    height: 100%;
    min-width: 0;
    min-height: 0;
    max-height: 100%;
    object-fit: contain;
}

.room-workset figure figcaption {
    align-items: stretch;
    flex-direction: column;
    gap: 5px;
}

.room-workset figure figcaption span {
    text-align: left;
}

.planning-rules {
    display: grid;
    margin-top: 34px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.planning-rules article {
    min-height: 225px;
    padding: 30px;
    border: 1px solid var(--rule);
}

.planning-rules article + article {
    border-left: 0;
}

.planning-rules span {
    color: var(--brass);
    font-family: var(--serif);
}

.planning-rules h3 {
    margin: 32px 0 12px;
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
}

.planning-rules p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1050px) {
    .public-work-grid,
    .curation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eye-interlude {
        grid-template-columns: 1fr;
    }

    .eye-copy {
        min-height: 470px;
    }

    .chapter {
        grid-template-columns: minmax(260px, .8fr) minmax(360px, 1.2fr);
        gap: 44px;
    }

    .room-chapter__main {
        grid-template-columns: minmax(260px, .8fr) minmax(360px, 1.2fr);
        gap: 44px;
    }

    .room-workset__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 70px;
    }

    .site-header {
        min-height: 64px;
        padding: 0 18px;
    }

    .main-nav {
        gap: 8px;
    }

    .main-nav > a:not(.room-link),
    .main-nav > button:not(.nav-button) {
        display: none;
    }

    .main-nav .room-link,
    .nav-button {
        padding: 0 3px;
        font-size: 12px;
    }

    .hero {
        min-height: 820px;
    }

    .hero-art {
        background-position: center center;
        opacity: .44;
    }

    .hero-wash {
        background: linear-gradient(0deg, rgba(20, 19, 17, .96) 0%, rgba(20, 19, 17, .58) 70%, rgba(20, 19, 17, .7) 100%);
    }

    .hero-content {
        width: calc(100% - 36px);
        margin: 0 18px 198px;
    }

    .hero h1 {
        gap: 13px;
    }

    .hero-ko {
        font-size: clamp(69px, 22vw, 90px);
    }

    .hero-en {
        font-size: clamp(62px, 20vw, 84px);
    }

    .hero-slash {
        font-size: 37px;
    }

    .hero-copy {
        font-size: 17px;
        line-height: 1.7;
    }

    .hero-actions .button {
        flex: 1 1 0;
        padding-right: 12px;
        padding-left: 12px;
    }

    .hero-facts {
        right: 18px;
        bottom: 28px;
        left: 18px;
        grid-template-columns: 1fr 1fr;
        row-gap: 16px;
    }

    .hero-facts div:last-child {
        grid-column: 1 / -1;
    }

    .scroll-cue {
        display: none;
    }

    .section {
        width: calc(100% - 36px);
        padding: 92px 0;
    }

    .section--dark {
        width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }

    .section-index {
        margin-bottom: 52px;
    }

    .section-index::after {
        flex: 1;
    }

    .intro-grid,
    .wall-text-grid,
    .section-heading {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .intro h2,
    .section-heading h2,
    .wall-text h2,
    .selection-room h2 {
        font-size: 43px;
    }

    .reading-copy .lead {
        font-size: 21px;
    }

    .three-steps {
        grid-template-columns: 1fr;
    }

    .three-steps article,
    .three-steps article + article {
        min-height: 0;
        padding: 28px 0;
        border-right: 0;
        border-bottom: 1px solid var(--rule);
    }

    .word-pair {
        grid-template-columns: 1fr;
    }

    .word-pair article {
        min-height: 0;
        padding: 28px;
    }

    .sum-glyph {
        height: 24px;
        line-height: 20px;
        text-align: center;
    }

    .title-resolution {
        margin-top: 60px;
        font-size: 23px;
        text-align: left;
    }

    .section-heading .eyebrow {
        margin-bottom: -12px;
    }

    .section-heading > p:last-child {
        margin-top: -14px;
    }

    .route-line {
        display: flex;
        margin-right: -18px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .route-line__step {
        min-width: 126px;
        flex: 0 0 126px;
        scroll-snap-align: start;
    }

    .ontology-heading {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ontology-heading .eyebrow {
        grid-column: auto;
    }

    .ontology-heading h2 {
        font-size: 46px;
    }

    .ontology-heading > p:last-child {
        font-size: 18px;
    }

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

    .ontology-grid article {
        min-height: 0;
    }

    .ontology-grid article + article {
        border-top: 0;
        border-left: 1px solid var(--white-rule);
    }

    .ontology-grid h3 {
        margin-top: 34px;
    }

    .ontology-statement {
        font-size: 21px;
        text-align: left;
    }

    .zone-key {
        display: flex;
        margin-right: -18px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
    }

    .zone-key__item {
        min-width: 154px;
        flex: 0 0 154px;
        scroll-snap-align: start;
    }

    .room-chapter {
        padding: 76px 0;
    }

    .room-chapter__main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .room-chapter:nth-child(even) .room-chapter__copy {
        order: 0;
    }

    .room-chapter__copy h3 {
        font-size: 47px;
    }

    .room-intro {
        font-size: 17px;
    }

    .room-chapter__hero {
        padding: 18px;
    }

    .room-chapter__hero > div {
        height: 320px;
    }

    .room-chapter__hero figcaption {
        align-items: stretch;
        flex-direction: column;
        gap: 5px;
    }

    .room-chapter__hero figcaption span {
        text-align: left;
    }

    .room-chapter__details {
        grid-template-columns: 1fr;
    }

    .room-chapter__details section {
        min-height: 0;
    }

    .room-chapter__details section + section {
        border-top: 0;
        border-left: 1px solid rgba(36, 35, 31, .14);
    }

    .room-chapter__details h4 {
        margin-top: 28px;
    }

    .room-workset__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .room-workset figure > div {
        height: 210px;
    }

    .planning-rules {
        grid-template-columns: 1fr;
    }

    .planning-rules article {
        min-height: 0;
    }

    .planning-rules article + article {
        border-top: 0;
        border-left: 1px solid var(--rule);
    }

    .chapter {
        min-height: 0;
        padding: 44px 0;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .chapter:nth-child(even) .chapter-copy {
        order: 0;
    }

    .chapter h3 {
        font-size: 41px;
    }

    .chapter-detail {
        margin-top: 28px;
    }

    .chapter-art {
        min-height: 390px;
        padding: 18px;
        grid-template-rows: minmax(280px, 1fr) auto;
    }

    .chapter-art figcaption {
        flex-direction: column;
        gap: 4px;
    }

    .chapter-art figcaption span {
        text-align: left;
    }

    .eye-grid img {
        height: 190px;
    }

    .eye-copy {
        min-height: 450px;
        padding: 64px 24px;
    }

    .eye-copy h2 {
        font-size: 46px;
    }

    .floorplan {
        width: calc(100% + 18px);
        padding: 18px;
        overflow-x: auto;
    }

    .floorplan img {
        width: 720px;
        max-width: none;
    }

    .space-principle {
        padding: 22px;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .wall-text-grid blockquote {
        padding-left: 22px;
        font-size: 18px;
    }

    .wall-actions {
        justify-content: stretch;
    }

    .wall-actions .button {
        width: 100%;
    }

    .public-work-grid,
    .curation-grid {
        grid-template-columns: 1fr;
    }

    .public-work__image,
    .curation-image {
        height: 350px;
    }

    .room-heading {
        flex-direction: column;
    }

    .room-stats {
        grid-template-columns: 1fr 1fr;
    }

    .room-stats article:nth-child(2) {
        border-right: 0;
    }

    .room-stats article:nth-child(-n + 2) {
        border-bottom: 1px solid var(--rule);
    }

    .room-toolbar {
        top: 63px;
        padding: 12px 0;
        align-items: stretch;
        flex-direction: column;
    }

    .filters {
        max-width: none;
    }

    .room-toolbar .button {
        width: 100%;
    }

    .closing h2 {
        font-size: clamp(54px, 17vw, 78px);
    }

    .site-footer {
        padding: 42px 24px;
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: left;
    }

    .site-footer p {
        text-align: left;
    }

    .site-footer > a {
        justify-self: start;
    }

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

@media (max-width: 430px) {
    .brand-mark {
        font-size: 19px;
    }

    .brand-sum {
        font-size: 12px;
    }

    .hero {
        min-height: 790px;
    }

    .hero-subtitle {
        letter-spacing: .09em;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
    }

    .decision-row {
        grid-template-columns: 1fr;
    }

    .room-stats article {
        min-height: 100px;
        padding: 18px;
    }

    .room-workset__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .room-workset__grid {
        grid-template-columns: 1fr;
    }

    .modal-inner {
        padding: 48px 22px 28px;
    }

    .login-form fieldset {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .site-header,
    .hero-actions,
    .scroll-cue,
    .wall-actions,
    .selection-room,
    .flash,
    dialog {
        display: none !important;
    }

    body,
    .section--dark,
    .eye-interlude,
    .closing,
    .site-footer {
        background: #fff !important;
        color: #000 !important;
    }

    .hero {
        min-height: 500px;
    }
}
