:root {
    --paper: #f4f0e5;
    --paper-deep: #e9e1d0;
    --paper-light: #fffdf7;
    --ink: #15203a;
    --ink-soft: #4c5466;
    --blue: #2443d8;
    --blue-dark: #1630b7;
    --blue-pale: #dce3ff;
    --coral: #eb6b4d;
    --acid: #d7eb73;
    --line: rgba(21, 32, 58, .2);
    --line-strong: rgba(21, 32, 58, .55);
    --shadow: 0 18px 55px rgba(25, 33, 76, .12);
    --sans: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --serif: "Iowan Old Style", "Noto Serif KR", "Batang", Georgia, serif;
    --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    color-scheme: light;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.68;
    text-rendering: optimizeLegibility;
    overflow-wrap: anywhere;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
    opacity: .18;
    background-image: radial-gradient(rgba(21, 32, 58, .35) .45px, transparent .45px);
    background-size: 5px 5px;
}

[hidden] { display: none !important; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
button, select { color: inherit; font: inherit; }
p, h1, h2, h3, blockquote, figure, dl, dd { margin-top: 0; }

.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100;
    transform: translateY(-160%);
    padding: 10px 15px;
    background: var(--ink);
    color: white;
    font-weight: 800;
}

.skip-link:focus { transform: none; }

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 4px;
}

.site-header {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 92px;
    padding: 17px max(24px, calc((100vw - var(--max)) / 2));
    border-bottom: 1px solid var(--line);
    background: rgba(244, 240, 229, .94);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    color: var(--ink);
    text-decoration: none;
}

.brand > span:last-child { display: grid; line-height: 1.1; }
.brand strong { font-size: 1.02rem; letter-spacing: -.035em; }
.brand small { margin-top: 6px; color: var(--blue); font-size: .58rem; font-weight: 900; letter-spacing: .18em; }

.brand-mark {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 45px;
    border: 1px solid var(--ink);
    border-radius: 50%;
    background: var(--acid);
}

.brand-mark i { position: absolute; display: block; background: var(--blue); }
.brand-mark i:nth-child(1) { width: 5px; height: 26px; top: 9px; left: 11px; transform: rotate(25deg); }
.brand-mark i:nth-child(2) { width: 5px; height: 26px; top: 9px; right: 11px; transform: rotate(-25deg); }
.brand-mark i:nth-child(3) { width: 23px; height: 5px; left: 10px; top: 20px; }

.primary-nav { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 8px 25px; }
.primary-nav a {
    position: relative;
    padding: 8px 2px;
    font-size: .88rem;
    font-weight: 750;
    text-decoration: none;
}

.primary-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    background: var(--blue);
    transition: transform .18s ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.hero {
    display: grid;
    grid-template-columns: minmax(420px, .87fr) minmax(480px, 1.13fr);
    width: min(calc(100% - 40px), 1440px);
    min-height: 700px;
    margin: 34px auto 0;
    border: 1px solid var(--ink);
    background: var(--paper-light);
    box-shadow: var(--shadow);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(40px, 6vw, 92px);
    border-right: 1px solid var(--ink);
}

.kicker {
    margin-bottom: 15px;
    color: var(--blue);
    font-size: .72rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.not-found h1 {
    margin-bottom: 28px;
    font-family: var(--serif);
    font-size: clamp(3rem, 5.5vw, 6.5rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.065em;
}

.hero h1 em { color: var(--blue); font-style: italic; }
.hero-lead { max-width: 570px; margin-bottom: 34px; color: var(--ink-soft); font-size: 1.05rem; }

.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 11px 24px;
    border: 1px solid var(--ink);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 850;
}
.button-primary { background: var(--blue); color: #fff; box-shadow: 5px 5px 0 var(--ink); }
.button-primary:hover { background: var(--blue-dark); transform: translate(1px, 1px); box-shadow: 4px 4px 0 var(--ink); }
.text-link { color: var(--blue-dark); font-size: .9rem; font-weight: 850; }

.hero-facts {
    display: flex;
    gap: 26px;
    margin: 52px 0 0;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.hero-facts div { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 8px; }
.hero-facts dt { font-family: var(--serif); font-size: 1.95rem; line-height: 1; }
.hero-facts dd { color: var(--ink-soft); font-size: .69rem; font-weight: 800; }

.hero-art { position: relative; min-height: 560px; margin: 0; overflow: hidden; background: var(--blue); }
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.72);
    background: rgba(21,32,58,.78);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .06em;
    backdrop-filter: blur(5px);
}
.hero-art figcaption span { color: var(--acid); }

.section-heading { margin-bottom: 34px; }
.section-heading h2 { margin-bottom: 9px; font-family: var(--serif); font-size: clamp(2.1rem, 4vw, 4rem); font-weight: 500; line-height: 1.05; letter-spacing: -.055em; }
.section-heading > p:last-child { max-width: 630px; color: var(--ink-soft); }
.section-heading.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }

