@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700&family=Noto+Serif+KR:wght@400;500;600;700&family=Rozha+One&family=Wix+Madefor+Display:wght@400;500;600;700&family=Work+Sans:wght@200;300;400;500;600;700&display=swap");

.site-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 16px;
  border-radius: 12px;
  background: #181919;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(24, 25, 25, 0.2);
  font: 600 14px/1.45 "Wix Madefor Display", "Noto Sans KR", sans-serif;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer-bottom {
  box-sizing: border-box;
  width: 100%;
  margin-top: 72px;
  padding: 20px 18px;
  background: #151515;
  color: #d7d2ca;
  text-align: center;
}

.site-footer-bottom-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.site-footer-bottom-flex {
  display: grid;
  gap: 8px;
}

.site-footer-bottom p {
  margin: 0;
  font: 400 12px/1.65 var(--site-menu-font);
  letter-spacing: 0.01em;
}

.site-footer-bottom a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer-bottom a:hover {
  text-decoration: underline;
}

.site-mobile-toggle {
  display: none;
}

.site-mobile-panel {
  display: none;
}

.form-error {
  color: #ba1a1a;
  font-size: 13px;
  margin-top: 6px;
}

.is-invalid {
  outline: 1px solid #ba1a1a !important;
}

:root {
  --site-topbar-height: 80px;
  --site-topbar-max-width: 1280px;
  --site-brand-font: "Work Sans", "Wix Madefor Display", "Noto Sans KR", sans-serif;
  --site-menu-font: "Wix Madefor Display", "Work Sans", "Noto Sans KR", sans-serif;
  --site-body-font: "Wix Madefor Display", "Noto Sans KR", sans-serif;
  --site-heading-font: "Rozha One", "Noto Serif KR", serif;
  --site-dotum-font: Dotum, "돋움", "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", sans-serif;
  --site-nav-line: #d8d8d8;
  --site-shared-logo-width: 204px;
  --site-shared-logo-width-mobile: 158px;
}

body {
  font-family: var(--site-body-font);
}

.site-topbar {
  box-sizing: border-box;
  width: 100%;
  border-bottom: 1px solid rgba(214, 211, 209, 0.9);
  background: rgba(247, 243, 240, 0.94);
  color: #1b1c1c;
  box-shadow: 0 1px 8px rgba(24, 25, 25, 0.06);
  backdrop-filter: blur(14px);
}

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

.site-topbar--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}

.site-topbar--sticky {
  position: sticky;
  top: 0;
  z-index: 50;
}

.dark .site-topbar {
  border-bottom-color: rgba(41, 37, 36, 0.9);
  background: rgba(26, 26, 26, 0.94);
  color: #f7f3f0;
  box-shadow: none;
}

.site-topbar-inner {
  display: grid;
  grid-template-columns: minmax(168px, 1fr) auto minmax(168px, 1fr);
  align-items: center;
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
  max-width: var(--site-topbar-max-width);
  height: var(--site-topbar-height);
  min-height: var(--site-topbar-height);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 64px);
}

.site-topbar-brand {
  justify-self: start;
  color: inherit;
  font: 800 20px/1 var(--site-brand-font);
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-topbar-menu {
  border-top: 1px solid rgba(214, 211, 209, 0.5);
  border-bottom: 1px solid rgba(214, 211, 209, 0.5);
  display: flex;
  align-items: center;
  justify-self: center;
  gap: clamp(14px, 2vw, 24px);
  height: 100%;
  white-space: nowrap;
}

.site-topbar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 12px;
  min-width: 168px;
}

.site-topbar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #57534e;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-topbar-icon:hover {
  background: rgba(214, 211, 209, 0.45);
  color: #1b1c1c;
}

.site-topbar-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #1b1c1c;
  font: 600 14px/1.2 var(--site-menu-font);
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}

.site-topbar-action:hover {
  color: #57534e;
}

.dark .site-topbar-icon {
  color: #d6d3d1;
}

.dark .site-topbar-icon:hover {
  background: rgba(68, 64, 60, 0.55);
  color: #f7f3f0;
}

.dark .site-topbar-action {
  color: #f7f3f0;
}

.dark .site-topbar-action:hover {
  color: #d6d3d1;
}

