@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("/assets/fonts/barlow-condensed-800.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  --paper: #f3f0e8;
  --paper-bright: #fbfaf6;
  --gallery: #e9e5dc;
  --concrete: #d8d3c9;
  --ink: #071126;
  --ink-soft: #111d35;
  --charcoal: #17181b;
  --muted: #666b73;
  --vermilion: #c93427;
  --vermilion-bright: #f45a45;
  --blue: #165dd9;
  --yellow: #f3bd16;
  --line: rgba(7, 17, 38, .17);
  --line-light: rgba(255, 255, 255, .2);
  --container: min(1280px, calc(100vw - 64px));
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", Helvetica, Arial, sans-serif;
  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
html, body { max-width: 100%; overflow-x: clip; }
body.lang-ko { word-break: keep-all; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--yellow); outline-offset: 4px; }
.container { width: var(--container); margin-inline: auto; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  transform: translateY(-180%); padding: 10px 14px;
  background: var(--vermilion); color: #fff; font-weight: 800;
}
.skip-link:focus { transform: none; }

.contest-banner { color: #fff; background: var(--vermilion); border-bottom: 1px solid rgba(7, 17, 38, .24); }
.contest-banner-inner {
  display: grid; grid-template-columns: auto auto 1fr auto; min-height: 44px;
  align-items: center; gap: 20px; font-size: .64rem; font-weight: 850;
  letter-spacing: .13em; text-transform: uppercase;
}
.contest-banner-status { align-self: stretch; display: grid; place-items: center; padding-inline: 16px; color: var(--ink); background: var(--yellow); }
.contest-banner-inner strong { font-size: .68rem; letter-spacing: .1em; }
.contest-banner-date { color: rgba(255, 255, 255, .78); }
.contest-banner a { display: flex; align-self: stretch; align-items: center; gap: 28px; padding-inline: 20px; color: #fff; background: var(--ink); }
.contest-banner a i { color: var(--vermilion); font-size: 1.1rem; font-style: normal; transition: transform .2s ease; }
.contest-banner a:hover i { transform: translateX(5px); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  color: #fff; background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.header-inner {
  min-height: 86px; display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand-mark {
  display: grid; place-items: center; width: 50px; height: 50px;
  color: currentColor; border: 2px solid currentColor;
  font-size: 1.35rem; font-weight: 900; letter-spacing: -.08em;
}
.brand-copy strong { display: block; font-size: 1.18rem; letter-spacing: .14em; line-height: 1; }
.brand-copy small {
  display: block; margin-top: 7px; color: rgba(255, 255, 255, .68);
  font-size: .58rem; font-weight: 750; letter-spacing: .19em;
  line-height: 1; text-transform: uppercase;
}
.site-nav { display: flex; justify-content: flex-end; align-items: center; gap: 30px; }
.site-nav a {
  position: relative; padding-block: 31px; color: rgba(255, 255, 255, .82);
  font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 21px;
  height: 2px; background: var(--vermilion); transition: right .2s ease;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.language-switcher { display: flex; align-items: center; gap: 5px; }
.language-switcher a {
  position: relative; padding: 9px; color: rgba(255, 255, 255, .68);
  font-size: .7rem; font-weight: 850; letter-spacing: .1em;
}
.language-switcher a[aria-current="true"] { color: #fff; }
.language-switcher a[aria-current="true"]::after {
  content: ""; position: absolute; right: 8px; bottom: 2px; left: 8px;
  height: 2px; background: var(--vermilion);
}
.menu-button {
  display: none; width: 48px; height: 48px; padding: 0;
  border: 1px solid rgba(255, 255, 255, .35); background: transparent;
}
.menu-button::before, .menu-button::after {
  content: ""; display: block; width: 22px; height: 2px;
  margin: 7px auto; background: #fff; transition: transform .2s ease;
}
.menu-button[aria-expanded="true"]::before { transform: translateY(4.5px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-4.5px) rotate(-45deg); }
body.menu-open { overflow: hidden; }
.mobile-nav-dialog {
  display: none; position: fixed; inset: 0; z-index: 1000;
  width: 100%; max-width: none; height: 100dvh; max-height: none;
  margin: 0; padding: 0; border: 0; color: #fff; background: var(--ink);
}
.mobile-nav-dialog[open] { display: grid; animation: mobile-nav-enter .22s cubic-bezier(.2, .8, .2, 1) both; }
.mobile-nav-dialog::backdrop { background: rgba(7, 17, 38, .62); backdrop-filter: blur(5px); }
.mobile-nav-dialog__surface {
  min-height: 100%; display: grid; grid-template-rows: auto 1fr auto;
  padding: max(22px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(24px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
}
.mobile-nav-dialog__header { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.2); }
.mobile-nav-dialog__header > div { display: grid; gap: 7px; }
.mobile-nav-dialog__eyebrow { color: var(--vermilion); font-size: .58rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.mobile-nav-dialog__header strong { font-size: 1.05rem; letter-spacing: .14em; text-transform: uppercase; }
.mobile-nav-dialog__close {
  position: relative; width: 48px; height: 48px; flex: 0 0 auto; padding: 0;
  border: 1px solid rgba(255,255,255,.35); color: #fff; background: transparent;
}
.mobile-nav-dialog__close::before, .mobile-nav-dialog__close::after {
  content: ""; position: absolute; top: 50%; left: 50%; width: 24px; height: 2px; background: currentColor;
}
.mobile-nav-dialog__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.mobile-nav-dialog__close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.mobile-nav-dialog__nav { align-self: start; display: grid; padding-top: clamp(26px, 7vh, 58px); counter-reset: mobile-nav; }
.mobile-nav-dialog__nav a {
  counter-increment: mobile-nav; min-height: 68px; display: grid; grid-template-columns: 38px 1fr auto;
  align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: clamp(1.55rem, 7vw, 2.2rem); font-weight: 850; letter-spacing: -.025em;
}
.mobile-nav-dialog__nav a::before { content: counter(mobile-nav, decimal-leading-zero); color: rgba(255,255,255,.44); font-size: .62rem; font-weight: 850; letter-spacing: .1em; }
.mobile-nav-dialog__nav a::after { content: "\2192"; color: var(--vermilion); font-size: 1.25rem; }
.mobile-nav-dialog__nav a[aria-current="page"] { color: var(--yellow); }
.mobile-nav-dialog__footer { align-self: end; margin: 24px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.62); font-size: .7rem; letter-spacing: .06em; }
@keyframes mobile-nav-enter { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }

.hero { display: grid; min-height: 740px; background: var(--paper); border-bottom: 1px solid var(--line); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr);
  gap: clamp(42px, 6vw, 94px); align-items: stretch;
}
.hero-copy { align-self: center; padding: clamp(70px, 7vw, 106px) 0 clamp(58px, 6vw, 90px); }
.eyebrow, .section-label, .meta-label, .status {
  color: var(--vermilion); font-size: .68rem; font-weight: 850;
  letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow::after { content: ""; display: block; width: 26px; height: 1px; margin-top: 18px; background: var(--ink); }
.display {
  max-width: 760px; margin: 24px 0 26px; font-family: var(--font-display);
  font-size: clamp(6rem, 9.2vw, 9rem); font-weight: 800;
  letter-spacing: -.035em; line-height: .78; text-transform: uppercase;
}
.display .accent { color: var(--vermilion); }
.hero-summary {
  max-width: 610px; margin: 0; color: #3f4651;
  font-size: clamp(1rem, 1.35vw, 1.15rem); line-height: 1.55;
}
.button-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center;
  gap: 30px; padding: 13px 20px; border: 1px solid var(--ink);
  background: var(--ink); color: #fff; font-size: .72rem; font-weight: 850;
  letter-spacing: .11em; text-transform: uppercase;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.button:not(.secondary)::after { content: "→"; font-size: 1.2rem; line-height: 1; }
.button:hover { transform: translateY(-2px); background: var(--vermilion); border-color: var(--vermilion); }
.button.secondary {
  min-height: 44px; padding: 8px 0 4px; border: 0; border-bottom: 2px solid currentColor;
  background: transparent; color: var(--ink);
}
.button.secondary::after { content: "↗"; font-size: 1rem; }
.button.secondary:hover { color: var(--vermilion); background: transparent; border-color: var(--vermilion); }
.button.disabled { cursor: default; opacity: .58; }
.button.disabled:hover { transform: none; color: #fff; background: var(--ink); border-color: var(--ink); }
.hero-art {
  position: relative; display: grid; min-height: 740px; place-items: center start;
  overflow: hidden; padding: 36px 68px 36px 16px; background-color: #d8d2c7;
  isolation: isolate;
}
.hero-art::before {
  content: ""; position: absolute; inset: 0 0 0 auto; z-index: 0;
  width: 72px; border-left: 1px solid rgba(7, 17, 38, .18);
  background: var(--vermilion);
}
.hero-art img {
  position: relative; z-index: 1;
  width: min(100%, 540px); max-height: 700px; object-fit: contain;
  filter: none; box-shadow: none;
}
.hero-art-caption {
  position: absolute; z-index: 2; right: 0; bottom: 0; left: 16px;
  padding: 12px 15px; color: #fff; background: var(--ink);
  font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}

.current-band { color: #fff; background: var(--ink); }
.current-band-grid {
  display: grid; grid-template-columns: 1.08fr 1.15fr 1.08fr 1.55fr .9fr;
  min-height: 182px;
}
.current-band-title, .current-fact, .current-band-link { padding: 28px 24px; border-right: 1px solid var(--line-light); }
.current-band-title { padding-left: 0; }
.current-band-title h2 {
  margin: 10px 0 0; font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 4.35rem); font-weight: 700;
  letter-spacing: -.025em; line-height: .78; text-transform: uppercase;
}
.current-fact { display: flex; flex-direction: column; justify-content: center; }
.current-fact .meta-label { color: var(--blue); }
.current-fact:nth-of-type(2) .meta-label { color: var(--yellow); }
.current-fact:nth-of-type(3) .meta-label { color: rgba(255, 255, 255, .58); }
.current-fact strong {
  display: block; margin-top: 15px; font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem); font-weight: 600;
  letter-spacing: .02em; line-height: 1; text-transform: uppercase;
}
.current-fact small {
  display: block; margin-top: 10px; color: rgba(255, 255, 255, .6);
  font-size: .69rem; letter-spacing: .05em; line-height: 1.5; text-transform: uppercase;
}
.current-band-link {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border-right: 0; font-size: .7rem; font-weight: 850;
  letter-spacing: .12em; text-transform: uppercase;
}
.current-band-link span:last-child { color: var(--vermilion); font-size: 1.7rem; transition: transform .2s ease; }
.current-band-link:hover span:last-child { transform: translateX(7px); }

.page-hero {
  padding: clamp(80px, 9vw, 134px) 0 clamp(58px, 7vw, 96px);
  background: var(--paper); border-bottom: 1px solid var(--line);
}
.page-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: end; }
.page-title {
  margin: 16px 0 0; font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 10rem); font-weight: 800;
  letter-spacing: -.035em; line-height: .78; text-transform: uppercase;
}
.page-intro { max-width: 590px; margin: 0; color: var(--muted); font-size: 1.13rem; }

.section { padding: clamp(72px, 8vw, 116px) 0; }
.section.gray { background: var(--gallery); }
.section.dark { color: #fff; background: var(--ink); }
.section-head {
  display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px;
  align-items: start; margin-bottom: 48px;
}
.section-title {
  margin: 0; font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.2vw, 6.5rem); font-weight: 700;
  letter-spacing: -.03em; line-height: .82; text-transform: uppercase;
}
.section-copy { max-width: 700px; margin: 12px 0 0; color: var(--muted); font-size: 1rem; }
.dark .section-copy { color: rgba(255, 255, 255, .64); }
.rule { height: 1px; margin: 32px 0; background: var(--line); }

.editorial-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.panel { padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: transparent; }
.panel.dark { padding-inline: 28px; color: #fff; background: var(--ink); border-color: var(--ink); }
.panel.vermilion { padding-inline: 28px; color: #fff; background: var(--vermilion); border-color: var(--vermilion); }
.panel h3 {
  margin: 11px 0 14px; font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.1rem); font-weight: 650;
  letter-spacing: -.015em; line-height: .95; text-transform: uppercase;
}
.panel p { margin: 0; color: var(--muted); }
.panel.dark p, .panel.vermilion p { color: rgba(255, 255, 255, .74); }
.number { color: var(--vermilion); font-weight: 900; }

.exhibition-feature {
  display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.exhibition-info { padding: clamp(40px, 6vw, 82px) clamp(34px, 6vw, 78px) clamp(40px, 6vw, 82px) 0; }
.exhibition-info h2 {
  margin: 16px 0 22px; font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem); font-weight: 750;
  letter-spacing: -.035em; line-height: .78; text-transform: uppercase;
}
.exhibition-info > p { max-width: 620px; color: var(--muted); }
.poster-wrap { position: relative; overflow: hidden; padding: clamp(36px, 6vw, 72px); background: var(--gallery); }
.poster-wrap::after { content: ""; position: absolute; top: 0; right: 28px; width: 18px; height: 100%; background: var(--vermilion); }
.poster-wrap img {
  position: relative; z-index: 1; width: min(100%, 570px); margin-inline: auto;
  box-shadow: 24px 24px 0 rgba(7, 17, 38, .1), 0 24px 60px rgba(7, 17, 38, .18);
}
.fact-list { margin: 30px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.fact-list li { display: grid; grid-template-columns: 110px 1fr; gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.fact-list strong { font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; }
.fact-list span { color: var(--muted); }
.credit-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.credit-list div { padding: 20px 20px 20px 0; border-right: 1px solid var(--line); }
.credit-list div + div { padding-left: 20px; }
.credit-list div:last-child { border-right: 0; }
.credit-list span { display: block; color: var(--muted); font-size: .62rem; letter-spacing: .11em; text-transform: uppercase; }
.credit-list strong { display: block; margin-top: 7px; font-size: .92rem; }

.archive-list { border-top: 1px solid var(--line); }
.archive-item {
  display: grid; grid-template-columns: 145px 1fr auto; gap: 34px;
  align-items: center; padding: 30px 0; border-bottom: 1px solid var(--line);
}
.archive-item .year { color: var(--muted); font-family: var(--font-display); font-size: 1.5rem; font-variant-numeric: tabular-nums; }
.archive-item h3 {
  margin: 0; font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 4.5rem); font-weight: 650;
  letter-spacing: -.025em; line-height: .9; text-transform: uppercase;
}
.archive-item p { margin: 7px 0 0; color: var(--muted); }
.archive-item .arrow { color: var(--vermilion); font-size: 2rem; transition: transform .2s ease; }
.archive-item:hover .arrow { transform: translateX(7px); }
.status { display: inline-block; margin-bottom: 8px; }
.status.past { color: var(--muted); }
.exhibition-card {
  display: grid; grid-template-columns: minmax(260px, .42fr) minmax(0, .58fr);
  min-height: 480px; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); background: var(--paper-bright);
}
.exhibition-card-media { min-height: 400px; overflow: hidden; background: var(--concrete); }
.exhibition-card-media img { width: 100%; height: 100%; object-fit: cover; }
.exhibition-card-media.poster { padding: 32px; background: var(--gallery); }
.exhibition-card-media.poster img { object-fit: contain; object-position: center; box-shadow: 16px 16px 0 rgba(7, 17, 38, .1); }
.exhibition-card-copy { display: flex; flex-direction: column; justify-content: space-between; padding: clamp(34px, 5vw, 64px); }
.exhibition-card-copy h2, .exhibition-card-copy h3 {
  margin: 10px 0 16px; font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem); font-weight: 700;
  letter-spacing: -.035em; line-height: .78; text-transform: uppercase;
}
.exhibition-card-copy h3 { font-size: clamp(3rem, 5vw, 5rem); }
.exhibition-card-copy p { color: var(--muted); }
.exhibition-card + .exhibition-card { margin-top: 42px; }

.program-list { border-top: 1px solid var(--line); }
.program-row { display: grid; grid-template-columns: 86px .9fr 1.1fr; gap: 42px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.program-row h3 {
  margin: 0; font-family: var(--font-display); font-size: 2.25rem;
  font-weight: 650; letter-spacing: -.015em; line-height: 1; text-transform: uppercase;
}
.program-row p { margin: 0; color: var(--muted); }
details.archive-details { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
details.archive-details summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; cursor: pointer; font-weight: 850; list-style: none;
}
details.archive-details summary::-webkit-details-marker { display: none; }
details.archive-details summary::after { content: "+"; color: var(--vermilion); font-size: 1.6rem; }
details.archive-details[open] summary::after { content: "−"; }
.archive-body { padding: 0 0 38px; }
.archive-body .editorial-grid { margin-top: 26px; }

.detail-hero { padding: clamp(58px, 7vw, 100px) 0; }
.detail-grid {
  display: grid; grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 118px); align-items: start;
}
.detail-poster { position: sticky; top: 118px; padding: 26px; background: var(--gallery); }
.detail-poster img { box-shadow: 18px 18px 0 rgba(7, 17, 38, .1), 0 24px 64px rgba(7, 17, 38, .2); }
.detail-copy h1 {
  margin: 16px 0 26px; font-family: var(--font-display);
  font-size: clamp(5rem, 9vw, 9rem); font-weight: 750;
  letter-spacing: -.04em; line-height: .76; text-transform: uppercase;
}
.lede { color: var(--muted); font-size: clamp(1.05rem, 1.45vw, 1.25rem); }
.program-bullets { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.program-bullets li { position: relative; padding: 15px 0 15px 25px; border-bottom: 1px solid var(--line); }
.program-bullets li::before { content: ""; position: absolute; left: 0; top: 24px; width: 7px; height: 7px; background: var(--vermilion); }
.content-block { margin-top: 68px; }
.content-block h2 {
  margin: 0 0 18px; font-family: var(--font-display); font-size: 3rem;
  font-weight: 650; line-height: .9; text-transform: uppercase;
}
.content-block p { color: var(--muted); }
.notice { padding: 28px; border-left: 5px solid var(--yellow); background: var(--paper-bright); }
.notice h3 { margin: 0 0 7px; }
.notice p { margin: 0; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; }
.contact-link { display: block; padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-link small { display: block; color: var(--muted); font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; }
.contact-link strong {
  display: block; margin-top: 7px; font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.5rem); font-weight: 650;
  letter-spacing: -.015em; line-height: 1;
}

.site-footer { padding: 70px 0 28px; color: #fff; background: var(--ink); border-top: 1px solid var(--line-light); }
.footer-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 72px; }
.site-footer .brand-mark { color: #fff; }
.site-footer .brand-copy small { color: rgba(255, 255, 255, .55); }
.network-title { margin-bottom: 17px; color: rgba(255, 255, 255, .5); font-size: .66rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.network-links { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-light); }
.network-links a { padding: 20px 16px 20px 0; border-bottom: 1px solid var(--line-light); }
.network-links a:hover { color: var(--yellow); }
.network-links strong { display: block; }
.network-links small { display: block; margin-top: 5px; color: rgba(255, 255, 255, .5); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 24px; margin-top: 52px;
  padding-top: 22px; border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, .48); font-size: .7rem;
}

body.lang-ko .display,
body.lang-ko .page-title,
body.lang-ko .section-title,
body.lang-ko .exhibition-info h2,
body.lang-ko .exhibition-card-copy h2,
body.lang-ko .exhibition-card-copy h3,
body.lang-ko .archive-item h3,
body.lang-ko .program-row h3,
body.lang-ko .detail-copy h1,
body.lang-ko .content-block h2,
body.lang-ko .panel h3,
body.lang-ko .current-band-title h2,
body.lang-ko .current-fact strong {
  font-family: var(--font-body); font-weight: 900;
  letter-spacing: -.045em; line-height: .96; text-transform: none;
}
body.lang-ko .display { font-size: clamp(4rem, 7.3vw, 7.5rem); line-height: .96; }
body.lang-ko .page-title { font-size: clamp(3.8rem, 7.6vw, 7.5rem); }
body.lang-ko .section-title { font-size: clamp(2.8rem, 5.4vw, 5.5rem); }

@media (max-width: 1100px) {
  :root { --container: min(100vw - 48px, 1280px); }
  .site-nav { gap: 18px; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr); gap: 38px; }
  .current-band-grid { grid-template-columns: .9fr 1fr 1fr 1.25fr; }
  .current-band-link { grid-column: 1 / -1; min-height: 70px; padding-left: 0; border-top: 1px solid var(--line-light); }
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .menu-button { display: block; justify-self: end; }
  .header-inner > .site-nav { display: none; }
  .hero-grid, .page-hero-grid, .section-head, .exhibition-feature, .detail-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { gap: 0; }
  .hero-copy { padding: 70px 0 52px; }
  .hero-art {
    min-height: 650px; margin-inline: calc((100vw - var(--container)) / -2);
    padding-left: calc((100vw - var(--container)) / 2);
  }
  .page-hero-grid { gap: 34px; }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .span-4, .span-5, .span-6, .span-7, .span-8 { grid-column: span 1; }
  .exhibition-card { grid-template-columns: .8fr 1.2fr; }
  .exhibition-info { padding-right: 0; }
  .detail-poster { position: relative; top: auto; max-width: 560px; }
  .footer-grid { gap: 42px; }
}

@media (max-width: 680px) {
  :root { --container: min(100% - 40px, 1280px); }
  .header-inner { min-height: 72px; gap: 10px; }
  .contest-banner-inner { grid-template-columns: auto 1fr auto; min-height: 40px; gap: 10px; font-size: .56rem; letter-spacing: .09em; }
  .contest-banner-status { padding-inline: 9px; }
  .contest-banner-inner strong { font-size: .58rem; }
  .contest-banner-date { display: none; }
  .contest-banner a { gap: 8px; padding-inline: 10px; }
  .brand { gap: 11px; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy small { display: none; }
  .language-switcher { gap: 0; }
  .language-switcher a { padding-inline: 6px; }
  .menu-button { width: 44px; height: 44px; }
  .hero-copy { padding: 52px 0 36px; }
  .eyebrow { font-size: .62rem; line-height: 1.45; }
  .display { margin-block: 22px; font-size: clamp(5rem, 21vw, 7rem); line-height: .79; }
  body.lang-ko .display { font-size: clamp(3.25rem, 14vw, 5.2rem); line-height: .98; }
  .hero-summary { font-size: .98rem; }
  .button-row { gap: 16px; margin-top: 24px; }
  .button { min-height: 48px; }
  .hero-art {
    min-height: 0; margin-inline: -15px; padding: 32px 48px 28px 16px;
  }
  .hero-art::before { width: 42px; }
  .hero-art img {
    width: 100%; max-height: none;
    filter: none; box-shadow: none;
  }
  .hero-art-caption { left: 16px; font-size: .58rem; }
  .current-band-grid { grid-template-columns: 1fr; padding-block: 18px; }
  .current-band-title, .current-fact, .current-band-link {
    padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line-light);
  }
  .current-band-title h2 { font-size: 3.8rem; }
  .current-fact strong { font-size: 1.8rem; }
  .current-band-link { grid-column: auto; border-top: 0; border-bottom: 0; }
  .page-hero { padding: 68px 0 54px; }
  .page-title { font-size: clamp(4.5rem, 20vw, 7rem); }
  body.lang-ko .page-title { font-size: clamp(3rem, 13vw, 4.7rem); }
  .page-intro { font-size: 1rem; }
  .section { padding: 70px 0; }
  .section-head { gap: 24px; margin-bottom: 36px; }
  .section-title { font-size: clamp(3.2rem, 15vw, 5rem); }
  body.lang-ko .section-title { font-size: clamp(2.4rem, 10vw, 3.8rem); }
  .editorial-grid, .credit-list, .network-links { grid-template-columns: 1fr; }
  .panel { padding: 25px 0; }
  .panel.dark, .panel.vermilion { padding-inline: 24px; }
  .credit-list div, .credit-list div + div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .credit-list div:last-child { border-bottom: 0; }
  .archive-item { grid-template-columns: 1fr auto; gap: 12px; }
  .archive-item .year { grid-column: 1 / -1; }
  .exhibition-card { grid-template-columns: 1fr; }
  .exhibition-card-media { min-height: 0; aspect-ratio: 4 / 5; }
  .exhibition-card-copy { padding: 34px 24px; }
  .exhibition-card-copy h2, .exhibition-card-copy h3 { font-size: 4rem; }
  body.lang-ko .exhibition-card-copy h2, body.lang-ko .exhibition-card-copy h3 { font-size: 2.6rem; }
  .program-row { grid-template-columns: 48px 1fr; gap: 16px; }
  .program-row h3 { font-size: 1.9rem; }
  .program-row p { grid-column: 2; }
  .fact-list li { grid-template-columns: 88px 1fr; gap: 14px; }
  .poster-wrap { margin-inline: -15px; padding-inline: 30px; }
  .poster-wrap::after { right: 12px; width: 9px; }
  .detail-poster { padding: 20px; }
  .detail-copy h1 { font-size: clamp(4.5rem, 20vw, 7rem); }
  body.lang-ko .detail-copy h1 { font-size: clamp(3rem, 13vw, 4.8rem); }
  .footer-bottom { display: block; }
  .footer-bottom div + div { margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

/* V3 — complete editorial system, derived from the approved ImageGen page mockups. */
::selection { color: #fff; background: var(--vermilion); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.editorial-link {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 42px;
  padding: 8px 0; border-bottom: 1px solid currentColor; font-size: .68rem;
  font-weight: 850; letter-spacing: .14em; text-transform: uppercase;
}
.editorial-link span:last-child { color: var(--vermilion); font-size: 1.2rem; transition: transform .2s ease; }
.editorial-link:hover span:last-child { transform: translateX(6px); }
.editorial-link.light { color: #fff; }

/* Homepage: practice / presentation / planning */
.home-practice { padding: clamp(76px, 8vw, 118px) 0 0; background: var(--paper); }
.home-section-kicker {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  margin-bottom: 36px;
}
.practice-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(150px, .43fr);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.practice-item { position: relative; min-height: 430px; padding: 42px 34px 48px 0; border-right: 1px solid var(--line); }
.practice-item + .practice-item { padding-left: 34px; }
.practice-number {
  display: block; font-family: var(--font-display); font-size: clamp(6.5rem, 9vw, 9.5rem);
  font-weight: 700; letter-spacing: -.04em; line-height: .72;
}
.practice-coral .practice-number { color: var(--vermilion); }
.practice-blue .practice-number { color: var(--blue); }
.practice-yellow .practice-number { color: #d79d00; }
.practice-item h3 {
  margin: 42px 0 20px; font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 4.1rem);
  font-weight: 700; letter-spacing: -.025em; line-height: .82; text-transform: uppercase;
}
.practice-item h3::after { content: ""; display: block; width: 30px; height: 3px; margin-top: 18px; background: currentColor; }
.practice-item p { max-width: 280px; margin: 0; color: #4f5560; font-size: .9rem; }
.practice-item::after {
  content: ""; position: absolute; right: 14px; bottom: 18px; width: 12px; height: 12px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
}
.practice-coral::after { color: var(--vermilion); }
.practice-blue::after { color: var(--blue); }
.practice-yellow::after { color: #d79d00; }
.practice-art { position: relative; min-height: 430px; margin: 0; overflow: hidden; }
.practice-art img { width: 100%; height: 100%; object-fit: cover; object-position: 57% center; }
.practice-art figcaption {
  position: absolute; inset: auto 0 0; padding: 14px 16px; color: #fff; background: rgba(7, 17, 38, .94);
  font-size: .58rem; letter-spacing: .1em; text-transform: uppercase;
}
.practice-art figcaption span, .practice-art figcaption strong { display: block; }
.practice-art figcaption strong { margin-top: 3px; }

/* Homepage: next contest */
.contest-stage { padding: clamp(86px, 9vw, 132px) 0; background: var(--paper-bright); border-bottom: 1px solid var(--line); }
.contest-grid { display: grid; grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); gap: clamp(56px, 8vw, 126px); }
.contest-heading { align-self: start; }
.contest-heading h2 {
  margin: 28px 0 14px; font-family: var(--font-display); font-size: clamp(6.2rem, 11vw, 11rem);
  font-weight: 750; letter-spacing: -.045em; line-height: .65; text-transform: uppercase;
}
.contest-heading h2 span, .contest-heading h2 strong { display: block; }
.contest-heading h2 strong { margin-top: .13em; }
.contest-heading p { margin: 22px 0 0; font-size: .72rem; font-weight: 850; letter-spacing: .17em; text-transform: uppercase; }
.contest-content { align-self: center; }
.contest-intro { max-width: 650px; margin: 0 0 54px; font-size: 1.05rem; }
.contest-timeline {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin: 0; padding: 0; list-style: none;
}
.contest-timeline::before { content: ""; position: absolute; top: 18px; right: 16%; left: 16%; border-top: 1px solid var(--line); }
.contest-timeline li { position: relative; z-index: 1; padding: 0 24px; text-align: center; }
.contest-timeline li:first-child { padding-left: 0; }
.contest-timeline li:last-child { padding-right: 0; }
.contest-timeline li > span {
  display: grid; width: 38px; height: 38px; margin: 0 auto 22px; place-items: center;
  border-radius: 50%; color: #fff; background: var(--vermilion); font-weight: 850;
}
.contest-timeline li:nth-child(2) > span { background: var(--blue); }
.contest-timeline li:nth-child(3) > span { color: var(--ink); background: var(--yellow); }
.contest-timeline strong, .contest-timeline time { display: block; text-transform: uppercase; }
.contest-timeline strong { font-size: .65rem; letter-spacing: .13em; }
.contest-timeline time { margin-top: 8px; font-family: var(--font-display); font-size: 1.28rem; font-weight: 650; line-height: 1.15; }
.contest-note { margin: 48px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

/* Homepage: immersive archive */
.home-archive { position: relative; min-height: 730px; overflow: hidden; color: #fff; background: var(--ink); }
.home-archive-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home-archive::after { content: ""; position: absolute; inset: 0; background: rgba(7, 17, 38, .2); pointer-events: none; }
.home-archive-inner { position: relative; z-index: 1; display: flex; min-height: 730px; align-items: center; }
.home-archive-card { width: min(520px, 100%); padding: clamp(40px, 6vw, 76px); background: rgba(7, 17, 38, .94); }
.home-archive-card .section-label { color: var(--yellow); }
.home-archive-card h2 {
  margin: 22px 0; font-family: var(--font-display); font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 700; letter-spacing: -.035em; line-height: .7; text-transform: uppercase;
}
.home-archive-card p { color: rgba(255, 255, 255, .72); }
.home-archive-card .archive-meta { color: var(--yellow); font-family: var(--font-display); font-size: 1.55rem; text-transform: uppercase; }

/* Exhibitions index */
.archive-page-hero { padding: clamp(82px, 9vw, 132px) 0 74px; border-bottom: 1px solid var(--line); }
.archive-page-intro { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(320px, .78fr); gap: 82px; align-items: end; }
.archive-page-intro h1 {
  max-width: 900px; margin: 24px 0 0; font-family: var(--font-display);
  font-size: clamp(6rem, 10.3vw, 10.8rem); font-weight: 750; letter-spacing: -.04em;
  line-height: .72; text-transform: uppercase;
}
.archive-page-intro h1 span, .archive-page-intro h1 strong { display: block; }
.archive-page-intro h1 strong { color: var(--vermilion); }
.archive-page-intro p { margin: 0; padding-bottom: 8px; color: #3f4651; font-size: 1.03rem; }
.archive-current-section, .archive-history-section { padding: clamp(70px, 8vw, 112px) 0; }
.archive-current-section { background: var(--paper-bright); }
.archive-section-label {
  display: flex; justify-content: space-between; gap: 24px; margin-bottom: 28px; padding-bottom: 13px;
  border-bottom: 1px solid var(--line); color: var(--muted); font-size: .66rem; font-weight: 800;
  letter-spacing: .15em; text-transform: uppercase;
}
.archive-current { display: grid; grid-template-columns: minmax(330px, .92fr) minmax(0, 1.08fr); gap: clamp(56px, 8vw, 122px); align-items: center; }
.archive-current-poster { position: relative; padding: 34px; background: var(--gallery); }
.archive-current-poster::after { content: ""; position: absolute; top: 20px; right: 18px; width: 10px; height: 70px; background: var(--vermilion); }
.archive-current-poster img { max-height: 790px; margin-inline: auto; box-shadow: 18px 18px 0 rgba(7, 17, 38, .11), 0 28px 60px rgba(7, 17, 38, .18); }
.archive-current-copy h2 {
  margin: 28px 0; font-family: var(--font-display); font-size: clamp(6rem, 10vw, 10.5rem);
  font-weight: 750; letter-spacing: -.045em; line-height: .66; text-transform: uppercase;
}
.archive-date { margin: 0; color: var(--vermilion); font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 4rem); font-weight: 700; text-transform: uppercase; }
.archive-venue { max-width: 470px; margin: 22px 0 0; color: var(--blue); font-size: 1.15rem; font-weight: 800; text-transform: uppercase; }
.archive-program { margin: 36px 0; padding: 26px 0; list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.archive-program li { font-size: .86rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.archive-program li + li { margin-top: 7px; }
.archive-history-section { background: var(--paper); }
.archive-artwork { display: block; height: min(48vw, 620px); overflow: hidden; }
.archive-artwork img { width: 100%; height: 100%; object-fit: cover; object-position: center 50%; transition: transform .6s ease; }
.archive-artwork:hover img { transform: scale(1.015); }
.archive-record-row { display: grid; grid-template-columns: 110px 1fr auto auto; gap: 42px; align-items: center; padding: 32px 0 44px; }
.archive-record-row > strong { color: var(--blue); font-family: var(--font-display); font-size: 2.6rem; }
.archive-record-row > div > span { color: var(--vermilion); font-size: .68rem; font-weight: 850; }
.archive-record-row h2 { margin: 3px 0; font-family: var(--font-display); font-size: clamp(3rem, 5.6vw, 5.6rem); line-height: .82; text-transform: uppercase; }
.archive-record-row small { color: var(--muted); }
.archive-record-row time { color: var(--vermilion); font-family: var(--font-display); font-size: 1.65rem; font-weight: 700; text-transform: uppercase; }
.archive-index { border-top: 1px solid var(--line); }
.archive-index-head, .archive-index a { display: grid; grid-template-columns: .55fr 1.55fr 1fr .8fr .48fr; gap: 24px; align-items: center; }
.archive-index-head { padding: 14px 0; color: var(--muted); font-size: .58rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.archive-index a { padding: 23px 0; border-top: 1px solid var(--line); }
.archive-index a:last-child { border-bottom: 1px solid var(--line); }
.archive-index a:hover { color: var(--vermilion); }
.archive-index b { margin-right: 11px; color: var(--blue); font-size: .68rem; }
.archive-index time, .archive-index em, .archive-index i { font-size: .72rem; font-style: normal; font-weight: 750; text-transform: uppercase; }
.archive-index em { color: var(--blue); }
.archive-index em.past { color: var(--muted); }
.archive-index i { text-align: right; }
.exhibitions-next { padding: 72px 0; color: #fff; background: var(--ink); }
.exhibitions-next .container { display: grid; grid-template-columns: .55fr 1.45fr; gap: 72px; }
.exhibitions-next h2 { margin: 0; font-family: var(--font-display); font-size: clamp(4rem, 7vw, 7rem); line-height: .75; text-transform: uppercase; }
.exhibitions-next p { max-width: 660px; color: rgba(255, 255, 255, .64); }
.exhibitions-next .button { color: var(--ink); background: #fff; border-color: #fff; }

/* Exhibition records */
.record-hero { padding: 42px 0 clamp(70px, 8vw, 118px); background: var(--paper-bright); }
.record-overline {
  display: flex; justify-content: space-between; gap: 30px; padding: 18px 0 34px;
  border-bottom: 1px solid var(--line); font-size: .64rem; font-weight: 850;
  letter-spacing: .14em; text-transform: uppercase;
}
.record-overline b { color: var(--vermilion); }
.record-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: clamp(58px, 8vw, 126px); align-items: center; padding-top: 54px; }
.record-title-block h1 {
  margin: 0 0 54px; font-family: var(--font-display); font-size: clamp(8rem, 13vw, 13rem);
  font-weight: 750; letter-spacing: -.05em; line-height: .64; text-transform: uppercase;
}
.record-title-block h1 span, .record-title-block h1 strong { display: block; }
.record-title-block h1 strong { margin-top: .13em; color: var(--vermilion); }
.record-ledger { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.record-ledger li { display: grid; grid-template-columns: 150px 1fr; gap: 28px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.record-ledger strong { font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.record-ledger span { font-size: .82rem; font-weight: 700; text-transform: uppercase; }
.record-poster { margin: 0; padding: 36px; background: var(--gallery); }
.record-poster img { max-height: 850px; margin-inline: auto; box-shadow: 22px 22px 0 rgba(7, 17, 38, .11), 0 30px 70px rgba(7, 17, 38, .19); }
.record-poster.imagegen-poster { padding: 18px 0 0; background: transparent; }
.record-poster.imagegen-poster a { display: block; }
.record-poster.imagegen-poster img { max-height: 890px; box-shadow: none; }
.record-poster figcaption, .record-artwork figcaption, .archive-record-title figcaption {
  margin-top: 18px; color: var(--muted); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase;
}
.record-credits { color: #fff; background: var(--ink); }
.record-credits .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.record-credits .container > div { min-height: 154px; padding: 34px 36px; border-right: 1px solid var(--line-light); }
.record-credits .container > div:first-child { padding-left: 0; }
.record-credits .container > div:last-child { border-right: 0; }
.record-credits span { display: block; color: rgba(255, 255, 255, .55); font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.record-credits strong { display: block; margin-top: 18px; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 3rem); text-transform: uppercase; }
.record-story { padding: clamp(82px, 9vw, 132px) 0; }
.record-story-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr); gap: clamp(58px, 8vw, 126px); align-items: start; }
.record-story h2 {
  margin: 26px 0; font-family: var(--font-display); font-size: clamp(4rem, 6.6vw, 6.7rem);
  font-weight: 700; letter-spacing: -.035em; line-height: .76; text-transform: uppercase;
}
.record-lede { color: var(--vermilion); font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 3.3rem); font-weight: 650; line-height: .98; }
.record-story article > p:not(.record-lede) { color: var(--muted); }
.record-artwork { margin: 0; }
.record-artwork img { width: 100%; min-height: 560px; object-fit: cover; }
.record-artwork figcaption { display: flex; justify-content: space-between; gap: 24px; }
.record-artwork figcaption strong { color: var(--vermilion); }
.record-actions { padding: clamp(72px, 8vw, 112px) 0; background: var(--gallery); border-top: 1px solid var(--line); }
.record-actions > .container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 9vw, 140px); }
.record-actions h2 { margin: 24px 0 16px; font-family: var(--font-display); font-size: clamp(3.8rem, 6vw, 6rem); line-height: .77; text-transform: uppercase; }
.record-actions p { color: var(--muted); }
.record-actions code { display: block; margin-top: 24px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow-wrap: anywhere; }
.record-next { border-top: 1px solid var(--line); }
.record-next a { display: grid; grid-template-columns: 1fr auto; padding: 25px 0; border-bottom: 1px solid var(--line); }
.record-next span, .record-next strong { display: block; }
.record-next span { font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; }
.record-next strong { grid-column: 1; margin-top: 7px; font-family: var(--font-display); font-size: 2.25rem; text-transform: uppercase; }
.record-next i { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--vermilion); font-size: 1.8rem; font-style: normal; }

/* Past exhibition record */
.archive-record-hero { padding: 42px 0 0; background: var(--paper-bright); }
.archive-record-title { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(54px, 8vw, 120px); align-items: center; padding: 64px 0; }
.archive-record-title h1 { margin: 25px 0; font-family: var(--font-display); font-size: clamp(7rem, 12vw, 12rem); line-height: .64; text-transform: uppercase; }
.archive-record-title p { max-width: 470px; color: var(--muted); font-size: 1.05rem; }
.archive-record-title figure { margin: 0; }
.archive-record-title figure img { width: 100%; max-height: 720px; object-fit: cover; }
.archive-record-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; color: #fff; background: var(--ink); }
.archive-record-facts li { min-height: 138px; padding: 30px; border-right: 1px solid var(--line-light); }
.archive-record-facts li:last-child { border-right: 0; }
.archive-record-facts strong, .archive-record-facts span { display: block; }
.archive-record-facts strong { color: var(--yellow); font-size: .62rem; letter-spacing: .13em; text-transform: uppercase; }
.archive-record-facts span { margin-top: 14px; font-size: .78rem; font-weight: 700; text-transform: uppercase; }
.archive-story { background: var(--paper); }
.archive-competition { padding: clamp(36px, 5vw, 64px); color: #fff; background: var(--ink); }
.archive-competition h3 { margin: 22px 0; font-family: var(--font-display); font-size: clamp(3.6rem, 5.5vw, 5.6rem); line-height: .78; text-transform: uppercase; }
.archive-competition p { color: rgba(255, 255, 255, .66) !important; }
.record-score { display: grid; grid-template-columns: repeat(2, 1fr); margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.record-score li { padding: 25px 0; }
.record-score li + li { padding-left: 24px; border-left: 1px solid var(--line-light); }
.record-score strong, .record-score span { display: block; }
.record-score strong { color: var(--vermilion); font-family: var(--font-display); font-size: 4rem; line-height: 1; }
.record-score span { color: rgba(255, 255, 255, .7); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.record-awards { color: var(--yellow) !important; font-weight: 800; text-transform: uppercase; }

/* Shared finishing details */
.page-hero-grid { position: relative; }
.page-hero-grid::before { content: attr(data-index); position: absolute; top: -42px; left: 0; color: var(--vermilion); font-family: var(--font-display); font-size: 1.1rem; }
.program-row .number { font-family: var(--font-display); font-size: 2.4rem; line-height: 1; }
.program-row:nth-child(3n + 2) .number { color: var(--blue); }
.program-row:nth-child(3n) .number { color: #c28d00; }
.site-footer { padding-top: clamp(68px, 8vw, 110px); }
.site-footer .footer-grid { align-items: end; }
.site-footer .footer-grid > div:first-child .brand { align-items: flex-end; }
.site-footer .footer-grid > div:first-child .brand-mark { width: 68px; height: 68px; color: var(--vermilion); font-size: 1.9rem; }
.site-footer .footer-grid > div:first-child .brand-copy strong { font-family: var(--font-display); font-size: clamp(3.2rem, 6vw, 6.2rem); letter-spacing: -.02em; line-height: .68; }
.site-footer .footer-grid > div:first-child .brand-copy small { margin-top: 13px; color: var(--vermilion); }
.network-links a { position: relative; }
.network-links a::after { content: "↗"; position: absolute; top: 21px; right: 14px; color: var(--vermilion); }
.ddn-footer-links a.is-current,
.ddn-footer-links a[aria-current="page"] {
  color: #fff;
  box-shadow: inset 0 -2px 0 var(--vermilion);
}
.ddn-footer-links a.is-current small,
.ddn-footer-links a[aria-current="page"] small { color: rgba(255, 255, 255, .74); }

body.lang-ko .practice-item h3,
body.lang-ko .contest-heading h2,
body.lang-ko .home-archive-card h2,
body.lang-ko .archive-page-intro h1,
body.lang-ko .archive-current-copy h2,
body.lang-ko .archive-record-row h2,
body.lang-ko .exhibitions-next h2,
body.lang-ko .record-title-block h1,
body.lang-ko .record-story h2,
body.lang-ko .record-actions h2,
body.lang-ko .archive-record-title h1,
body.lang-ko .archive-competition h3,
body.lang-ko .record-next strong {
  font-family: var(--font-body); font-weight: 900; letter-spacing: -.045em; line-height: .94; text-transform: none;
}
body.lang-ko .archive-page-intro h1 { font-size: clamp(4.2rem, 8vw, 8rem); }
body.lang-ko .record-title-block h1 { font-size: clamp(5.5rem, 10vw, 9.5rem); }

@media (max-width: 1100px) {
  .practice-grid { grid-template-columns: repeat(3, 1fr); }
  .practice-art { grid-column: 1 / -1; min-height: 280px; }
  .practice-art img { object-position: center 56%; }
  .archive-record-row { grid-template-columns: 90px 1fr auto; }
  .archive-record-row .editorial-link { grid-column: 2 / -1; justify-self: start; }
  .record-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .8fr); }
}

@media (max-width: 980px) {
  .contest-grid, .archive-page-intro, .record-hero-grid, .record-story-grid, .archive-record-title, .record-actions > .container { grid-template-columns: 1fr; }
  .contest-heading h2 { font-size: clamp(7rem, 18vw, 10rem); }
  .contest-heading h2 span, .contest-heading h2 strong { display: inline; }
  .contest-heading h2 strong { margin-left: .12em; }
  .archive-page-intro { gap: 38px; }
  .archive-current { grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: 48px; }
  .record-poster { max-width: 620px; margin-inline: auto; }
  .archive-record-title figure { order: -1; }
  .archive-record-facts { grid-template-columns: repeat(2, 1fr); }
  .record-artwork img { min-height: 0; }
}

@media (max-width: 680px) {
  .home-section-kicker { align-items: flex-start; }
  .home-section-kicker .editorial-link { display: none; }
  .practice-grid { grid-template-columns: 1fr; }
  .practice-item, .practice-item + .practice-item { display: grid; grid-template-columns: 116px 1fr; gap: 0 18px; min-height: 0; padding: 26px 8px 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .practice-item > *, .contest-content, .contest-timeline li > div { min-width: 0; }
  .practice-item p, .contest-timeline time { overflow-wrap: anywhere; }
  .practice-number { grid-row: 1 / 3; font-size: 6.5rem; }
  .practice-item h3 { margin: 7px 0 8px; font-size: 2.6rem; }
  .practice-item h3::after { display: none; }
  .practice-item p { font-size: .84rem; }
  .practice-item::after { right: 4px; bottom: 14px; }
  .practice-art { grid-column: auto; min-height: 260px; }
  .contest-stage { padding-block: 72px; }
  .contest-grid { gap: 42px; }
  .contest-heading h2 { font-size: clamp(6.2rem, 27vw, 9rem); line-height: .65; }
  .contest-heading h2 span, .contest-heading h2 strong { display: block; margin-left: 0; }
  .contest-timeline { display: grid; grid-template-columns: 1fr; gap: 0; padding-left: 0; }
  .contest-timeline::before { top: 18px; right: auto; bottom: 18px; left: 18px; border-top: 0; border-left: 1px solid var(--line); }
  .contest-timeline li, .contest-timeline li:first-child, .contest-timeline li:last-child { display: grid; grid-template-columns: 38px 1fr; gap: 22px; padding: 0 0 28px; text-align: left; }
  .contest-timeline li > span { margin: 0; }
  .contest-timeline time { font-size: 1.18rem; }
  .contest-note { margin-top: 12px; }
  .home-archive, .home-archive-inner { min-height: 620px; }
  .home-archive-card { align-self: end; width: calc(100% - 18px); margin-bottom: 18px; padding: 34px 28px; }
  .home-archive-card h2 { font-size: 4.8rem; }
  .archive-page-hero { padding: 66px 0 54px; }
  .archive-page-intro h1 { font-size: clamp(4.8rem, 21vw, 7rem); }
  body.lang-ko .archive-page-intro h1 { font-size: 3.5rem; }
  .archive-current-section, .archive-history-section { padding-block: 66px; }
  .archive-current { grid-template-columns: 1fr; gap: 46px; }
  .archive-current-poster { padding: 24px; }
  .archive-current-copy h2 { font-size: 6rem; }
  body.lang-ko .archive-current-copy h2 { font-size: 3.8rem; }
  .archive-record-row { grid-template-columns: 70px 1fr; gap: 18px; }
  .archive-record-row > time, .archive-record-row .editorial-link { grid-column: 2; }
  .archive-index-head { display: none; }
  .archive-index a { grid-template-columns: 70px 1fr auto; gap: 14px; }
  .archive-index a time { grid-column: 2; }
  .archive-index a em { grid-column: 2; }
  .archive-index a i { grid-column: 3; grid-row: 1 / 4; }
  .exhibitions-next .container { grid-template-columns: 1fr; gap: 26px; }
  .record-hero { padding-top: 16px; }
  .record-overline { padding-bottom: 24px; font-size: .57rem; }
  .record-overline span:last-child { text-align: right; }
  .record-title-block h1 { font-size: clamp(6rem, 27vw, 9rem); }
  body.lang-ko .record-title-block h1 { font-size: 4.6rem; }
  .record-ledger li { grid-template-columns: 100px 1fr; gap: 14px; }
  .record-poster { padding: 24px; }
  .record-credits .container { grid-template-columns: 1fr; padding-block: 14px; }
  .record-credits .container > div, .record-credits .container > div:first-child { min-height: 0; padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .record-credits .container > div:last-child { border-bottom: 0; }
  .record-story { padding-block: 72px; }
  .record-story h2 { font-size: 4.2rem; }
  body.lang-ko .record-story h2 { font-size: 3.2rem; }
  .record-lede { font-size: 2rem; }
  .record-artwork figcaption { display: block; }
  .record-artwork figcaption span { display: block; margin-top: 4px; }
  .record-actions > .container { gap: 64px; }
  .archive-record-title { padding: 44px 0; }
  .archive-record-title h1 { font-size: 5.9rem; }
  body.lang-ko .archive-record-title h1 { font-size: 4rem; }
  .archive-record-facts { grid-template-columns: 1fr; margin-inline: -15px; }
  .archive-record-facts li { min-height: 0; padding: 22px 15px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .archive-competition { margin-inline: -15px; padding: 34px 24px; }
  .record-score strong { font-size: 3.3rem; }
  .site-footer .footer-grid > div:first-child .brand-mark { width: 54px; height: 54px; }
  .site-footer .footer-grid > div:first-child .brand-copy strong { font-size: 3.5rem; }
  body.lang-ko .contest-heading h2 { font-size: clamp(4rem, 18vw, 5.2rem); line-height: .86; }
  body.lang-ko .home-archive-card h2 { font-size: 3.65rem; line-height: .94; }
  body.lang-ko .practice-item p, body.lang-ko .contest-intro, body.lang-ko .contest-note { word-break: normal; overflow-wrap: anywhere; }
}

/* V4 homepage refinement — calmer paper/navy/coral hierarchy from the approved ImageGen study. */
body[data-page="home"] {
  --home-paper: #f6f2e9;
  --home-rule: rgba(7, 17, 38, .2);
  background: var(--home-paper);
}
body[data-page="home"] .contest-banner-inner { min-height: 44px; gap: 18px; }
body[data-page="home"] .contest-banner-status { padding-inline: 16px; color: var(--ink); background: var(--yellow); }
body[data-page="home"] .contest-banner-date { color: rgba(255, 255, 255, .84); }
body[data-page="home"] .contest-banner a { gap: 18px; padding-inline: 16px; background: transparent; border-left: 1px solid rgba(255, 255, 255, .24); }
body[data-page="home"] .header-inner { min-height: 76px; }
body[data-page="home"] .header-inner > .brand .brand-mark { width: 44px; height: 44px; font-size: 1.15rem; }
body[data-page="home"] .header-inner > .brand .brand-copy strong { font-size: 1.08rem; }
body[data-page="home"] .site-nav a { padding-block: 26px; }
body[data-page="home"] .site-nav a::after { bottom: 17px; }

body[data-page="home"] .hero { min-height: 0; background: var(--home-paper); }
body[data-page="home"] .hero-grid {
  min-height: 720px; grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(54px, 7vw, 112px); align-items: center;
}
body[data-page="home"] .hero-copy { padding: clamp(76px, 8vw, 118px) 0; }
body[data-page="home"] .eyebrow { font-size: .64rem; letter-spacing: .17em; }
body[data-page="home"] .eyebrow::after { width: 24px; margin-top: 17px; background: var(--vermilion); }
body[data-page="home"] .display {
  max-width: 690px; margin: 30px 0 30px; color: var(--ink);
  font-size: clamp(5.6rem, 8.35vw, 8.45rem); line-height: .82;
}
body[data-page="home"] .display .accent { color: var(--ink); }
body[data-page="home"] .display .accent-dot { color: var(--vermilion); }
body[data-page="home"] .hero-summary { max-width: 560px; color: #454a52; font-size: 1.03rem; line-height: 1.68; }
body[data-page="home"] .hero-copy .button:not(.secondary) { background: var(--vermilion); border-color: var(--vermilion); }
body[data-page="home"] .hero-copy .button:not(.secondary):hover { background: var(--ink); border-color: var(--ink); }
body[data-page="home"] .hero-art {
  display: flex; min-height: 0; overflow: visible; align-items: center; justify-content: center;
  flex-direction: column; padding: 54px 0 42px; background: transparent; isolation: auto;
}
body[data-page="home"] .hero-art::before { display: none; }
body[data-page="home"] .hero-art img { width: min(100%, 470px); max-height: 640px; object-fit: contain; }
body[data-page="home"] .hero-art-caption {
  position: static; width: min(100%, 470px); margin-top: 16px; padding: 12px 0 0;
  color: var(--ink); background: transparent; border-top: 1px solid var(--home-rule);
  font-size: .58rem; letter-spacing: .12em;
}

body[data-page="home"] .current-band { color: var(--ink); background: var(--home-paper); border-bottom: 1px solid var(--home-rule); }
body[data-page="home"] .current-band-grid { grid-template-columns: 1.1fr .9fr 1.05fr 1.45fr .8fr; min-height: 144px; border-top: 1px solid var(--home-rule); }
body[data-page="home"] .current-band-title,
body[data-page="home"] .current-fact,
body[data-page="home"] .current-band-link { padding: 24px 22px; border-color: var(--home-rule); }
body[data-page="home"] .current-band-title { padding-left: 0; }
body[data-page="home"] .current-band-title h2 { margin-top: 12px; font-size: clamp(2rem, 3vw, 3.05rem); line-height: .82; }
body[data-page="home"] .current-fact .meta-label,
body[data-page="home"] .current-fact:nth-of-type(2) .meta-label,
body[data-page="home"] .current-fact:nth-of-type(3) .meta-label { color: var(--vermilion); }
body[data-page="home"] .current-fact strong { margin-top: 12px; font-size: clamp(1.1rem, 1.55vw, 1.55rem); line-height: 1.05; }
body[data-page="home"] .current-fact small { margin-top: 8px; color: #62666d; font-size: .63rem; line-height: 1.45; }
body[data-page="home"] .current-band-link { border-right: 0; }

body[data-page="home"] .home-practice { padding: clamp(84px, 8vw, 120px) 0 clamp(92px, 9vw, 138px); background: var(--home-paper); }
body[data-page="home"] .home-section-kicker { margin-bottom: 30px; }
body[data-page="home"] .practice-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); border-color: var(--home-rule); }
body[data-page="home"] .practice-item,
body[data-page="home"] .practice-item + .practice-item { min-height: 278px; padding: 30px clamp(24px, 3vw, 46px) 36px 0; border-color: var(--home-rule); }
body[data-page="home"] .practice-item + .practice-item { padding-left: clamp(24px, 3vw, 46px); }
body[data-page="home"] .practice-item:nth-child(3) { border-right: 0; }
body[data-page="home"] .practice-number,
body[data-page="home"] .practice-coral .practice-number,
body[data-page="home"] .practice-blue .practice-number,
body[data-page="home"] .practice-yellow .practice-number { color: var(--vermilion); font-size: .76rem; font-family: var(--font-body); font-weight: 850; letter-spacing: .12em; line-height: 1; }
body[data-page="home"] .practice-item h3 { margin: 28px 0 16px; font-size: clamp(2.2rem, 3.2vw, 3.35rem); line-height: .86; }
body[data-page="home"] .practice-item h3::after { width: 24px; height: 1px; margin-top: 16px; background: var(--vermilion); }
body[data-page="home"] .practice-item p { max-width: 320px; color: #535861; font-size: .87rem; }
body[data-page="home"] .practice-item::after { display: none; }
body[data-page="home"] .practice-art { grid-column: 2; min-height: 270px; margin-top: 44px; border: 1px solid var(--home-rule); }
body[data-page="home"] .practice-art figcaption { background: var(--ink); }

body[data-page="home"] .contest-stage { padding: clamp(78px, 8vw, 112px) 0; color: #fff; background: var(--ink); border-top: 3px solid var(--vermilion-bright); border-bottom: 0; }
body[data-page="home"] .contest-grid { grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr); gap: clamp(52px, 8vw, 118px); }
body[data-page="home"] .contest-heading .section-label { color: var(--vermilion-bright); }
body[data-page="home"] .contest-heading h2 { margin: 25px 0 16px; font-size: clamp(5rem, 8vw, 7.6rem); line-height: .72; }
body[data-page="home"] .contest-heading p { color: rgba(255, 255, 255, .72); }
body[data-page="home"] .contest-intro { margin-bottom: 44px; color: rgba(255, 255, 255, .72); }
body[data-page="home"] .contest-timeline::before { border-color: rgba(255, 255, 255, .26); }
body[data-page="home"] .contest-timeline li > span,
body[data-page="home"] .contest-timeline li:nth-child(2) > span,
body[data-page="home"] .contest-timeline li:nth-child(3) > span {
  border: 1px solid var(--vermilion-bright); border-radius: 0; color: var(--vermilion-bright); background: var(--ink);
}
body[data-page="home"] .contest-timeline strong { color: rgba(255, 255, 255, .68); }
body[data-page="home"] .contest-timeline time { color: #fff; }
body[data-page="home"] .contest-note { border-color: rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .58); }
body[data-page="home"] .contest-content .button:not(.secondary) { background: var(--vermilion); border-color: var(--vermilion); }
body[data-page="home"] .contest-content .button:not(.secondary):hover { color: var(--ink); background: #fff; border-color: #fff; }
body[data-page="home"] .contest-content .button.secondary { color: #fff; }

body[data-page="home"] .home-archive,
body[data-page="home"] .home-archive-inner { min-height: 620px; }
body[data-page="home"] .home-archive-art { object-position: center 50%; }
body[data-page="home"] .home-archive::after { background: rgba(7, 17, 38, .08); }
body[data-page="home"] .home-archive-inner { justify-content: flex-end; align-items: stretch; }
body[data-page="home"] .home-archive-card {
  display: flex; width: min(440px, 100%); justify-content: center; flex-direction: column;
  padding: clamp(44px, 5vw, 72px); background: rgba(7, 17, 38, .97);
}
body[data-page="home"] .home-archive-card .section-label,
body[data-page="home"] .home-archive-card .archive-meta { color: var(--vermilion-bright); }
body[data-page="home"] .home-archive-card .editorial-link span:last-child { color: var(--vermilion-bright); }
body[data-page="home"] .home-archive-card h2 { font-size: clamp(4.5rem, 7vw, 6.6rem); line-height: .72; }

body[data-page="home"] .site-footer { padding: 54px 0 24px; }
body[data-page="home"] .site-footer .footer-grid { align-items: start; }
body[data-page="home"] .site-footer .footer-grid > div:first-child .brand { align-items: center; }
body[data-page="home"] .site-footer .footer-grid > div:first-child .brand-mark { width: 50px; height: 50px; color: #fff; font-size: 1.35rem; }
body[data-page="home"] .site-footer .footer-grid > div:first-child .brand-copy strong { font-family: var(--font-body); font-size: 1.18rem; letter-spacing: .14em; line-height: 1; }
body[data-page="home"] .site-footer .footer-grid > div:first-child .brand-copy small { margin-top: 7px; color: rgba(255, 255, 255, .58); }
body[data-page="home"] .network-links a:hover { color: #fff; }
body[data-page="home"] .footer-bottom { margin-top: 38px; }

/* Shared three-site switcher: mirrored by Larusa and Contest. */
.header-inner { grid-template-columns: auto minmax(0, 1fr) auto auto auto; }
.ddn-switcher {
  display: flex; align-items: center; border: 1px solid rgba(255, 255, 255, .2);
  font-size: .54rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase;
}
.ddn-switcher a { position: relative; padding: 8px 9px; color: rgba(255, 255, 255, .56); white-space: nowrap; }
.ddn-switcher a + a { border-left: 1px solid rgba(255, 255, 255, .16); }
.ddn-switcher a:hover { color: #fff; }
.ddn-switcher a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, .09); }
.ddn-switcher a[aria-current="page"]::after {
  content: ""; position: absolute; right: 9px; bottom: 4px; left: 9px;
  height: 1px; background: var(--vermilion);
}

body.lang-ko[data-page="home"] .display { max-width: 650px; font-size: clamp(4.4rem, 6.5vw, 6.7rem); line-height: 1.01; letter-spacing: -.055em; }
body.lang-ko[data-page="home"] .practice-item h3 { font-family: var(--font-body); font-size: clamp(1.7rem, 2.5vw, 2.45rem); font-weight: 850; letter-spacing: -.035em; line-height: 1.05; text-transform: none; }
body.lang-ko[data-page="home"] .contest-heading h2 { font-size: clamp(4rem, 6vw, 5.7rem); line-height: .92; }

@media (max-width: 1100px) {
  body[data-page="home"] .hero-grid { min-height: 680px; grid-template-columns: minmax(0, 1fr) minmax(350px, .82fr); gap: 44px; }
  body[data-page="home"] .current-band-grid { grid-template-columns: .9fr 1fr 1fr 1.25fr; }
  body[data-page="home"] .current-band-link { grid-column: 1 / -1; min-height: 60px; padding-left: 0; border-top: 1px solid var(--home-rule); }
  body[data-page="home"] .practice-art { grid-column: 1 / -1; min-height: 300px; }
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto minmax(0, 1fr) auto auto; padding-bottom: 8px; }
  .header-inner > .brand { grid-column: 1; grid-row: 1; }
  .header-inner > .site-nav { grid-column: 2; grid-row: 1; }
  .header-inner > .ddn-switcher { grid-column: 1 / -1; grid-row: 2; justify-self: stretch; }
  .header-inner > .language-switcher { grid-column: 3; grid-row: 1; }
  .header-inner > .menu-button { grid-column: 4; grid-row: 1; }
  .ddn-switcher a { display: grid; min-height: 31px; flex: 1; place-items: center; padding: 6px 8px; text-align: center; }
  .site-nav { inset: 115px 0 auto; justify-content: stretch; justify-items: stretch; }
  .site-nav a { width: 100%; text-align: left; }
  body[data-page="home"] .site-nav { inset: 107px 0 auto; }
  body[data-page="home"] .hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 0; }
  body[data-page="home"] .hero-copy { padding: 74px 0 44px; }
  body[data-page="home"] .hero-art { margin-inline: 0; padding: 24px 0 54px; }
  body[data-page="home"] .hero-art img,
  body[data-page="home"] .hero-art-caption { width: min(100%, 520px); }
  body[data-page="home"] .contest-grid { grid-template-columns: 1fr; gap: 46px; }
  body[data-page="home"] .contest-heading h2 span,
  body[data-page="home"] .contest-heading h2 strong { display: inline; }
  body[data-page="home"] .contest-heading h2 strong { margin-left: .12em; }
}

@media (max-width: 680px) {
  body[data-page="home"] .contest-banner-inner { min-height: 40px; gap: 10px; }
  body[data-page="home"] .contest-banner-status { padding-inline: 9px; }
  body[data-page="home"] .contest-banner a { gap: 7px; padding-inline: 8px; }
  body[data-page="home"] .header-inner { min-height: 70px; }
  body[data-page="home"] .site-nav { top: 101px; inset-block-start: 101px; }
  body[data-page="home"] .hero-copy { padding: 54px 0 34px; }
  body[data-page="home"] .display { margin-block: 24px; font-size: clamp(4.5rem, 20vw, 6.3rem); line-height: .82; }
  body.lang-ko[data-page="home"] .display { font-size: clamp(3.1rem, 13.2vw, 4.55rem); line-height: 1.02; }
  body[data-page="home"] .hero-summary { font-size: .95rem; line-height: 1.68; }
  body[data-page="home"] .hero-art { margin-inline: 0; padding: 20px 0 44px; }
  body[data-page="home"] .hero-art img,
  body[data-page="home"] .hero-art-caption { width: 100%; }
  body[data-page="home"] .current-band-grid { grid-template-columns: 1fr; padding-block: 0; }
  body[data-page="home"] .current-band-title,
  body[data-page="home"] .current-fact,
  body[data-page="home"] .current-band-link { padding: 20px 0; border-right: 0; border-bottom: 1px solid var(--home-rule); }
  body[data-page="home"] .current-band-link { grid-column: auto; border-top: 0; border-bottom: 0; }
  body[data-page="home"] .current-band-title h2 { font-size: 3.25rem; }
  body[data-page="home"] .current-fact strong { font-size: 1.52rem; }
  body[data-page="home"] .home-practice { padding-block: 72px 80px; }
  body[data-page="home"] .practice-grid { grid-template-columns: 1fr; }
  body[data-page="home"] .practice-item,
  body[data-page="home"] .practice-item + .practice-item { display: block; min-height: 0; padding: 26px 0 30px; border-right: 0; border-bottom: 1px solid var(--home-rule); }
  body[data-page="home"] .practice-number { font-size: .72rem; }
  body[data-page="home"] .practice-item h3 { margin: 18px 0 12px; font-size: 2.4rem; }
  body.lang-ko[data-page="home"] .practice-item h3 { font-size: 1.85rem; }
  body[data-page="home"] .practice-art { grid-column: auto; min-height: 260px; margin-top: 30px; }
  body[data-page="home"] .contest-stage { padding-block: 68px; }
  body[data-page="home"] .contest-heading h2 { font-size: clamp(4.7rem, 22vw, 7rem); line-height: .74; }
  body.lang-ko[data-page="home"] .contest-heading h2 { font-size: clamp(3.3rem, 14vw, 4.5rem); line-height: .95; }
  body[data-page="home"] .contest-heading h2 span,
  body[data-page="home"] .contest-heading h2 strong { display: block; margin-left: 0; }
  body[data-page="home"] .contest-timeline::before { border-color: rgba(255, 255, 255, .25); }
  body[data-page="home"] .contest-timeline li,
  body[data-page="home"] .contest-timeline li:first-child,
  body[data-page="home"] .contest-timeline li:last-child { text-align: left; }
  body[data-page="home"] .contest-note { border-color: rgba(255, 255, 255, .2); }
  body[data-page="home"] .home-archive,
  body[data-page="home"] .home-archive-inner { min-height: 600px; }
  body[data-page="home"] .home-archive-inner { align-items: flex-end; justify-content: flex-start; }
  body[data-page="home"] .home-archive-card { width: calc(100% - 16px); margin-bottom: 16px; padding: 34px 26px; }
  body[data-page="home"] .home-archive-card h2 { font-size: 4.35rem; }
body.lang-ko[data-page="home"] .home-archive-card h2 { font-size: 3.25rem; }
  body[data-page="home"] .site-footer { padding-top: 48px; }
  body[data-page="home"] .site-footer .footer-grid > div:first-child .brand-mark { width: 46px; height: 46px; }
  body[data-page="home"] .site-footer .footer-grid > div:first-child .brand-copy strong { font-size: 1.05rem; }
}

/* COLOR UNBOUND September exhibition open call. */
.september-open-call-banner { background: var(--vermilion); }
.september-open-call-banner .contest-banner-status { color: var(--ink); background: var(--paper-bright); }
.september-open-call-banner .contest-banner-date { color: rgba(255, 255, 255, .9); }

.open-call-page { background: var(--paper); }
.open-call-hero { padding: 42px 0 clamp(74px, 8vw, 120px); background: var(--paper-bright); border-bottom: 1px solid var(--line); }
.open-call-hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr); gap: clamp(58px, 8vw, 124px); align-items: center; }
.open-call-hero-copy .record-overline { margin-bottom: clamp(58px, 7vw, 94px); }
.open-call-hero-copy h1 {
  margin: 22px 0 30px; font-family: var(--font-display);
  font-size: clamp(5.4rem, 9vw, 9rem); font-weight: 800;
  letter-spacing: -.04em; line-height: .78; text-transform: uppercase;
}
.open-call-hero-copy h1 em { color: var(--vermilion); font-style: normal; }
.open-call-lede { max-width: 720px; margin: 0; color: #414752; font-size: clamp(1rem, 1.35vw, 1.16rem); line-height: 1.7; }
.open-call-poster { margin: 70px 0 0; }
.open-call-poster img { width: min(100%, 450px); margin-inline: auto; box-shadow: 24px 24px 0 rgba(7, 17, 38, .1), 0 28px 70px rgba(7, 17, 38, .18); }
.open-call-poster figcaption { width: min(100%, 450px); margin: 26px auto 0; padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.open-call-fact-band { color: #fff; background: var(--ink); }
.open-call-facts { display: grid; grid-template-columns: repeat(4, 1fr); }
.open-call-facts article { min-height: 184px; padding: 34px 38px; border-right: 1px solid var(--line-light); }
.open-call-facts article:first-child { padding-left: 0; }
.open-call-facts article:last-child { border-right: 0; }
.open-call-facts article > span { color: var(--vermilion-bright); font-size: .68rem; font-weight: 850; letter-spacing: .13em; }
.open-call-facts strong { display: block; margin-top: 28px; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 3rem); line-height: .92; text-transform: uppercase; }
.open-call-facts small { display: block; margin-top: 12px; color: rgba(255, 255, 255, .6); font-size: .72rem; letter-spacing: .04em; line-height: 1.45; text-transform: uppercase; }

.open-call-statement { padding: clamp(88px, 9vw, 138px) 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.open-call-statement-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(58px, 9vw, 144px); align-items: start; }
.open-call-statement h2 { margin: 24px 0 0; font-family: var(--font-display); font-size: clamp(4.3rem, 7vw, 7.2rem); line-height: .82; text-transform: uppercase; }
.open-call-statement-copy { padding-top: 38px; border-top: 3px solid var(--vermilion); }
.open-call-statement-copy > p { margin: 0; color: #424852; font-size: 1.08rem; line-height: 1.75; }
.open-call-statement-copy .open-call-note { margin-top: 28px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--vermilion); font-weight: 800; }

.open-call-eligibility { background: var(--paper-bright); }
.open-call-eligibility-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.open-call-eligibility-grid article { min-height: 330px; padding: 34px clamp(24px, 3vw, 44px) 38px 0; border-right: 1px solid var(--line); }
.open-call-eligibility-grid article + article { padding-left: clamp(24px, 3vw, 44px); }
.open-call-eligibility-grid article:last-child { border-right: 0; }
.open-call-number { color: var(--vermilion); font-size: .7rem; font-weight: 900; letter-spacing: .14em; }
.open-call-eligibility-grid h3 { margin: 54px 0 22px; font-family: var(--font-display); font-size: clamp(2.2rem, 3.7vw, 3.8rem); line-height: .86; text-transform: uppercase; }
.open-call-eligibility-grid h3::after { content: ""; display: block; width: 26px; height: 2px; margin-top: 20px; background: var(--vermilion); }
.open-call-eligibility-grid p { max-width: 360px; margin: 0; color: var(--muted); line-height: 1.65; }

.open-call-event { padding: clamp(82px, 9vw, 126px) 0; color: #fff; background: var(--ink); }
.open-call-event-grid { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(62px, 9vw, 140px); align-items: start; }
.open-call-event h2 { margin: 26px 0 0; font-family: var(--font-display); font-size: clamp(5.5rem, 9vw, 8.8rem); line-height: .7; text-transform: uppercase; }
.open-call-event dl { margin: 0; border-top: 1px solid var(--line-light); }
.open-call-event dl > div { display: grid; grid-template-columns: 150px 1fr; gap: 30px; padding: 24px 0; border-bottom: 1px solid var(--line-light); }
.open-call-event dt { color: var(--vermilion-bright); font-size: .66rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.open-call-event dd { margin: 0; font-family: var(--font-display); font-size: clamp(1.45rem, 2.4vw, 2.35rem); line-height: 1; text-transform: uppercase; }

.open-call-process { padding: clamp(82px, 9vw, 126px) 0; background: var(--gallery); }
.open-call-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.open-call-steps li { display: grid; grid-template-columns: 105px minmax(0, 1fr); gap: 38px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.open-call-steps li > span { color: var(--vermilion); font-family: var(--font-display); font-size: 2.1rem; font-weight: 700; }
.open-call-steps h3 { margin: 0 0 10px; font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.5rem); line-height: .94; text-transform: uppercase; }
.open-call-steps p { max-width: 740px; margin: 0; color: var(--muted); }

.open-call-application { scroll-margin-top: 124px; padding: clamp(86px, 9vw, 132px) 0; color: #fff; background: var(--ink); border-top: 3px solid var(--vermilion-bright); }
.open-call-application-grid { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); gap: clamp(54px, 8vw, 122px); align-items: start; }
.open-call-application header h2 { margin: 26px 0 24px; font-family: var(--font-display); font-size: clamp(4.4rem, 7vw, 7rem); line-height: .76; text-transform: uppercase; }
.open-call-application header > p { color: rgba(255, 255, 255, .65); line-height: 1.7; }
.application-direct { margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line-light); }
.application-direct span { display: block; margin-bottom: 8px; color: var(--vermilion-bright); font-size: .65rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.application-direct a { color: #fff; font-weight: 800; }
.email-application-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; }
.application-field { display: grid; gap: 10px; }
.application-field-wide { grid-column: 1 / -1; }
.application-field label { color: rgba(255, 255, 255, .76); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.application-field input, .application-field textarea {
  width: 100%; border: 1px solid rgba(255, 255, 255, .36); border-radius: 0;
  padding: 14px 15px; color: #fff; background: rgba(255, 255, 255, .055);
  font: inherit; line-height: 1.45; outline: none;
}
.application-field textarea { min-height: 96px; resize: vertical; }
.application-field input:focus, .application-field textarea:focus { border-color: var(--vermilion-bright); box-shadow: 0 0 0 2px rgba(244, 90, 69, .2); }
.application-submit { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 10px; }
.application-submit .button { border: 0; color: var(--ink); background: var(--paper-bright); cursor: pointer; }
.application-submit .button:hover { color: #fff; background: var(--vermilion); }
.application-submit p { flex: 1 1 260px; margin: 0; color: rgba(255, 255, 255, .6); font-size: .76rem; line-height: 1.5; }

.phone-intake-card { align-self: stretch; display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 4.5vw, 68px); color: var(--ink); background: var(--paper-bright); border-left: 9px solid var(--vermilion); }
.phone-intake-card .section-label { color: var(--vermilion); }
.phone-intake-number { display: inline-block; width: fit-content; margin: 24px 0 20px; color: var(--ink); font-family: var(--font-display); font-size: clamp(3.4rem, 6vw, 6.7rem); font-weight: 800; line-height: .9; letter-spacing: -.035em; text-decoration: none; }
.phone-intake-number:hover { color: var(--vermilion); }
.phone-intake-card p { max-width: 660px; margin: 0 0 30px; color: rgba(7, 17, 38, .72); font-size: 1rem; line-height: 1.7; }
.phone-intake-card .button { align-self: flex-start; min-width: 190px; margin-bottom: 22px; color: #fff; background: var(--ink); border-color: var(--ink); }
.phone-intake-card .button:hover { background: var(--vermilion); border-color: var(--vermilion); }
.phone-intake-card small { color: rgba(7, 17, 38, .55); font-size: .73rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
body.lang-ko .phone-intake-number { font-family: var(--font-body); font-weight: 850; letter-spacing: -.055em; }

.record-open-call { padding: clamp(76px, 8vw, 116px) 0; color: #fff; background: var(--ink); border-top: 3px solid var(--vermilion-bright); }
.record-open-call-grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(56px, 9vw, 138px); }
.record-open-call h2 { margin: 24px 0 0; font-family: var(--font-display); font-size: clamp(4.2rem, 7vw, 7rem); line-height: .78; text-transform: uppercase; }
.record-open-call-grid > div:last-child { padding-top: 36px; border-top: 1px solid var(--line-light); }
.record-open-call p { margin: 0; color: rgba(255, 255, 255, .7); font-size: 1.04rem; line-height: 1.7; }
.record-open-call ul { margin: 26px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.record-open-call li { padding: 13px 0; border-bottom: 1px solid var(--line-light); color: rgba(255, 255, 255, .82); font-size: .78rem; font-weight: 750; letter-spacing: .035em; text-transform: uppercase; }
.record-open-call .button { background: var(--vermilion); border-color: var(--vermilion); }
.record-open-call .button:hover { color: var(--ink); background: #fff; border-color: #fff; }

body.lang-ko .open-call-hero-copy h1,
body.lang-ko .open-call-statement h2,
body.lang-ko .open-call-eligibility-grid h3,
body.lang-ko .open-call-event h2,
body.lang-ko .open-call-event dd,
body.lang-ko .open-call-steps h3,
body.lang-ko .open-call-application header h2,
body.lang-ko .record-open-call h2 { font-family: var(--font-body); font-weight: 850; letter-spacing: -.045em; text-transform: none; }
body.lang-ko .open-call-hero-copy h1 { font-size: clamp(4.4rem, 7.3vw, 7rem); line-height: .96; }
body.lang-ko .open-call-statement h2 { font-size: clamp(3.5rem, 5.5vw, 5.4rem); line-height: 1.02; }
body.lang-ko .open-call-facts strong { font-family: var(--font-body); font-size: clamp(1.5rem, 2.2vw, 2.25rem); letter-spacing: -.035em; text-transform: none; }
body.lang-ko .open-call-eligibility-grid h3 { font-size: clamp(1.6rem, 2.4vw, 2.35rem); line-height: 1.08; }
body.lang-ko .open-call-event h2 { font-size: clamp(4.1rem, 6vw, 6rem); line-height: .9; }
body.lang-ko .open-call-event dd { font-size: clamp(1.25rem, 1.8vw, 1.8rem); line-height: 1.3; }
body.lang-ko .open-call-steps h3 { font-size: clamp(1.6rem, 2.4vw, 2.4rem); }
body.lang-ko .open-call-application header h2 { font-size: clamp(3.6rem, 5.5vw, 5.3rem); line-height: .98; }
body.lang-ko .record-open-call h2 { font-size: clamp(3.5rem, 5.4vw, 5.3rem); line-height: 1.02; }

@media (max-width: 980px) {
  .open-call-hero-grid, .open-call-statement-grid, .open-call-event-grid, .open-call-application-grid, .record-open-call-grid { grid-template-columns: 1fr; }
  .open-call-facts { grid-template-columns: repeat(2, 1fr); }
  .open-call-facts article:nth-child(2n) { border-right: 0; }
  .open-call-facts article:nth-child(n+3) { border-top: 1px solid var(--line-light); }
  .open-call-facts article:nth-child(3) { padding-left: 0; }
  .open-call-hero-copy .record-overline { margin-bottom: 50px; }
  .open-call-poster { margin-top: 0; }
  .open-call-poster img, .open-call-poster figcaption { width: min(100%, 520px); }
  .open-call-statement-grid, .open-call-event-grid, .open-call-application-grid, .record-open-call-grid { gap: 46px; }
  .open-call-eligibility-grid { grid-template-columns: 1fr; }
  .open-call-eligibility-grid article, .open-call-eligibility-grid article + article { min-height: 0; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .open-call-eligibility-grid article:last-child { border-bottom: 0; }
  .open-call-eligibility-grid h3 { margin-top: 26px; }
  .record-open-call-grid > div:last-child { padding-top: 28px; }
}

@media (max-width: 680px) {
  .open-call-hero { padding-top: 16px; }
  .open-call-hero-copy h1 { font-size: clamp(4.8rem, 23vw, 7rem); }
  body.lang-ko .open-call-hero-copy h1 { font-size: clamp(3.7rem, 16.2vw, 5.35rem); }
  .open-call-facts { grid-template-columns: 1fr; padding-block: 12px; }
  .open-call-facts article, .open-call-facts article:first-child { min-height: 0; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .open-call-facts article:last-child { border-bottom: 0; }
  .open-call-facts strong { margin-top: 13px; font-size: 2rem; }
  .open-call-statement, .open-call-event, .open-call-process, .open-call-application { padding-block: 72px; }
  .open-call-statement h2 { font-size: 4.4rem; }
  body.lang-ko .open-call-statement h2 { font-size: 3.15rem; }
  .open-call-event h2 { font-size: 5.5rem; }
  body.lang-ko .open-call-event h2 { font-size: 4rem; }
  .open-call-event dl > div { grid-template-columns: 1fr; gap: 9px; padding-block: 20px; }
  .open-call-steps li { grid-template-columns: 58px 1fr; gap: 18px; }
  .open-call-steps li > span { font-size: 1.7rem; }
  .email-application-form { grid-template-columns: 1fr; }
  .application-field-wide { grid-column: auto; }
  .application-submit { align-items: stretch; flex-direction: column; }
  .application-submit .button { width: 100%; }
  .application-submit p { flex-basis: auto; }
  .record-open-call h2 { font-size: 4.4rem; }
  body.lang-ko .record-open-call h2 { font-size: 3.2rem; }
}

/* Mobile header breathing room: keep the brand row clear of the open-call bar
   while preserving the 20px page gutter and full-width network switcher. */
@media (max-width: 980px) {
  .header-inner {
    padding-block: 10px;
    row-gap: 10px;
  }
}

@media (max-width: 680px) {
  .header-inner,
  body[data-page="home"] .header-inner {
    min-height: 0;
    column-gap: 10px;
    padding-block: 10px;
  }
}