.time-shelf { padding-block: 120px 130px; }
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.time-card {
    position: relative;
    display: grid;
    min-height: 340px;
    padding: 30px;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--paper-light);
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}
.time-card:nth-child(2) { background: var(--blue-pale); }
.time-card:hover { background: var(--blue); color: white; }
.time-card:hover .time-unit { color: var(--acid); }
.time-number { font-family: var(--serif); font-size: clamp(5rem, 9vw, 8.5rem); line-height: .8; letter-spacing: -.08em; }
.time-unit { align-self: start; margin: 8px 0 42px; color: var(--blue); font-size: .67rem; font-weight: 900; letter-spacing: .22em; }
.time-card strong { align-self: end; margin-bottom: 7px; font-size: 1.25rem; }
.time-card > span:last-of-type { max-width: 290px; color: currentColor; font-size: .85rem; opacity: .75; }
.time-card i { position: absolute; top: 25px; right: 25px; font-size: 1.4rem; font-style: normal; }

.featured { padding-bottom: 130px; }
.exhibit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.exhibit-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(24px, 3vw, 39px);
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--paper-light);
}
.exhibit-card[hidden] { display: none; }
.card-index { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 48px; color: var(--blue); font-size: .67rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.card-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.card-heading h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 2.6vw, 2.55rem); font-weight: 500; line-height: 1; letter-spacing: -.045em; }
.provider { max-width: 180px; margin: 0; color: var(--ink-soft); font-size: .68rem; line-height: 1.4; text-align: right; }
.card-description { min-height: 3.5em; margin-bottom: 26px; color: var(--ink-soft); }
.lens { margin: 0 0 24px; padding: 18px 20px; border-left: 4px solid var(--blue); background: var(--paper); }
.lens strong { display: block; margin-bottom: 5px; color: var(--blue); font-size: .68rem; letter-spacing: .08em; }
.lens p { margin: 0; font-size: .85rem; }
.badges { display: flex; flex-wrap: wrap; gap: 7px; margin: auto 0 19px; padding: 0; list-style: none; }
.badges li { padding: 5px 9px; border: 1px solid var(--line-strong); border-radius: 999px; background: var(--paper-light); font-size: .67rem; font-weight: 750; line-height: 1.2; }
.badges li:first-child { border-color: var(--blue); background: var(--blue); color: #fff; }
.access-note { margin-bottom: 23px; padding-block: 13px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.access-note summary { cursor: pointer; color: var(--ink); font-size: .76rem; font-weight: 850; }
.access-note summary::marker { color: var(--blue); }
.access-note p { margin: 10px 0 0; color: var(--ink-soft); font-size: .78rem; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.card-footer > span { color: var(--ink-soft); font-size: .66rem; }
.visit-link { color: var(--blue-dark); font-size: .78rem; font-weight: 900; }

.editorial-note {
    display: grid;
    grid-template-columns: .4fr 1.4fr .7fr;
    align-items: start;
    gap: 48px;
    margin-bottom: 140px;
    padding: 54px;
    border: 1px solid var(--ink);
    background: var(--acid);
}
.editorial-note blockquote { margin-bottom: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 500; line-height: 1.15; letter-spacing: -.055em; }
.editorial-note > p:last-child { margin: 0; font-size: .85rem; }

.breadcrumbs { padding-top: 26px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; color: var(--ink-soft); font-size: .72rem; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line-strong); }
.breadcrumbs a { text-decoration-thickness: 1px; }

.page-hero { padding-block: clamp(70px, 10vw, 140px) clamp(60px, 8vw, 100px); border-bottom: 1px solid var(--ink); }
.page-hero h1 { max-width: 1000px; margin-bottom: 28px; }
.page-hero > p:last-child { max-width: 790px; margin: 0; color: var(--ink-soft); font-size: clamp(1rem, 1.6vw, 1.25rem); }

.compact-times { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 45px; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.compact-times a { display: flex; align-items: baseline; gap: 16px; padding: 23px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper-light); text-decoration: none; }
.compact-times a:hover { background: var(--blue-pale); }
.compact-times strong { min-width: 58px; color: var(--blue); font-family: var(--serif); font-size: 1.45rem; }
.compact-times span { color: var(--ink-soft); font-size: .77rem; }

.filters { margin-block: 70px; padding: 30px; border: 1px solid var(--ink); background: var(--blue); color: white; box-shadow: 8px 8px 0 var(--ink); }
.filter-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.4); }
.filter-intro .kicker { margin-bottom: 8px; color: var(--acid); }
.filter-intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.6rem); font-weight: 500; line-height: 1.05; }
.filter-intro p { margin: 0; align-self: end; color: rgba(255,255,255,.78); font-size: .78rem; }
.filter-controls { display: grid; grid-template-columns: repeat(4, 1fr) auto; gap: 12px; margin-top: 24px; }
.filter-controls label span { display: block; margin-bottom: 6px; color: rgba(255,255,255,.78); font-size: .68rem; font-weight: 800; }
.filter-controls select { width: 100%; min-height: 45px; padding: 8px 30px 8px 10px; border: 1px solid rgba(255,255,255,.65); border-radius: 0; background: #fff; color: var(--ink); }
.filter-controls button { align-self: end; min-height: 45px; padding: 8px 16px; border: 1px solid white; background: transparent; color: white; cursor: pointer; font-size: .75rem; font-weight: 850; }
.filter-controls button:hover { background: white; color: var(--blue); }
.filter-result { min-height: 1.5em; margin: 17px 0 0; color: var(--acid); font-size: .78rem; font-weight: 800; }
.empty-state { grid-column: 1 / -1; padding: 50px; border: 1px solid var(--ink); background: var(--paper-light); text-align: center; }

.collection { padding-block: 50px 130px; }
.noncommercial { max-width: none !important; margin: 0; color: var(--blue) !important; font-size: .71rem; font-weight: 850; letter-spacing: .08em; }

.walk-instructions { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.walk-instructions > div { padding: 30px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper-light); }
.walk-instructions span { color: var(--blue); font-family: var(--serif); font-size: 2.1rem; }
.walk-instructions h2 { margin: 35px 0 10px; font-size: 1rem; }
.walk-instructions p { margin: 0; color: var(--ink-soft); font-size: .83rem; }
.next-walk { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px 22px; margin-bottom: 120px; padding-top: 25px; border-top: 1px solid var(--ink); }
.next-walk a { color: var(--blue-dark); font-size: .78rem; font-weight: 800; }

.gallery-index { padding-block: 55px 125px; }
.gallery-row { display: grid; grid-template-columns: 80px minmax(0, 1fr) 120px 30px; align-items: center; gap: 26px; padding: 38px 20px 38px 0; border-bottom: 1px solid var(--ink); text-decoration: none; }
.gallery-row:first-child { border-top: 1px solid var(--ink); }
.gallery-row:hover { background: var(--blue-pale); }
.gallery-number { color: var(--blue); font-family: var(--serif); font-size: 2rem; text-align: center; }
.gallery-row .kicker { margin-bottom: 8px; }
.gallery-row h2 { margin-bottom: 8px; font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 3.7rem); font-weight: 500; line-height: 1; letter-spacing: -.05em; }
.gallery-row p:last-child { max-width: 700px; margin: 0; color: var(--ink-soft); }
.gallery-row > strong { font-size: .66rem; letter-spacing: .12em; text-align: right; }
.gallery-row > i { color: var(--blue); font-size: 1.4rem; font-style: normal; }
.plain-note, .curator-tip { display: grid; grid-template-columns: 230px 1fr; gap: 36px; margin-bottom: 120px; padding: 32px 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.plain-note strong, .curator-tip span { color: var(--blue); font-size: .75rem; font-weight: 900; letter-spacing: .08em; }
.plain-note p, .curator-tip p { max-width: 780px; margin: 0; font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 2.2rem); line-height: 1.35; }
.curator-tip { margin-top: 50px; margin-bottom: 20px; }