.site-nav-link {
  display: inline-flex;
  align-items: center;
  height: auto;
  min-height: 0;
  padding: 4px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor !important;
  color: #6b7280;
  font: 600 14px/1.2 var(--site-menu-font);
  letter-spacing: 0;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.site-nav-link:hover {
  color: #1b1c1c;
}

.site-nav-link[aria-current="page"] {
  color: #1b1c1c;
  border-bottom-color: #1b1c1c;
  font-weight: 700;
}

.dark .site-nav-link {
  display: inline-flex;
  align-items: center;
  height: auto;
  min-height: 0;
  padding: 4px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor !important;
  color: #6b7280;
  font: 600 14px/1.2 var(--site-menu-font);
  letter-spacing: 0;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.dark .site-nav-link:hover,
.dark .site-nav-link[aria-current="page"] {
  color: #f7f3f0;
}

.dark .site-nav-link[aria-current="page"] {
  border-bottom-color: #f7f3f0;
}

@media (min-width: 1024px) and (max-width: 1240px) {
  .site-topbar-inner {
    grid-template-columns: minmax(136px, 1fr) auto minmax(136px, 1fr);
    gap: 16px;
    padding: 0 24px;
  }

  .site-topbar-menu {
  border-top: 1px solid rgba(214, 211, 209, 0.5);
  border-bottom: 1px solid rgba(214, 211, 209, 0.5);
    gap: 16px;
  }

  .site-topbar-actions {
    min-width: 136px;
  }

}

@media (max-width: 1023px) {
  :root {
    --site-topbar-height: 72px;
  }

  .site-topbar-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 0 20px;
  }

  .site-topbar-brand {
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
  }

  .site-topbar-menu {
  border-top: 1px solid rgba(214, 211, 209, 0.5);
  border-bottom: 1px solid rgba(214, 211, 209, 0.5);
    display: none;
  }

  .site-topbar-actions {
    min-width: 0;
    gap: 8px;
  }

  .site-topbar-action {
    display: none;
  }

  .site-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 9999px;
    background: transparent;
    color: #1b1c1c;
    cursor: pointer;
  }

  .site-mobile-panel {
    display: none;
    position: fixed;
    inset: calc(var(--site-topbar-height) + 12px) 16px auto 16px;
    z-index: 9998;
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(24, 25, 25, 0.16);
  }

  .site-mobile-panel.is-open {
    display: grid;
    gap: 8px;
  }

  .site-mobile-panel a {
    display: block;
    height: auto;
    min-height: 0;
    padding: 12px 14px;
    border-bottom: 0;
    border-radius: 10px;
    color: #1b1c1c;
    font: 600 14px/1.2 var(--site-menu-font);
  }

  .site-mobile-panel a[aria-current="page"] {
    background: #efeded;
  }

  .dark .site-mobile-panel {
    background: #1c1917;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  }

  .dark .site-mobile-toggle {
    color: #f7f3f0;
  }

  .dark .site-mobile-panel a {
    color: #f7f3f0;
  }

  .dark .site-mobile-panel a[aria-current="page"] {
    background: #292524;
  }

  .site-company-info-inner {
    padding: 36px 20px;
  }

}


.site-topbar {
  background: rgba(255, 251, 247, 0.98);
  border-bottom: 1px solid rgba(214, 211, 209, 0.95);
  box-shadow: 0 2px 10px rgba(24, 25, 25, 0.04);
}

.dark .site-topbar {
  background: rgba(20, 20, 20, 0.98);
  border-bottom-color: rgba(68, 64, 60, 0.85);
}

.site-topbar-inner {
  align-items: start;
  height: auto;
  min-height: 0;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-topbar-menu {
  display: flex;
  flex-direction: column;
  justify-self: center;
  width: 100%;
  gap: 12px;
  border: 0;
  white-space: normal;
}

.site-topbar-menu-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.site-nav-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.site-nav-main,
.site-nav-subitem,
.site-nav-admin {
  display: flex;
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}

.site-nav-main {
  min-height: 42px;
  padding: 10px 8px;
  border: 1px solid #dc7c39;
  border-radius: 2px;
  background: linear-gradient(180deg, #f6a56a 0%, #ea7533 100%);
  color: #ffffff;
  font: 700 13px/1.1 var(--site-menu-font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(234, 117, 51, 0.14);
}

.site-nav-group.is-active .site-nav-main,
.site-nav-main[aria-current="page"] {
  border-color: #1b1c1c;
  background: linear-gradient(180deg, #313131 0%, #181919 100%);
  box-shadow: 0 6px 16px rgba(24, 25, 25, 0.18);
}

.site-nav-submenu {
  display: grid;
  gap: 6px;
}

.site-nav-subitem {
  min-height: 32px;
  padding: 7px 8px;
  border: 1px solid rgba(234, 117, 51, 0.72);
  border-radius: 2px;
  background: #ffffff;
  color: #5a463d;
  font: 600 12px/1.2 var(--site-menu-font);
  letter-spacing: 0.01em;
  white-space: normal;
}

.site-nav-subitem[aria-current="page"] {
  background: #fff1e7;
  color: #1b1c1c;
  border-color: #ea7533;
}

.site-topbar-admin-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav-admin {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(234, 117, 51, 0.55);
  border-radius: 9999px;
  background: #fff4ec;
  color: #6a3e28;
  font: 700 12px/1.1 var(--site-menu-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav-admin[aria-current="page"] {
  background: #1b1c1c;
  color: #ffffff;
  border-color: #1b1c1c;
}

@media (max-width: 1280px) {
  .site-topbar-menu-grid {
    gap: 10px;
  }

  .site-nav-main {
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .site-nav-subitem {
    font-size: 11px;
  }
}

@media (max-width: 1023px) {
  .site-topbar-menu-grid,
  .site-topbar-admin-row {
    display: none;
  }

  .site-topbar-menu {
    gap: 0;
  }
}


/* Restore the simple text navigation bar while keeping the updated menu labels. */
.site-topbar-inner {
  align-items: center;
  min-height: var(--site-topbar-height);
  height: var(--site-topbar-height);
  padding-top: 0;
  padding-bottom: 0;
}

.site-topbar-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-self: center;
  width: auto;
  gap: clamp(14px, 2vw, 24px);
  height: 100%;
  border-top: 1px solid rgba(214, 211, 209, 0.5);
  border-bottom: 1px solid rgba(214, 211, 209, 0.5);
  white-space: nowrap;
}

.site-nav-link {
  display: inline-flex;
  width: auto;
  min-height: 0;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor !important;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #6b7280;
  font: 600 14px/1.2 var(--site-menu-font);
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav-link:hover {
  color: #1b1c1c;
}

.site-nav-link[aria-current="page"] {
  color: #1b1c1c;
  border-bottom-color: #1b1c1c;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .site-topbar-menu {
    display: none;
  }
}

.page-home-reference {
  margin: 0;
  background: #fff;
  color: #171717;
}

.home-reference-shell {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 24px 20px 64px;
}

.home-reference-header {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  text-align: center;
}

.home-reference-logo {
  display: block;
  width: var(--site-shared-logo-width);
  max-width: 100%;
  margin: 0 auto 18px;
}

.home-reference-logo img {
  display: block;
  width: min(100%, var(--site-shared-logo-width));
  max-width: var(--site-shared-logo-width);
  height: auto;
}

.home-reference-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
  width: 100%;
  padding: 12px 10px;
  border-top: 1px solid var(--site-nav-line);
  border-bottom: 1px solid var(--site-nav-line);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}

.home-reference-nav a {
  align-items: center;
  color: #1f2933;
  display: inline-flex;
  justify-content: center;
  white-space: nowrap;
  text-decoration: none;
  font-family: var(--site-menu-font);
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.home-reference-nav a:hover,
.home-reference-nav a[aria-current="page"] {
  color: #000;
  font-weight: 700;
}

.home-reference-hero {
  width: min(100vw, 1904px);
  margin-left: 50%;
  margin-top: 0;
  transform: translateX(-50%);
}

.home-reference-hero img {
  display: block;
  width: 100%;
  height: clamp(520px, 56vh, 600px);
  object-fit: cover;
  object-position: center 50%;
}

.home-reference-intro {
  width: min(100%, 1188px);
  margin: 44px auto 0;
  font-family: var(--site-dotum-font);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: normal;
  color: #111;
  word-break: keep-all;
}

.home-reference-intro p {
  margin: 0 0 18px;
}

.home-reference-intro p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .home-reference-shell {
    padding: 18px 14px 44px;
  }

  .home-reference-logo {
    width: var(--site-shared-logo-width-mobile);
    margin-bottom: 14px;
  }

  .home-reference-nav {
    gap: 12px 16px;
    padding: 10px 4px;
    font-size: 12px;
  }

  .home-reference-hero img {
    height: min(390px, 54vh);
  }

  .home-reference-intro {
    margin-top: 28px;
    font-size: 12px;
    line-height: 1.85;
  }
}

/* Shared page header matching the home layout and gallery references. */
.site-topbar {
  border-bottom: 1px solid var(--site-nav-line);
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.dark .site-topbar {
  border-bottom: 1px solid var(--site-nav-line);
  background: #fff;
  color: #171717;
}

.site-topbar-inner {
  display: block;
  position: relative;
  width: min(100%, var(--site-topbar-max-width));
  max-width: var(--site-topbar-max-width);
  height: auto;
  min-height: 0;
  margin: 0 auto;
  padding: 24px 20px 0;
}

.site-topbar-inner,
.home-reference-nav,
.site-topbar-menu {
  text-align: center;
}

.site-topbar-brand {
  display: block;
  position: static;
  width: var(--site-shared-logo-width);
  max-width: 100%;
  margin: 0 auto 18px;
  color: inherit;
  font-size: 0;
  line-height: 0;
  text-decoration: none;
}

.site-topbar-brand img {
  display: block;
  width: min(100%, var(--site-shared-logo-width));
  max-width: var(--site-shared-logo-width);
  height: auto;
  margin: 0 auto;
}

.site-topbar-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  gap: 18px 28px;
  padding: 12px 10px;
  border-top: 1px solid var(--site-nav-line);
  border-bottom: 1px solid var(--site-nav-line);
  white-space: nowrap;
}

.site-nav-link,
.dark .site-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0 !important;
  background: transparent;
  box-shadow: none;
  color: #1f2933;
  font: 600 14px/1.2 var(--site-menu-font);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav-link:hover,
.site-nav-link[aria-current="page"],
.dark .site-nav-link:hover,
.dark .site-nav-link[aria-current="page"] {
  color: #000;
  font-weight: 700;
}

.site-topbar-actions {
  position: absolute;
  top: 18px;
  right: clamp(20px, 4vw, 64px);
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
  gap: 8px;
}

.site-topbar-icon,
.site-topbar-action {
  display: inline-flex;
}

@media (max-width: 1023px) {
  .site-topbar-inner {
    padding: 18px 14px 0;
  }

  .site-topbar-brand {
    width: var(--site-shared-logo-width-mobile);
    margin-bottom: 14px;
  }

  .site-topbar-menu {
    display: none;
  }

  .site-topbar-actions {
    display: flex;
    top: 14px;
    right: 14px;
  }

  .site-mobile-toggle {
    display: inline-flex;
  }
}

.pdf-page {
  margin: 0;
  background: #fff;
  color: #111;
  font-family: "Rozha One", "Noto Serif KR", serif;
  letter-spacing: 0;
}

.pdf-page-main {
  box-sizing: border-box;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 64px 20px 96px;
}

.pdf-page-title {
  margin: 0;
  font: 500 42px/1.15 "Rozha One", "Noto Serif KR", serif;
  letter-spacing: 0;
}

.pdf-page-lead {
  max-width: 720px;
  margin: 18px 0 0;
  font: 400 18px/1.8 "Rozha One", "Noto Serif KR", serif;
  word-break: keep-all;
}

.pdf-page-lead-en {
  max-width: 760px;
  margin: 14px 0 0;
  font: 400 16px/1.75 "Rozha One", "Noto Serif KR", serif;
}

.pdf-subnav {
  display: grid;
  gap: 8px;
  width: 260px;
  margin: 30px 0;
}

.pdf-subnav-link {
  display: block;
  padding: 7px 10px;
  border: 1px solid #222;
  color: #111;
  font: 400 15px/1.35 "Rozha One", "Noto Serif KR", serif;
  text-decoration: none;
}

.pdf-ready-box {
  display: grid;
  min-height: 390px;
  place-items: center;
  background: #fff;
}

.pdf-ready-box--outlined {
  border: 0;
}

.pdf-ready-box-title {
  margin: 0;
  font: 400 18px/1.4 "Rozha One", "Noto Serif KR", serif;
}

.pdf-page--exhibitions .pdf-page-main {
  display: grid;
  grid-template-columns: 258px minmax(0, 1fr);
  grid-template-areas: "header ready";
  column-gap: 82px;
  align-items: start;
}

.pdf-page--exhibitions .pdf-page-header {
  grid-area: header;
  margin-top: 6px;
}

.pdf-page--exhibitions .pdf-page-title {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.pdf-page--exhibitions .pdf-subnav {
  display: flex;
  grid-area: header;
  gap: 0;
  width: auto;
  margin: 55px 0 0;
}

.pdf-page--exhibitions .pdf-subnav-link {
  position: relative;
  border: 0;
  border-right: 1px solid #222;
  padding: 0 10px;
  color: #111;
  font-size: 13px;
  line-height: 1.25;
}

.pdf-page--exhibitions .pdf-subnav-link:first-child {
  padding-left: 0;
}

.pdf-page--exhibitions .pdf-subnav-link:last-child {
  border-right: 0;
}

.pdf-page--exhibitions .pdf-subnav-link[aria-current="page"] {
  color: #9b6234;
}

.pdf-page--exhibitions .pdf-subnav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: -7px;
  left: 10px;
  height: 2px;
  background: #b77945;
}

.pdf-page--exhibitions .pdf-subnav-link:first-child[aria-current="page"]::after {
  left: 0;
}

.pdf-page--exhibitions .pdf-ready-box {
  grid-area: ready;
  min-height: 444px;
}

.pdf-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.pdf-image {
  display: block;
  width: 100%;
  height: auto;
}

.pdf-hero-strip {
  height: 250px;
  object-fit: cover;
}

.pdf-section-title {
  display: inline-block;
  margin: 42px 0 16px;
  padding: 5px 12px;
  border: 1px solid #222;
  font: 400 18px/1.35 "Rozha One", "Noto Serif KR", serif;
}

.pdf-info-lines {
  margin: 0;
  font: 400 17px/1.8 "Rozha One", "Noto Serif KR", serif;
  word-break: keep-all;
}

.pdf-space-grid,
.pdf-facility-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.pdf-program-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  margin-top: 42px;
}

.pdf-program-list {
  display: grid;
  gap: 8px;
}

.pdf-program-list-title {
  margin: 0 0 10px;
  font: 500 22px/1.3 "Rozha One", "Noto Serif KR", serif;
}

.pdf-program-list a {
  display: block;
  padding: 7px 10px;
  border: 1px solid #222;
  color: #111;
  font: 400 15px/1.35 "Rozha One", "Noto Serif KR", serif;
  text-decoration: none;
}

.pdf-page--programs,
.pdf-page--programs .pdf-page-lead,
.pdf-page--programs .pdf-page-lead-en,
.pdf-page--programs .pdf-program-list-title,
.pdf-page--programs .pdf-program-list a,
.pdf-page--programs .pdf-ready-box-title {
  font-family: var(--site-dotum-font);
}

.pdf-contact-layout {
  width: min(100%, 760px);
}

.pdf-contact-map {
  width: 520px;
  max-width: 100%;
  margin: 34px 0 34px;
}

.pdf-contact-list {
  display: grid;
  gap: 24px;
  margin: 0;
}

.pdf-contact-list dt {
  margin: 0 0 6px;
  font: 600 17px/1.4 "Rozha One", "Noto Serif KR", serif;
}

.pdf-contact-list dd {
  margin: 0;
  font: 400 16px/1.75 "Rozha One", "Noto Serif KR", serif;
  word-break: keep-all;
}

.pdf-page--contact {
  font-family: var(--site-dotum-font);
}

.pdf-page--contact .pdf-contact-layout {
  width: min(100%, 860px);
  margin: 0 auto;
  text-align: center;
}

.pdf-page--contact .pdf-page-title {
  font-weight: 500;
}

.pdf-page--contact .pdf-contact-map-shell {
  width: min(100%, 820px);
  margin: 34px auto 28px;
}

.pdf-page--contact .pdf-contact-map {
  position: relative;
  width: 100%;
  height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d8d2cc;
  background: #f7f4ef;
}

.pdf-page--contact .pdf-contact-map-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdf-page--contact .pdf-contact-map-status {
  margin: 10px 0 0;
  color: #777;
  font: 400 13px/1.55 var(--site-dotum-font);
}

.pdf-page--contact .pdf-contact-map-info {
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 10px 12px;
  color: #111;
  font: 400 13px/1.45 var(--site-dotum-font);
}

.pdf-page--contact .pdf-contact-map-info strong {
  font-weight: 600;
}

.pdf-page--contact .pdf-contact-map-info span {
  color: #555;
}

.pdf-page--contact .pdf-contact-summary {
  max-width: 760px;
  margin: 0 auto 32px;
}

.pdf-page--contact .pdf-contact-kicker {
  margin: 0 0 10px;
  color: #9b6234;
  font: 600 14px/1.3 var(--site-dotum-font);
  letter-spacing: 0.12em;
}

.pdf-page--contact .pdf-contact-address {
  margin: 0;
  font: 500 22px/1.65 var(--site-dotum-font);
  word-break: keep-all;
}

.pdf-page--contact .pdf-contact-note {
  margin: 14px 0 0;
  color: #555;
  font: 400 15px/1.7 var(--site-dotum-font);
  word-break: keep-all;
}

.pdf-page--contact .pdf-contact-map-link {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 18px;
  border: 1px solid #9b6234;
  color: #9b6234;
  font: 500 14px/1.3 var(--site-dotum-font);
  text-decoration: none;
}

.pdf-page--contact .pdf-contact-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

.pdf-page--contact .pdf-contact-list > div {
  min-height: 112px;
  padding: 22px 24px;
  border: 1px solid #e2ddd7;
  background: #fbfaf7;
}

.pdf-page--contact .pdf-contact-list dt {
  margin-bottom: 8px;
  color: #9b6234;
  font: 600 15px/1.35 var(--site-dotum-font);
}

.pdf-page--contact .pdf-contact-list dd {
  color: #222;
  font: 400 15px/1.75 var(--site-dotum-font);
}

.pdf-page--private-events {
  font-family: var(--site-dotum-font);
}

.pdf-page--private-events .pdf-page-header {
  margin-bottom: 2px;
}

.pdf-page--private-events .pdf-page-title {
  font-weight: 500;
}

.pdf-page--private-events .pdf-page-lead,
.pdf-page--private-events .pdf-page-lead-en,
.pdf-page--private-events .pdf-info-lines {
  font-family: var(--site-dotum-font);
}

.pdf-page--private-events .pdf-section-title {
  margin-top: 0;
  font-family: var(--site-dotum-font);
}

.pdf-page--private-events .pdf-two-column {
  align-items: center;
  margin-bottom: 46px;
}

.pdf-page--private-events .pdf-private-space-overview {
  display: grid;
  grid-template-columns: 586px minmax(0, 1fr);
  column-gap: 68px;
  align-items: start;
  margin-bottom: 46px;
}

.pdf-page--private-events .pdf-hero-strip {
  height: 280px;
}

.pdf-page--private-events .pdf-private-space-overview .pdf-hero-strip {
  width: 100%;
  transform: none;
}

.pdf-page--private-events .pdf-private-space-copy {
  margin-top: 18px;
  transform: none;
}

.pdf-page--private-events .pdf-private-intro-section {
  margin: 0 0 46px;
}

.pdf-page--private-events .pdf-private-intro-copy {
  align-self: start;
  margin-top: 88px;
  text-align: left;
}

.pdf-page--private-events .pdf-private-intro-copy .pdf-page-lead,
.pdf-page--private-events .pdf-private-intro-copy .pdf-page-lead-en {
  margin-right: auto;
  margin-left: 0;
}

.pdf-page--private-events .pdf-private-intro-copy .pdf-page-lead:first-child {
  margin-top: 0;
}

.pdf-page--private-events .pdf-space-grid {
  gap: 34px;
  margin: 0 0 52px;
}

.pdf-page--private-events .pdf-space-grid .pdf-image {
  box-sizing: border-box;
  height: 430px;
  padding: 16px;
  border: 1px solid #d8d2cc;
  background: #fff;
  object-fit: contain;
}

.pdf-page--private-events .pdf-facility-grid {
  display: block;
  margin-top: 18px;
}

.pdf-page--private-events .pdf-facility-grid .pdf-image {
  box-sizing: border-box;
  width: 100%;
  height: 340px;
  padding: 16px;
  border: 1px solid #d8d2cc;
  background: #fff;
  object-fit: contain;
}

.pdf-page .pdf-page-title {
  font-family: "Rozha One", "Noto Serif KR", serif;
}

.pdf-page--programs .pdf-page-lead {
  font-size: 12px;
  line-height: 2;
}

@media (max-width: 767px) {
  .pdf-page-main {
    padding: 42px 18px 72px;
  }

  .pdf-page-title {
    font-size: 34px;
  }

  .pdf-two-column,
  .pdf-space-grid,
  .pdf-facility-grid,
  .pdf-program-grid {
    grid-template-columns: 1fr;
  }

  .pdf-subnav {
    width: 100%;
  }

  .pdf-ready-box {
    min-height: 280px;
  }

  .pdf-page--exhibitions .pdf-page-main {
    display: block;
  }

  .pdf-page--exhibitions .pdf-page-header {
    margin-top: 0;
  }

  .pdf-page--exhibitions .pdf-subnav {
    flex-wrap: wrap;
    margin: 14px 0 28px;
  }

  .pdf-page--exhibitions .pdf-ready-box {
    min-height: 280px;
  }

  .pdf-page--contact .pdf-contact-map {
    box-sizing: border-box;
    height: 320px;
  }

  .pdf-page--private-events .pdf-private-space-overview {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .pdf-page--contact .pdf-contact-address {
    font-size: 18px;
  }

  .pdf-page--contact .pdf-contact-list {
    grid-template-columns: 1fr;
  }

  .pdf-page--private-events .pdf-page-header,
  .pdf-page--private-events .pdf-two-column,
  .pdf-page--private-events .pdf-space-grid {
    margin-bottom: 34px;
  }

  .pdf-page--private-events .pdf-hero-strip,
  .pdf-page--private-events .pdf-space-grid .pdf-image,
  .pdf-page--private-events .pdf-facility-grid .pdf-image {
    box-sizing: border-box;
    height: auto;
    min-height: 0;
    padding: 10px;
  }
}

/* Reference-style shared typography and header composition */
:root {
  --site-brand-font: "Work Sans", "Wix Madefor Display", "Noto Sans KR", sans-serif;
  --site-menu-font: "Wix Madefor Display", "Work Sans", "Noto Sans KR", "Apple SD Gothic Neo", "맑은 고딕", Arial, sans-serif;
  --site-shared-logo-width: 152px;
}

@media (min-width: 1024px) {
  :root {
    --site-shared-logo-width: 180px;
  }
}

.site-topbar {
  position: relative;
}

.site-topbar-inner {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  position: relative;
  width: min(100%, 1280px);
  height: auto;
  min-height: 0;
  padding: 18px 20px 12px;
}

.site-topbar-brand {
  width: var(--site-shared-logo-width);
  margin: 0 auto;
  justify-self: center;
  text-transform: none;
  line-height: 1;
}

.site-topbar-brand img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.site-topbar-menu {
  width: min(100%, 1040px);
  justify-content: center;
  justify-self: stretch;
  gap: clamp(12px, 1.8vw, 30px);
  margin: 0 auto;
  padding: 10px 4px;
  border-top: 1px solid rgba(214, 211, 209, 0.9);
  border-bottom: 1px solid rgba(214, 211, 209, 0.9);
}

.site-nav-link {
  font-family: var(--site-menu-font) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.site-topbar-actions {
  position: absolute;
  right: clamp(16px, 4vw, 56px);
  top: 20px;
}

.site-topbar-icon,
.site-topbar-action {
  font-family: var(--site-menu-font);
}

@media (max-width: 1023px) {
  .site-topbar-inner {
    padding: 15px 16px 10px;
  }

  .site-topbar-brand {
    --site-shared-logo-width: 130px;
    width: 130px;
  }

  .site-topbar-actions {
    top: 16px;
    right: 16px;
  }

  .site-topbar-action {
    display: none;
  }
}

/* 2026-05-09: unify non-home copy with the Home intro and make nav rules full-bleed. */
.home-reference-nav,
.site-topbar-menu {
  position: relative;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.site-topbar,
.dark .site-topbar {
  border-bottom: 0 !important;
}

.home-reference-nav::before,
.home-reference-nav::after,
.site-topbar-menu::before,
.site-topbar-menu::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  background: var(--site-nav-line);
  pointer-events: none;
}

.home-reference-nav::before,
.site-topbar-menu::before {
  top: 0;
}

.home-reference-nav::after,
.site-topbar-menu::after {
  bottom: 0;
}

.home-reference-nav > *,
.site-topbar-menu > * {
  position: relative;
  z-index: 1;
}

.pdf-page:not(.page-home-reference) .pdf-page-lead,
.pdf-page:not(.page-home-reference) .pdf-page-lead-en,
.pdf-page:not(.page-home-reference) .pdf-info-lines,
.pdf-page:not(.page-home-reference) .pdf-contact-address,
.pdf-page:not(.page-home-reference) .pdf-contact-note,
.pdf-page:not(.page-home-reference) .pdf-contact-list dd {
  font-family: var(--site-dotum-font) !important;
  font-size: 12px !important;
  font-weight: 400;
  line-height: 2;
  letter-spacing: normal;
  word-break: keep-all;
}

/* Match every page logo to the Home logo size. */
:root {
  --site-home-logo-width: 204px;
  --site-home-logo-width-mobile: 204px;
}

@media (min-width: 1024px) {
  :root {
    --site-home-logo-width: 204px;
  }
}

.home-reference-logo,
.site-topbar-brand {
  --site-shared-logo-width: var(--site-home-logo-width) !important;
  width: var(--site-home-logo-width) !important;
  max-width: var(--site-home-logo-width) !important;
}

.home-reference-logo img,
.site-topbar-brand img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .home-reference-logo,
  .site-topbar-brand {
    --site-shared-logo-width: var(--site-home-logo-width-mobile) !important;
    width: var(--site-home-logo-width-mobile) !important;
    max-width: var(--site-home-logo-width-mobile) !important;
  }
}

/* Final logo lock: keep each header's Y position, but center and size every logo identically. */
.home-reference-logo,
.site-topbar-brand {
  align-self: center !important;
  justify-self: center !important;
  flex: 0 0 auto !important;
  width: 204px !important;
  min-width: 204px !important;
  max-width: 204px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.home-reference-logo img,
.site-topbar-brand img {
  width: 204px !important;
  min-width: 204px !important;
  max-width: 204px !important;
  height: auto !important;
  object-fit: contain;
}

/* Align non-home header geometry to the Home header without changing content layout. */
.site-topbar-inner {
  padding-top: 24px !important;
  padding-bottom: 0 !important;
  gap: 18px !important;
}

.site-topbar-menu {
  padding: 12px 10px !important;
}

body.pt-20 {
  padding-top: 0 !important;
}

/* PDF bilingual copy: group Korean above English with a 5px language gap. */
.pdf-language-group {
  display: grid;
  gap: 0;
}

.pdf-language-group + .pdf-language-group {
  margin-top: 7px;
}

.pdf-bilingual-menu-en {
  margin-top: 5px;
}

.home-reference-intro .home-reference-intro-ko {
  margin: 0;
}

.home-reference-intro .home-reference-intro-en {
  margin: 0;
  font-family: var(--site-dotum-font);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: normal;
  color: #111;
  word-break: normal;
}

.pdf-page-lead + .pdf-page-lead-en {
  margin-top: 7px !important;
}

.pdf-bilingual-en {
  display: block;
  margin-top: 5px;
}

.pdf-section-title .pdf-bilingual-en,
.pdf-program-list a .pdf-bilingual-en,
.pdf-subnav-link .pdf-bilingual-en {
  line-height: inherit;
}

.pdf-bilingual-menu {
  display: grid;
  width: 100%;
}

.pdf-bilingual-menu-ko,
.pdf-bilingual-menu-en {
  display: grid;
  gap: 0;
}

/* Keep Exhibitions and Programs ready text aligned to News without changing News. */
.pdf-page--exhibitions .pdf-ready-box-title,
.pdf-page--programs .pdf-ready-box-title {
  font: 400 18px/1.4 var(--site-heading-font) !important;
}

/* Restore mixed Korean/English labels to the title typeface. */
.pdf-page--programs .pdf-program-list a,
.pdf-page--news .pdf-subnav-link,
.pdf-page--private-events .pdf-section-title,
.pdf-page.pdf-page--private-events .pdf-info-lines {
  font-family: var(--site-heading-font) !important;
}

/* Match all non-News page buttons to the News button typography. */
.pdf-page--exhibitions .pdf-subnav-link,
.pdf-page--programs .pdf-program-list a,
.pdf-page--private-events .pdf-section-title {
  font: 400 15px/1.35 var(--site-heading-font) !important;
  letter-spacing: normal !important;
}

/* Match every non-Home/non-Exhibitions page title to the Exhibitions title size. */
body:not(.page-home-reference):not(.pdf-page--exhibitions) main h1 {
  font-size: 30px !important;
  line-height: 34.5px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
}