.prose-grid { display: grid; grid-template-columns: repeat(2, 1fr); padding-block: 60px 120px; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.prose-grid article { padding: clamp(28px, 4vw, 52px); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper-light); }
.prose-grid span, .values span { color: var(--blue); font-family: var(--serif); font-size: 2.2rem; }
.prose-grid h2 { margin: 50px 0 14px; font-family: var(--serif); font-size: 1.85rem; font-weight: 500; }
.prose-grid p { margin: 0; color: var(--ink-soft); }

.method-table { padding-bottom: 120px; }
.table-scroll { overflow-x: auto; border: 1px solid var(--ink); background: var(--paper-light); }
table { width: 100%; min-width: 730px; border-collapse: collapse; }
th, td { padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
thead th { background: var(--blue); color: white; font-size: .72rem; letter-spacing: .08em; }
tbody th { width: 150px; color: var(--blue); }
td { color: var(--ink-soft); font-size: .86rem; }
.review-policy { margin-bottom: 130px; padding: clamp(30px, 5vw, 70px); border: 1px solid var(--ink); background: var(--acid); }
.review-policy h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 500; }
.review-policy p { max-width: 880px; }

.about-manifesto { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; padding-block: 80px 120px; }
.large-copy p { font-family: var(--serif); font-size: clamp(2.1rem, 4.4vw, 4.8rem); line-height: 1.18; letter-spacing: -.05em; }
.large-copy em { color: var(--blue); }
.small-copy { padding-top: 10px; color: var(--ink-soft); }
.small-copy p + p { margin-top: 28px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.values > div { padding: 34px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); background: var(--paper-light); }
.values h2 { margin: 45px 0 10px; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; }
.values p { margin: 0; color: var(--ink-soft); font-size: .85rem; }
.about-cta { margin-block: 120px; padding: clamp(45px, 7vw, 90px); border: 1px solid var(--ink); background: var(--blue); color: white; text-align: center; }
.about-cta .kicker { color: var(--acid); }
.about-cta h2 { margin-bottom: 38px; font-family: var(--serif); font-size: clamp(2.3rem, 5vw, 5.2rem); font-weight: 500; line-height: 1.08; letter-spacing: -.05em; }
.about-cta .button { border-color: white; background: var(--acid); color: var(--ink); box-shadow: 5px 5px 0 white; }

.legal { max-width: 980px; padding-block: 65px 130px; }
.legal article { display: grid; grid-template-columns: 280px 1fr; gap: 44px; padding-block: 35px; border-bottom: 1px solid var(--ink); }
.legal article:first-child { border-top: 1px solid var(--ink); }
.legal h2 { margin: 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 500; }
.legal p { margin: 0; color: var(--ink-soft); }
.legal p + p { margin-top: 15px; }
.legal code { padding: 2px 5px; background: var(--paper-deep); color: var(--ink); }

.not-found { min-height: 710px; padding-block: 80px 130px; }
.error-code { float: right; margin: 0 0 30px 30px; color: var(--blue); font-family: var(--serif); font-size: clamp(7rem, 24vw, 22rem); font-weight: 500; line-height: .67; letter-spacing: -.11em; opacity: .14; }
.not-found h1 { max-width: 850px; }
.not-found > p:not(.kicker):not(.error-code) { max-width: 650px; color: var(--ink-soft); }

.site-footer { padding: 75px max(24px, calc((100vw - var(--max)) / 2)) 22px; background: var(--ink); color: #fff; }
.footer-lead { display: flex; justify-content: space-between; gap: 45px; padding-bottom: 65px; border-bottom: 1px solid rgba(255,255,255,.28); }
.footer-brand { color: white; }
.footer-brand small { color: var(--acid); }
.footer-brand .brand-mark { border-color: white; }
.footer-lead > p { margin: 0; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 1.25rem; text-align: right; }
.site-footer > nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 55px; padding-block: 60px; }
.site-footer > nav div { display: grid; align-content: start; gap: 10px; }
.site-footer > nav strong { margin-bottom: 8px; color: var(--acid); font-size: .67rem; letter-spacing: .13em; }
.site-footer > nav a { width: fit-content; color: rgba(255,255,255,.78); font-size: .79rem; }
.site-footer > nav a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.28); }
.footer-bottom p { margin: 0; color: rgba(255,255,255,.56); font-size: .65rem; }

@media (max-width: 1050px) {
    .site-header { align-items: flex-start; }
    .primary-nav { max-width: 500px; }
    .hero { grid-template-columns: 1fr; }
    .hero-copy { border-right: 0; border-bottom: 1px solid var(--ink); }
    .hero-art { min-height: 520px; }
    .filter-controls { grid-template-columns: repeat(2, 1fr); }
    .filter-controls button { align-self: end; }
    .editorial-note { grid-template-columns: 1fr 2fr; }
    .editorial-note > p:last-child { grid-column: 2; }
    .about-manifesto { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 760px) {
    .wrap { width: min(calc(100% - 24px), var(--max)); }
    .site-header { display: block; padding: 15px 12px; }
    .brand { margin-bottom: 13px; }
    .brand-mark { width: 39px; height: 39px; }
    .brand-mark i:nth-child(1), .brand-mark i:nth-child(2) { height: 22px; top: 8px; }
    .brand-mark i:nth-child(1) { left: 9px; }
    .brand-mark i:nth-child(2) { right: 9px; }
    .brand-mark i:nth-child(3) { width: 21px; left: 8px; top: 18px; }
    .primary-nav { justify-content: flex-start; gap: 2px 15px; }
    .primary-nav a { font-size: .76rem; }
    .hero { width: calc(100% - 24px); min-height: 0; margin-top: 12px; }
    .hero-copy { padding: 42px 24px; }
    .hero h1, .page-hero h1, .not-found h1 { font-size: clamp(2.75rem, 14vw, 4.5rem); }
    .hero-facts { gap: 15px; }
    .hero-facts div { display: block; }
    .hero-facts dd { margin-top: 4px; }
    .hero-art { min-height: 360px; }
    .hero-art figcaption { display: block; }
    .hero-art figcaption span { display: block; margin-bottom: 3px; }
    .time-shelf { padding-block: 80px; }
    .time-grid, .compact-times, .walk-instructions, .values { grid-template-columns: 1fr; }
    .time-card { min-height: 270px; }
    .section-heading.split { display: block; }
    .section-heading.split .text-link, .section-heading.split .noncommercial { display: inline-block; margin-top: 12px; }
    .exhibit-grid { grid-template-columns: 1fr; }
    .card-index { margin-bottom: 32px; }
    .card-heading { display: block; }
    .provider { max-width: none; margin-top: 7px; text-align: left; }
    .card-description { min-height: 0; }
    .card-footer { align-items: flex-start; flex-direction: column; }
    .editorial-note { grid-template-columns: 1fr; margin-bottom: 85px; padding: 32px 24px; }
    .editorial-note > p:last-child { grid-column: auto; }
    .page-hero { padding-block: 65px 55px; }
    .compact-times { margin-top: 25px; }
    .filter-intro { grid-template-columns: 1fr; gap: 15px; }
    .filter-controls { grid-template-columns: 1fr; }
    .collection { padding-bottom: 90px; }
    .gallery-row { grid-template-columns: 50px minmax(0, 1fr) 22px; gap: 12px; padding-block: 28px; }
    .gallery-row > strong { display: none; }
    .gallery-number { font-size: 1.4rem; }
    .gallery-row p:last-child { font-size: .82rem; }
    .plain-note, .curator-tip { grid-template-columns: 1fr; gap: 10px; margin-bottom: 80px; }
    .prose-grid { grid-template-columns: 1fr; padding-bottom: 80px; }
    .about-manifesto { padding-block: 60px 80px; }
    .legal article { grid-template-columns: 1fr; gap: 12px; }
    .footer-lead { display: block; }
    .footer-lead > p { margin-top: 25px; text-align: left; }
    .site-footer > nav { grid-template-columns: 1fr 1fr; gap: 40px 25px; }
    .footer-bottom { display: block; }
    .footer-bottom p + p { margin-top: 8px; }
    .error-code { float: none; font-size: 8rem; line-height: .8; }
}

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

@media (prefers-contrast: more) {
    :root { --line: rgba(21, 32, 58, .65); --ink-soft: #2e3544; }
    .badges li { border-width: 2px; }
}
