:root {
  --ink: #161412;
  --muted: #686a64;
  --line: #d9d7cf;
  --paper: #f9f8f3;
  --soft: #eef1ed;
  --panel: #ffffff;
  --accent: #8d3c2e;
  --accent-dark: #5d241d;
  --jade: #587468;
  --blue-gray: #536d7f;
  --leather: #6b342a;
  --mineral: #315f67;
  --shadow: 0 18px 60px rgba(30, 25, 19, 0.09);
  --museum-header-height: 79px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.86);
  border-bottom: 1px solid rgba(222, 216, 207, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  max-width: clamp(250px, 28vw, 430px);
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
}

.brand-ch,
.brand-en,
.brand-location {
  display: block;
  line-height: 1.12;
}

.brand-ch {
  font-family: Georgia, "Times New Roman", "Songti SC", "Noto Serif CJK SC", serif;
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1.08;
}

.brand-en {
  margin-top: 3px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 0;
}

.brand-location {
  margin-top: 3px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: var(--muted);
  border-radius: 7px;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  background: rgba(22, 20, 18, 0.06);
}

.site-nav .nav-admin {
  color: var(--accent-dark);
  border: 1px solid rgba(169, 58, 43, 0.24);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(650px, calc(100vh - 134px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(249, 248, 243, 0.98) 0%, rgba(249, 248, 243, 0.82) 34%, rgba(249, 248, 243, 0.1) 72%),
    linear-gradient(0deg, rgba(249, 248, 243, 0.9) 0%, rgba(249, 248, 243, 0) 34%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding: 42px 0 76px;
}

.eyebrow,
.section-kicker,
.meta-label {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Songti SC", "Noto Serif CJK SC", Georgia, serif;
  font-size: 82px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede,
.page-hero p {
  width: min(640px, 100%);
  margin: 28px 0 0;
  color: #3c3934;
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

.button.ghost {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.58);
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 5px;
  min-width: 240px;
  padding-top: 18px;
  border-top: 1px solid rgba(22, 20, 18, 0.25);
}

.hero-note span {
  color: var(--muted);
  font-size: 13px;
}

.hero-note strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.section-pad {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head h2,
.statement-grid h2,
.split-section h2,
.jury-section h2,
.partners-section h2,
.contact-panel h2,
.admin-intro h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: 0;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 700;
  border-bottom: 1px solid rgba(169, 58, 43, 0.45);
}

.statement {
  background: var(--panel);
}

.statement-grid,
.split-section,
.jury-section,
.partners-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.statement-grid p,
.split-section p,
.prose p,
.admin-intro p {
  margin: 0;
  color: #4a4741;
  font-size: 20px;
  line-height: 1.58;
}

.exhibition-band {
  background: linear-gradient(180deg, #eef1ed, var(--paper));
}

.feature-grid,
.criteria-grid,
.guideline-grid,
.principles-grid,
.content-grid,
.review-grid,
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-panel,
.criteria-grid article,
.guideline-grid article,
.principles-grid article,
.content-grid article,
.review-grid article,
.archive-grid article,
.metric-grid article {
  padding: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-panel h3,
.criteria-grid h3,
.guideline-grid h3,
.principles-grid h3,
.content-grid h3,
.review-grid h3,
.archive-grid h3,
.art-card h3,
.work-card h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
}

.feature-panel p,
.criteria-grid p,
.guideline-grid p,
.principles-grid p,
.content-grid p,
.review-grid p,
.archive-grid p,
.art-card p,
.work-card p,
.deadline-panel p,
.detail-copy p {
  margin: 0;
  color: var(--muted);
}

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

.art-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.art-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--soft);
}

.art-card-body {
  padding: 20px;
}

.flow-list {
  display: grid;
  gap: 22px;
}

.flow-list div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.flow-list span {
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: 30px;
}

.script-cloud,
.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.script-cloud span,
.partner-list span,
.filter-button,
.admin-tabs button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.scripts-section {
  background: linear-gradient(180deg, #f4f2ec, #edf2ef);
}

.page-hero {
  padding: clamp(86px, 11vw, 150px) clamp(20px, 6vw, 90px) clamp(56px, 8vw, 90px);
  border-bottom: 1px solid var(--line);
}

.page-hero.compact h1 {
  max-width: 940px;
  font-size: 72px;
}

.current-detail {
  background: var(--panel);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.large-detail {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.large-detail img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.detail-copy {
  display: grid;
  gap: 28px;
}

.fact-list,
.mini-facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.fact-list div,
.mini-facts div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.fact-list dt,
.mini-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.fact-list dd,
.mini-facts dd {
  margin: 4px 0 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.timeline span {
  color: var(--accent);
  font-weight: 800;
}

.timeline h3 {
  margin: 24px 0 10px;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.exhibition-index {
  position: relative;
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(54px, 7vw, 92px);
  overflow: hidden;
  color: #f7e9ce;
  background:
    linear-gradient(rgba(6, 27, 41, 0.91), rgba(6, 27, 41, 0.96)),
    repeating-linear-gradient(135deg, rgba(200, 148, 69, 0.08) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 16% 0%, rgba(200, 148, 69, 0.16), transparent 24rem),
    #061b29;
  border-top: 1px solid rgba(200, 148, 69, 0.42);
  border-bottom: 1px solid rgba(200, 148, 69, 0.42);
}

.exhibition-index .dark-section-head {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.exhibition-index .dark-section-head > span {
  color: #f4d9a4;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.exhibition-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.exhibition-index .exhibition-card {
  min-height: clamp(300px, 25vw, 380px);
  border-color: rgba(200, 148, 69, 0.54);
  background: #0a2533;
}

.exhibition-index .exhibition-card::before {
  border-color: rgba(242, 212, 157, 0.27);
}

.exhibition-index .exhibition-card::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(3, 13, 19, 0.9)),
    linear-gradient(90deg, rgba(3, 13, 19, 0.42), rgba(3, 13, 19, 0.05));
}

.exhibition-index .exhibition-card img {
  opacity: 0.72;
  object-fit: cover;
}

.exhibition-index .exhibition-card div {
  display: grid;
  gap: 10px;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.exhibition-index .exhibition-status {
  width: fit-content;
  min-height: 32px;
  margin-bottom: 4px;
  padding: 0 12px;
  color: #f7e9ce;
  background: rgba(151, 91, 42, 0.72);
  border-color: rgba(245, 209, 144, 0.42);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.exhibition-index .exhibition-card.is-current {
  border-color: rgba(242, 197, 112, 0.98);
  box-shadow:
    0 0 0 1px rgba(242, 197, 112, 0.32),
    0 22px 56px rgba(0, 0, 0, 0.28);
}

.exhibition-index .exhibition-card.is-current::before {
  border-color: rgba(255, 231, 178, 0.56);
}

.exhibition-index .exhibition-card.is-current .exhibition-status {
  color: #061b29;
  background: #f0bd68;
  border-color: #ffe0a0;
  box-shadow: 0 0 0 3px rgba(240, 189, 104, 0.2);
}

.exhibition-index .exhibition-card.is-ended img {
  filter: saturate(0.56) contrast(0.92);
  opacity: 0.56;
}

.exhibition-index .exhibition-card.is-ended .exhibition-status {
  color: #f1dfbd;
  background: rgba(70, 84, 88, 0.76);
  border-color: rgba(219, 203, 170, 0.34);
}

.exhibition-index .exhibition-card h3 {
  margin: 0;
  color: #fff4dc;
  font-size: clamp(25px, 2.3vw, 34px);
}

.exhibition-index .exhibition-card h3 span {
  display: block;
  margin-top: 6px;
  color: #d6ab68;
  font-size: clamp(18px, 1.7vw, 23px);
}

.exhibition-index .exhibition-card p {
  color: #f0dcb7;
  font-size: 14px;
  line-height: 1.52;
}

.exhibition-index .exhibition-card small {
  margin-top: 6px;
  color: #f7e4bf;
  font-size: 14px;
  font-weight: 700;
}

.exhibition-index .exhibition-card.is-current small {
  color: #fff2d6;
}

.jury-section {
  background: var(--soft);
}

.gallery-tools {
  padding-top: 48px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  cursor: pointer;
}

.filter-button.is-active,
.admin-tabs button.is-active {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  gap: 24px;
}

.work-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.work-card.is-hidden {
  display: none;
}

.work-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 7px;
}

.mini-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.submission-overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1.3fr);
  gap: 18px;
  background: var(--panel);
}

.deadline-panel {
  padding: 30px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
}

.deadline-panel .meta-label,
.deadline-panel p {
  color: rgba(251, 250, 247, 0.72);
}

.deadline-panel h2 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1.05;
}

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

.form-section {
  background: var(--soft);
}

.form-progress {
  display: flex;
  gap: 8px;
}

.form-progress span {
  width: 48px;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
}

.form-progress span.is-active {
  background: var(--accent);
}

.submission-form {
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.submission-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.submission-step.is-active {
  display: block;
}

.submission-step legend {
  margin-bottom: 24px;
  font-family: Georgia, serif;
  font-size: 28px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(169, 58, 43, 0.13);
}

textarea {
  resize: vertical;
}

.file-field {
  padding: 22px;
  background: #fffefa;
  border: 1px dashed #c9c0b4;
  border-radius: 8px;
}

.file-field span,
.check-field span {
  color: var(--muted);
  font-weight: 500;
}

.check-field {
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 24px;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.form-actions.between {
  justify-content: space-between;
}

.submission-result {
  margin-top: 20px;
  padding: 24px;
  background: #f7fbf8;
  border: 1px solid #cbd9cd;
  border-radius: 8px;
}

.submission-result h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: 24px;
}

.submission-result p {
  margin: 0;
  color: var(--muted);
}

.contact-join-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  scroll-margin-top: calc(var(--museum-header-height) + 18px);
}

.contact-join-copy h2 {
  margin: 0;
  color: #231a13;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.05;
}

.contact-join-copy > p:not(.eyebrow),
.membership-lede p {
  margin: 18px 0 0;
  color: #4d3b2a;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.72;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-methods a {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 16px 18px;
  color: #2b2118;
  background: rgba(249, 240, 223, 0.78);
  border: 1px solid rgba(117, 81, 40, 0.26);
  border-radius: 5px;
  box-shadow: 0 10px 22px rgba(57, 38, 18, 0.07);
}

.contact-methods span {
  color: #9a642b;
  font-family: Georgia, "Songti SC", serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-join-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(rgba(249, 240, 223, 0.95), rgba(249, 240, 223, 0.95)),
    repeating-linear-gradient(135deg, rgba(88, 55, 22, 0.055) 0 1px, transparent 1px 30px);
  border: 1px solid rgba(117, 81, 40, 0.3);
  border-radius: 5px;
  box-shadow: 0 14px 32px rgba(57, 38, 18, 0.1);
}

.contact-join-form label {
  color: #2b2118;
}

.contact-join-form .button {
  width: fit-content;
}

.membership-guide {
  scroll-margin-top: calc(var(--museum-header-height) + 18px);
}

.membership-lede {
  width: min(880px, 100%);
}

.membership-lede p {
  color: #ead2a7;
}

.membership-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  border: 1px solid rgba(200, 148, 69, 0.34);
  border-radius: 5px;
  overflow: hidden;
}

.membership-steps article {
  min-width: 0;
  min-height: 220px;
  padding: clamp(18px, 2vw, 26px);
  background:
    linear-gradient(rgba(9, 33, 47, 0.78), rgba(9, 33, 47, 0.9)),
    repeating-linear-gradient(135deg, rgba(200, 148, 69, 0.08) 0 1px, transparent 1px 34px);
  border-right: 1px solid rgba(200, 148, 69, 0.26);
}

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

.membership-steps span {
  color: #c89445;
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
}

.membership-steps h3,
.membership-rule-grid h3 {
  margin: 14px 0 10px;
  color: #fff0d4;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  line-height: 1.12;
}

.membership-steps p,
.membership-rule-grid p {
  margin: 0;
  color: #e8d1a8;
  line-height: 1.58;
}

.membership-rule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.membership-rule-grid article {
  min-width: 0;
  padding: 24px;
  background: rgba(9, 33, 47, 0.68);
  border: 1px solid rgba(200, 148, 69, 0.26);
  border-radius: 5px;
}

.prose {
  display: grid;
  gap: 22px;
}

.principles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partners-section {
  background: var(--panel);
}

.contact-panel {
  background: var(--soft);
}

.contact-panel .button {
  margin-top: 24px;
}

.admin-page {
  background: #f7f6f2;
}

.admin-shell {
  padding: clamp(48px, 7vw, 90px) clamp(20px, 5vw, 72px);
}

.admin-intro {
  max-width: 820px;
  margin-bottom: 34px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.admin-tabs button {
  cursor: pointer;
}

.admin-panel {
  display: none;
  padding: clamp(18px, 3vw, 30px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-panel.is-active {
  display: block;
}

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

.metric-grid article {
  background: #fffefa;
}

.metric-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.metric-grid strong {
  display: block;
  margin: 14px 0 6px;
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.metric-grid p {
  margin: 0;
  color: var(--muted);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 17px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status.submitted {
  color: #4c3925;
  background: #f4eadb;
}

.status.review {
  color: #2f4650;
  background: #e0edf1;
}

.status.revision {
  color: #6f2119;
  background: #f4dfdc;
}

.status.accepted {
  color: #2d5037;
  background: #dfeee3;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(20px, 5vw, 72px);
  color: rgba(251, 250, 247, 0.76);
  background: var(--ink);
}

.site-footer strong {
  color: var(--paper);
  font-family: Georgia, "Songti SC", serif;
  font-size: 20px;
  font-weight: 500;
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-links a:hover {
  color: var(--paper);
}

@media (max-width: 1020px) {
  .art-grid,
  .principles-grid,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .criteria-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(251, 250, 247, 0.97);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: min(660px, calc(100vh - 144px));
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(251, 250, 247, 0.98) 0%, rgba(251, 250, 247, 0.84) 48%, rgba(251, 250, 247, 0.4) 100%);
  }

  .hero-copy {
    align-self: start;
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 44px 0 66px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-note {
    right: 20px;
    bottom: 22px;
    left: 20px;
  }

  .section-head,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .statement-grid,
  .split-section,
  .jury-section,
  .partners-section,
  .detail-grid,
  .submission-overview,
  .contact-join-panel,
  .work-card {
    grid-template-columns: 1fr;
  }

  .guideline-grid,
  .field-grid,
  .mini-facts,
  .content-grid,
  .review-grid,
  .membership-rule-grid {
    grid-template-columns: 1fr;
  }

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

  .membership-steps article:nth-child(2) {
    border-right: 0;
  }

  .membership-steps article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(200, 148, 69, 0.26);
  }

  .exhibition-index .dark-section-head {
    align-items: start;
    flex-direction: column;
  }

  .exhibition-index .exhibition-card {
    min-height: 340px;
  }
}

@media (max-width: 620px) {
  .brand-mark {
    width: 36px;
    height: 36px;
  }

.brand-en {
    display: none;
  }

  .brand-location {
    display: none;
  }

  .page-hero.compact h1 {
    font-size: 46px;
  }

  .page-hero p,
  .hero-lede {
    font-size: 16px;
    line-height: 1.48;
  }

  .hero-lede {
    margin-top: 22px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 26px;
  }

  .art-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

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

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

  .timeline article,
  .timeline article:nth-child(2),
  .membership-steps article,
  .membership-steps article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .membership-steps article,
  .membership-steps article:nth-child(-n + 2) {
    border-bottom-color: rgba(200, 148, 69, 0.26);
  }

  .timeline article:last-child,
  .membership-steps article:last-child {
    border-bottom: 0;
  }

  .flow-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-actions,
  .form-actions.between {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

/* Heritage museum homepage */
.home-page {
  background:
    radial-gradient(circle at 18% 10%, rgba(181, 133, 66, 0.08), transparent 28rem),
    linear-gradient(180deg, #efe4d3 0%, #f6eddf 40%, #061a24 100%);
}

.museum-header,
.site-header {
  min-height: 76px;
  color: #f8ead0;
  background: rgba(5, 20, 29, 0.96);
  border-bottom: 1px solid rgba(206, 163, 92, 0.45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.22);
}

.brand-mark {
  width: 58px;
  height: 58px;
  color: #f3cf8f;
  background: transparent;
  border: 2px solid #c89445;
  border-radius: 3px;
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(200, 148, 69, 0.42);
}

.brand-ch {
  color: #fff7e8;
  font-size: 19px;
  max-width: 330px;
  white-space: normal;
}

.brand-en {
  max-width: 310px;
  color: #d6b57b;
  font-size: 10px;
  line-height: 1.18;
  white-space: normal;
}

.brand-location {
  color: #b89355;
  font-size: 10px;
}

.site-nav {
  gap: clamp(8px, 1.35vw, 24px);
}

.site-nav a {
  display: grid;
  gap: 2px;
  min-width: 52px;
  justify-items: center;
  padding: 8px 2px;
  color: #f5dfb7;
  border-radius: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: 15px;
  line-height: 1.12;
}

.site-nav a small {
  color: #caa66d;
  font-size: 11px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff6e4;
  background: transparent;
}

.site-nav .nav-item {
  position: relative;
  display: grid;
  align-items: center;
}

.site-nav .nav-item.has-dropdown::after {
  position: absolute;
  top: 100%;
  right: -16px;
  left: -16px;
  height: 18px;
  content: "";
}

.site-nav .nav-link {
  align-content: center;
  height: 100%;
  white-space: nowrap;
}

.site-nav .nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 218px;
  padding: 8px;
  pointer-events: none;
  background:
    linear-gradient(rgba(7, 29, 43, 0.98), rgba(7, 29, 43, 0.98)),
    repeating-linear-gradient(135deg, rgba(200, 148, 69, 0.08) 0 1px, transparent 1px 34px);
  border: 1px solid rgba(200, 148, 69, 0.48);
  border-radius: 5px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav .nav-item:hover .nav-dropdown,
.site-nav .nav-item:focus-within .nav-dropdown,
.site-nav .nav-item.is-open .nav-dropdown {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-nav .nav-dropdown a {
  min-width: 0;
  justify-items: start;
  padding: 10px 12px;
  color: #f7e4c0;
  font-size: 13px;
  line-height: 1.16;
}

.site-nav .nav-dropdown a small {
  color: #caa66d;
}

.site-nav .nav-dropdown a:hover {
  color: #fff6e4;
  background: rgba(200, 148, 69, 0.1);
}

.site-nav .nav-dropdown a::after {
  display: none;
}

.site-nav a::after {
  width: 0;
  height: 1px;
  content: "";
  background: #c89445;
  transition: width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.language-control {
  display: grid;
  gap: 3px;
  align-items: center;
  min-width: 88px;
  color: #f5dfb7;
  font-family: Georgia, "Songti SC", serif;
  font-size: 13px;
  font-weight: 500;
}

.language-control span {
  color: #caa66d;
  font-size: 11px;
  text-align: center;
}

.language-control select {
  min-height: 30px;
  padding: 3px 28px 3px 9px;
  color: #fff6e4;
  background: #071d2b;
  border: 1px solid rgba(200, 148, 69, 0.58);
  border-radius: 3px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
}

[dir="rtl"] .language-control select {
  padding: 3px 9px 3px 28px;
}

.nav-toggle {
  border-color: rgba(200, 148, 69, 0.65);
}

.nav-toggle span {
  background: #f5dfb7;
}

.heritage-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background: #ead8be;
  border-bottom: 1px solid #c89445;
}

.heritage-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.heritage-hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(237, 222, 199, 0.18), rgba(239, 225, 204, 0.88) 32%, rgba(234, 216, 190, 0.38) 66%, rgba(239, 225, 204, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 24, 28, 0.12));
}

.hero-title-panel {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 40px));
  margin-left: clamp(34px, 5vw, 88px);
  padding: 145px 0 0 clamp(20px, 2vw, 30px);
}

.hero-title-panel::before {
  position: absolute;
  top: 145px;
  bottom: 0;
  left: 0;
  width: 2px;
  content: "";
  background: rgba(115, 83, 41, 0.58);
}

.hero-kicker {
  margin: 0 0 16px;
  color: #735329;
  font-size: 13px;
  font-weight: 700;
}

.hero-title-panel h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.02;
}

.hero-title-panel p {
  width: min(420px, 100%);
  margin: 18px 0 0;
  color: #392c20;
  font-size: 15px;
}

.hero-title-panel strong {
  display: block;
  margin-top: 24px;
  font-family: "Songti SC", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.heritage-button,
.gold-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 0 22px;
  color: #f8ead0;
  background: #071d2b;
  border: 1px solid #c89445;
  border-radius: 3px;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.heritage-button:hover,
.gold-button:hover {
  transform: translateY(-1px);
  background: #0d2a3a;
}

.vertical-poem {
  position: absolute;
  top: 70px;
  right: clamp(22px, 4vw, 70px);
  z-index: 2;
  display: flex;
  gap: 22px;
  color: #2a2119;
  font-family: "Songti SC", Georgia, serif;
  font-size: 22px;
  writing-mode: vertical-rl;
}

.vertical-poem span {
  padding: 8px 0;
}

.heritage-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  min-height: 98px;
  padding: 18px clamp(24px, 6vw, 108px);
  color: #f7e3bd;
  background: #071d2b;
  border-top: 1px solid rgba(200, 148, 69, 0.45);
  border-bottom: 1px solid rgba(200, 148, 69, 0.45);
}

.heritage-stats article {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 0 clamp(14px, 3vw, 34px);
  border-right: 1px solid rgba(200, 148, 69, 0.32);
}

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

.stat-icon {
  color: #c89445;
  font-family: Georgia, serif;
  font-size: 30px;
}

.heritage-stats strong {
  color: #d7a652;
  font-family: Georgia, serif;
  font-size: 32px;
  font-weight: 500;
}

.heritage-stats p {
  margin: 0;
  color: #f2ddba;
  font-family: Georgia, "Songti SC", serif;
  font-size: 13px;
  line-height: 1.15;
}

.script-pattern-band {
  display: grid;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  align-items: center;
  min-height: 54px;
  padding: 0 clamp(22px, 6vw, 108px);
  overflow: hidden;
  color: rgba(212, 166, 86, 0.72);
  background:
    linear-gradient(90deg, rgba(5, 20, 29, 0.98), rgba(9, 31, 43, 0.94), rgba(5, 20, 29, 0.98)),
    repeating-linear-gradient(90deg, transparent 0, transparent 56px, rgba(200, 148, 69, 0.12) 57px);
  border-bottom: 1px solid rgba(200, 148, 69, 0.45);
}

.script-pattern-band span {
  display: grid;
  min-width: 0;
  place-items: center;
  font-family: "Songti SC", "Noto Serif CJK SC", Georgia, serif;
  font-size: 28px;
  line-height: 1;
  opacity: 0.82;
}

.traditions-section,
.archive-strip {
  position: relative;
  padding: 36px clamp(22px, 5vw, 72px) 56px;
  background:
    linear-gradient(rgba(243, 232, 214, 0.93), rgba(243, 232, 214, 0.93)),
    repeating-linear-gradient(45deg, rgba(92, 63, 28, 0.08) 0 1px, transparent 1px 34px),
    radial-gradient(circle at 50% 0%, rgba(193, 139, 62, 0.12), transparent 20rem),
    #f3e8d6;
}

.traditions-section::before,
.archive-strip::before {
  position: absolute;
  inset: 12px clamp(12px, 2vw, 28px);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(113, 78, 37, 0.18);
  box-shadow: inset 0 0 0 5px rgba(255, 248, 231, 0.16);
}

.traditions-section,
.join-section,
.museum-footer {
  scroll-margin-top: 88px;
}

.ornament-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 auto 28px;
  text-align: center;
}

.ornament-title > span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 90, 44, 0.45), transparent);
}

.ornament-title h2 {
  margin: 0;
  font-family: "Songti SC", Georgia, serif;
  font-size: 28px;
  font-weight: 500;
}

.ornament-title p {
  margin: 2px 0 0;
  color: #4b3825;
  font-family: Georgia, serif;
  font-size: 15px;
  text-transform: uppercase;
}

.tradition-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.tradition-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: #f9f0df;
  border: 1px solid rgba(117, 81, 40, 0.3);
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(57, 38, 18, 0.08);
}

.tradition-card::before {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: rgba(145, 56, 39, 0.64);
  border: 1px solid rgba(145, 56, 39, 0.42);
  content: "文";
  font-family: "Songti SC", serif;
  font-size: 14px;
  line-height: 1;
}

.tradition-card:nth-child(2)::before {
  content: "A";
  font-family: Georgia, serif;
}

.tradition-card:nth-child(3)::before {
  content: "ا";
  font-family: Georgia, serif;
  font-size: 18px;
}

.tradition-card:nth-child(4)::before {
  content: "𐤀";
  font-family: Georgia, serif;
}

.tradition-card:nth-child(5)::before {
  content: "श";
  font-family: Georgia, serif;
}

.tradition-card:nth-child(6)::before {
  content: "Ж";
  font-family: Georgia, serif;
}

.tradition-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.tradition-card div {
  display: grid;
  gap: 8px;
  padding: 18px 12px 16px;
  text-align: center;
}

.tradition-card h3,
.tradition-card strong {
  margin: 0;
  color: #2b2118;
  font-family: "Songti SC", Georgia, serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.15;
}

.tradition-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.tradition-card p {
  min-height: 54px;
  margin: 0;
  color: #604b34;
  font-size: 12px;
  line-height: 1.35;
}

.tradition-card a {
  margin-top: 8px;
  color: #2b2118;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.core-section {
  padding-top: clamp(44px, 6vw, 84px);
}

.core-intro {
  width: min(820px, 100%);
  margin: -10px auto 28px;
  color: #4f3b28;
  font-size: 16px;
  line-height: 1.72;
  text-align: center;
}

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

.core-tradition-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-width: 0;
  color: inherit;
  background:
    linear-gradient(rgba(249, 240, 223, 0.94), rgba(249, 240, 223, 0.94)),
    repeating-linear-gradient(135deg, rgba(88, 55, 22, 0.055) 0 1px, transparent 1px 30px);
  border: 1px solid rgba(117, 81, 40, 0.3);
  border-radius: 5px;
  box-shadow: 0 14px 30px rgba(57, 38, 18, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.core-card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 134, 67, 0.72);
  box-shadow: 0 18px 36px rgba(57, 38, 18, 0.16);
}

.core-tradition-card::before {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: rgba(145, 56, 39, 0.68);
  background: rgba(249, 240, 223, 0.62);
  border: 1px solid rgba(145, 56, 39, 0.42);
  content: "文";
  font-family: "Songti SC", serif;
  font-size: 15px;
  line-height: 1;
}

.core-tradition-card:nth-child(2)::before {
  content: "ا";
  font-family: Georgia, serif;
  font-size: 20px;
}

.core-tradition-card:nth-child(3)::before {
  content: "A";
  font-family: Georgia, serif;
}

.core-tradition-card:nth-child(4)::before {
  content: "श";
  font-family: Georgia, serif;
}

.core-tradition-card img {
  width: 100%;
  aspect-ratio: 5 / 3.4;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.core-tradition-card div {
  display: grid;
  gap: 8px;
  padding: 18px 16px 17px;
  text-align: center;
}

.core-tradition-card h3,
.core-tradition-card strong {
  margin: 0;
  color: #2b2118;
  font-family: "Songti SC", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.core-tradition-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.core-tradition-card p {
  min-height: 64px;
  margin: 0;
  color: #604b34;
  font-size: 13px;
  line-height: 1.42;
}

.core-tradition-card a,
.card-link-label {
  margin-top: 6px;
  color: #2b2118;
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-link-label {
  display: inline-block;
}

.featured-exhibitions {
  position: relative;
  padding: 36px clamp(22px, 5vw, 72px) 48px;
  overflow: hidden;
  color: #f7e9ce;
  background:
    linear-gradient(rgba(6, 27, 41, 0.9), rgba(6, 27, 41, 0.95)),
    repeating-linear-gradient(135deg, rgba(200, 148, 69, 0.08) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 12% 0%, rgba(200, 148, 69, 0.15), transparent 20rem),
    #061b29;
}

.script-watermark {
  position: absolute;
  inset: 16px 24px auto auto;
  display: flex;
  gap: 18px;
  color: rgba(200, 148, 69, 0.09);
  font-family: "Songti SC", Georgia, serif;
  font-size: 96px;
  pointer-events: none;
}

.dark-section-head,
.archive-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.dark-section-head p,
.join-copy p {
  margin: 0;
  color: #d0a35e;
  font-family: "Songti SC", Georgia, serif;
  font-size: 22px;
}

.dark-section-head h2,
.archive-head h2,
.join-copy h2 {
  margin: 0;
  font-family: Georgia, "Songti SC", serif;
  font-size: 21px;
  font-weight: 500;
  text-transform: uppercase;
}

.dark-section-head a,
.archive-head a {
  color: #f4d9a4;
  font-family: Georgia, serif;
  font-size: 13px;
  text-transform: uppercase;
}

.exhibition-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.news-card {
  display: grid;
  min-height: 230px;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  color: #f7e9ce;
  background:
    linear-gradient(rgba(9, 37, 51, 0.94), rgba(7, 30, 43, 0.98)),
    repeating-linear-gradient(135deg, rgba(200, 148, 69, 0.1) 0 1px, transparent 1px 32px);
  border: 1px solid rgba(200, 148, 69, 0.54);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.news-status {
  display: inline-flex;
  width: fit-content;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  color: #fff3dc;
  background: rgba(184, 125, 52, 0.72);
  border: 1px solid rgba(245, 209, 144, 0.42);
  border-radius: 3px;
  font-family: Georgia, "Songti SC", serif;
  font-size: 11px;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  color: #fff4dc;
  font-family: Georgia, "Songti SC", serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.12;
}

.news-card p,
.news-card small {
  display: block;
  margin: 0;
  color: #f0dcb7;
  font-size: 13px;
  line-height: 1.55;
}

.news-card small {
  color: #d6ab68;
  font-family: Georgia, serif;
}

.exhibition-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(200, 148, 69, 0.54);
  border-radius: 6px;
  background: #0a2533;
}

.exhibition-card::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(242, 212, 157, 0.26);
}

.exhibition-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.exhibition-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(3, 13, 19, 0.82));
}

.exhibition-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.exhibition-status {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  margin-bottom: 10px;
  padding: 0 9px;
  color: #fff3dc;
  background: rgba(184, 125, 52, 0.72);
  border: 1px solid rgba(245, 209, 144, 0.42);
  border-radius: 3px;
  font-family: Georgia, "Songti SC", serif;
  font-size: 11px;
  text-transform: uppercase;
}

.exhibition-card h3 {
  margin: 0 0 10px;
  color: #fff4dc;
  font-family: Georgia, "Songti SC", serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.05;
}

.exhibition-card h3 span {
  color: #d6ab68;
  font-size: 19px;
}

.exhibition-card p,
.exhibition-card small {
  display: block;
  margin: 0;
  color: #f0dcb7;
  font-size: 13px;
}

.exhibition-card small {
  margin-top: 14px;
}

.exhibition-apply-link {
  width: fit-content;
  margin-top: 28px;
  border-color: #c89445;
  font-family: Georgia, "Songti SC", serif;
}

.archive-head {
  color: #231a13;
}

.archive-head h2 {
  font-size: 26px;
}

.archive-head a {
  color: #5c3f1c;
}

.archive-row {
  display: grid;
  grid-template-columns: 32px repeat(6, minmax(0, 1fr)) 32px;
  gap: 16px;
  align-items: center;
}

.archive-row img {
  width: 100%;
  aspect-ratio: 1.23;
  object-fit: cover;
  border: 1px solid rgba(105, 73, 36, 0.34);
  border-radius: 3px;
  box-shadow: 0 12px 22px rgba(65, 46, 31, 0.1);
}

.archive-row button {
  display: grid;
  width: 32px;
  height: 44px;
  place-items: center;
  color: #412e1f;
  background: transparent;
  border: 0;
  font-family: Georgia, serif;
  font-size: 34px;
  cursor: pointer;
}

.archive-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.archive-dots span {
  width: 9px;
  height: 9px;
  border: 1px solid #7d5f33;
  border-radius: 50%;
}

.archive-dots .is-active {
  background: #9b7334;
}

.join-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 48px clamp(22px, 6vw, 120px);
  color: #f8e6c6;
  background:
    linear-gradient(90deg, rgba(6, 27, 41, 0.96), rgba(6, 27, 41, 0.9)),
    url("assets/beyond-the-script-global-hero.png") center / cover;
  border-top: 1px solid rgba(200, 148, 69, 0.45);
  border-bottom: 1px solid rgba(200, 148, 69, 0.45);
}

.join-script-border {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: end;
  padding: 0 clamp(18px, 4vw, 72px) 10px;
  color: rgba(200, 148, 69, 0.13);
  font-family: "Songti SC", Georgia, serif;
  font-size: 48px;
  pointer-events: none;
}

.join-script-border span:nth-child(even) {
  align-self: start;
  padding-top: 10px;
}

.join-copy,
.join-steps {
  position: relative;
  z-index: 1;
}

.join-copy h2 {
  margin-top: 6px;
  color: #fff0d4;
  font-size: 18px;
}

.join-copy span {
  display: block;
  max-width: 520px;
  margin-top: 16px;
  color: #ead2a7;
  font-size: 15px;
}

.gold-button {
  min-width: 260px;
  color: #fff2dc;
  background: #b78643;
  border-color: #e0b66e;
}

.gold-button:hover {
  background: #c89445;
}

.join-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.join-steps article {
  scroll-margin-top: calc(var(--museum-header-height) + 18px);
  min-height: 130px;
  padding: 14px 18px;
  border-left: 1px solid rgba(200, 148, 69, 0.45);
  text-align: center;
}

.join-steps strong {
  display: block;
  color: #f5d190;
  font-family: Georgia, serif;
  font-size: 15px;
  text-transform: uppercase;
}

.join-steps p {
  margin: 9px 0 0;
  color: #e9d2aa;
  font-size: 13px;
}

.museum-footer {
  padding: 44px clamp(22px, 5vw, 72px) 32px;
  color: #e6d0aa;
  background:
    linear-gradient(rgba(5, 24, 35, 0.96), rgba(5, 24, 35, 0.98)),
    repeating-linear-gradient(90deg, transparent 0, transparent 48px, rgba(200, 148, 69, 0.08) 49px),
    #051823;
}

.museum-footer > .footer-brand {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.footer-brand p,
.footer-brand span {
  margin: 0;
  color: #d1a35b;
  font-family: "Songti SC", Georgia, serif;
}

.footer-brand span {
  color: #e5cfaa;
  font-family: Georgia, serif;
}

.museum-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr minmax(280px, 1.2fr);
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(200, 148, 69, 0.24);
}

.museum-footer-grid section {
  display: grid;
  align-content: start;
  gap: 9px;
}

.museum-footer h3 {
  margin: 0 0 6px;
  color: #fff0d2;
  font-family: "Songti SC", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
}

.museum-footer a {
  color: #d9c19a;
  font-size: 14px;
}

.newsletter label {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 0;
  margin-top: 8px;
}

.newsletter label span {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: #b89355;
  font-size: 12px;
  text-transform: uppercase;
}

.newsletter input {
  min-height: 42px;
  color: #f8ead0;
  background: transparent;
  border: 1px solid rgba(200, 148, 69, 0.64);
  border-right: 0;
  border-radius: 0;
}

.newsletter button {
  color: #071d2b;
  background: #b78643;
  border: 1px solid #b78643;
  cursor: pointer;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 18px;
  color: #b89e76;
  border-top: 1px solid rgba(200, 148, 69, 0.2);
  font-size: 12px;
}

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

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

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

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

  .archive-row {
    grid-template-columns: 32px repeat(3, minmax(0, 1fr)) 32px;
  }

  .archive-row img:nth-of-type(n + 4) {
    display: none;
  }

  .join-section,
  .museum-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .latest-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 82px;
  }

  .back-to-hero {
    top: 20px;
    left: 22px;
    width: 40px;
    height: 40px;
  }

  .heritage-hero {
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
  }

  .heritage-hero-wash {
    background: linear-gradient(180deg, rgba(239, 225, 204, 0.94), rgba(239, 225, 204, 0.54));
  }

  .hero-title-panel {
    width: min(560px, calc(100% - 40px));
    margin-left: clamp(28px, 6vw, 56px);
    padding: 110px 0 0 18px;
  }

  .hero-title-panel::before {
    top: 110px;
  }

  .hero-title-panel h1 {
    font-size: 42px;
  }

  .vertical-poem {
    right: 20px;
    font-size: 18px;
    opacity: 0.72;
  }

  .heritage-stats,
  .news-cards,
  .exhibition-cards,
  .join-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .heritage-stats article {
    border-bottom: 1px solid rgba(200, 148, 69, 0.24);
  }
}

@media (max-width: 820px) {
  .site-nav {
    gap: 0;
    background: rgba(5, 20, 29, 0.98);
    border-color: rgba(200, 148, 69, 0.5);
  }

  .site-nav .nav-item {
    width: 100%;
  }

  .site-nav .nav-item.has-dropdown::after {
    display: none;
  }

  .site-nav .nav-dropdown {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    display: none;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0 0 8px 18px;
    pointer-events: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .site-nav .nav-item.is-open .nav-dropdown {
    display: grid;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    justify-items: start;
    padding: 12px 14px;
  }

  .site-nav .nav-dropdown a {
    width: 100%;
    min-width: 0;
    justify-items: start;
    padding: 8px 14px;
    border-left: 1px solid rgba(200, 148, 69, 0.34);
  }

  .site-nav a small {
    display: block;
  }

  .language-control {
    justify-items: start;
    padding: 12px 14px;
  }

  .language-control span {
    text-align: left;
  }

  .language-control select {
    width: 100%;
  }
}

[dir="rtl"] .hero-title-panel,
[dir="rtl"] .join-copy,
[dir="rtl"] .museum-footer,
[dir="rtl"] .tradition-card div,
[dir="rtl"] .exhibition-card div {
  direction: rtl;
}

[dir="rtl"] .site-nav a,
[dir="rtl"] .language-control {
  direction: rtl;
}

[dir="rtl"] .vertical-poem {
  left: clamp(22px, 4vw, 70px);
  right: auto;
}

html[lang="ar"] body {
  font-family: "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
}

html[lang="ar"] .site-header {
  gap: 18px;
}

html[lang="ar"] .brand {
  max-width: clamp(250px, 25vw, 370px);
  text-align: right;
}

html[lang="ar"] .brand-ch {
  font-family: "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.22;
}

html[lang="ar"] .brand-en,
html[lang="ar"] .brand-location {
  direction: ltr;
  unicode-bidi: isolate;
}

html[lang="ar"] .site-nav {
  gap: clamp(6px, 1.25vw, 22px);
  min-width: 0;
}

html[lang="ar"] .site-nav a {
  min-width: 58px;
  font-family: "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.18;
}

html[lang="ar"] .site-nav a small {
  direction: ltr;
  font-family: Georgia, "Times New Roman", serif;
  unicode-bidi: isolate;
}

html[lang="ar"] .language-control {
  min-width: 92px;
  font-family: "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
}

html[lang="ar"] .language-control select {
  font-family: "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
}

html[lang="ar"] .heritage-hero-wash {
  background:
    linear-gradient(270deg, rgba(239, 225, 204, 0.94), rgba(239, 225, 204, 0.82) 34%, rgba(234, 216, 190, 0.28) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(13, 24, 28, 0.12));
}

html[lang="ar"] .hero-title-panel {
  width: min(560px, calc(100% - 48px));
  margin-right: clamp(24px, 6vw, 96px);
  margin-left: auto;
  padding-top: 128px;
  text-align: right;
}

html[lang="ar"] .hero-kicker {
  font-family: "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  unicode-bidi: plaintext;
}

html[lang="ar"] .hero-title-panel h1 {
  max-width: 11.5em;
  margin-right: 0;
  margin-left: auto;
  font-family: "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.16;
}

html[lang="ar"] .hero-title-panel p,
html[lang="ar"] .hero-title-panel strong {
  margin-right: 0;
  margin-left: auto;
  font-family: "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
}

html[lang="ar"] .hero-title-panel p {
  font-size: 17px;
  line-height: 1.7;
}

html[lang="ar"] .hero-title-panel strong {
  font-size: 24px;
}

html[lang="ar"] .heritage-button,
html[lang="ar"] .gold-button {
  font-family: "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
  font-size: 14px;
  text-transform: none;
}

html[lang="ar"] .vertical-poem {
  display: none;
}

html[lang="ar"] .page-hero {
  text-align: right;
}

html[lang="ar"] .exhibitions-page .page-hero,
html[lang="ar"] .gallery-page .page-hero,
html[lang="ar"] .submit-page .page-hero,
html[lang="ar"] .about-page .page-hero,
html[lang="ar"] .programs-page .page-hero {
  background:
    linear-gradient(270deg, rgba(239, 225, 204, 0.96), rgba(239, 225, 204, 0.84) 42%, rgba(239, 225, 204, 0.36) 78%),
    linear-gradient(180deg, rgba(243, 232, 214, 0.24), rgba(6, 27, 41, 0.12)),
    url("assets/beyond-the-script-global-hero.png") center / cover;
}

html[lang="ar"] .page-hero > *,
html[lang="ar"] .page-hero p:not(.eyebrow) {
  margin-right: 0;
  margin-left: auto;
}

html[lang="ar"] .page-hero.compact h1 {
  font-family: "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
  font-size: 62px;
  line-height: 1.12;
}

html[lang="ar"] .section-head,
html[lang="ar"] .footer-bottom {
  text-align: right;
}

html[lang="ar"] .feature-panel,
html[lang="ar"] .criteria-grid article,
html[lang="ar"] .guideline-grid article,
html[lang="ar"] .principles-grid article,
html[lang="ar"] .content-grid article,
html[lang="ar"] .review-grid article,
html[lang="ar"] .archive-grid article,
html[lang="ar"] .metric-grid article,
html[lang="ar"] .work-card,
html[lang="ar"] .submission-form,
html[lang="ar"] .large-detail,
html[lang="ar"] .contact-panel {
  text-align: right;
}

@media (max-width: 680px) {
  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 11px;
  }

  .brand-ch {
    font-size: 17px;
  }

  .heritage-hero {
    min-height: calc(100vh - 76px);
    min-height: calc(100svh - 76px);
  }

  .hero-title-panel {
    width: min(330px, calc(100% - 44px));
    margin-left: 22px;
    padding: 84px 0 0 16px;
  }

  .hero-title-panel::before {
    top: 84px;
  }

  .hero-title-panel h1 {
    font-size: 34px;
  }

  .hero-title-panel strong {
    font-size: 20px;
  }

  .vertical-poem {
    display: none;
  }

  .heritage-stats,
  .core-tradition-grid,
  .past-work-grid,
  .tradition-grid,
  .news-cards,
  .exhibition-card-grid,
  .exhibition-cards,
  .join-section,
  .join-steps,
  .museum-footer-grid {
    grid-template-columns: 1fr;
  }

  .heritage-stats article,
  .heritage-stats article:nth-child(2),
  .join-steps article {
    border-right: 0;
    border-left: 0;
  }

  .dark-section-head,
  .archive-head,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .archive-row {
    grid-template-columns: 28px 1fr 1fr 28px;
    gap: 10px;
  }

  .latest-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .archive-row img:nth-of-type(n + 3) {
    display: none;
  }

  .gold-button,
  .heritage-button {
    width: 100%;
  }
}

/* Unified museum interior pages */
.exhibitions-page,
.gallery-page,
.submit-page,
.about-page,
.programs-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(200, 148, 69, 0.12), transparent 28rem),
    linear-gradient(180deg, #071d2b 0, #071d2b 76px, #f2e4cd 76px, #f6eddf 100%);
}

.exhibitions-page main,
.gallery-page main,
.submit-page main,
.about-page main,
.programs-page main {
  background: #f3e8d6;
}

.exhibitions-page .page-hero,
.gallery-page .page-hero,
.submit-page .page-hero,
.about-page .page-hero,
.programs-page .page-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - var(--museum-header-height));
  min-height: calc(100svh - var(--museum-header-height));
  align-content: center;
  overflow: hidden;
  padding: clamp(54px, 8vh, 110px) clamp(22px, 8vw, 148px);
  color: #2b2118;
  background:
    linear-gradient(90deg, rgba(239, 225, 204, 0.96), rgba(239, 225, 204, 0.84) 42%, rgba(239, 225, 204, 0.36) 78%),
    linear-gradient(180deg, rgba(243, 232, 214, 0.24), rgba(6, 27, 41, 0.12)),
    url("assets/beyond-the-script-global-hero.png") center / cover;
  border-bottom: 1px solid #c89445;
}

.exhibitions-page .page-hero::before,
.gallery-page .page-hero::before,
.submit-page .page-hero::before,
.about-page .page-hero::before,
.programs-page .page-hero::before {
  position: absolute;
  inset: 22px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(127, 90, 44, 0.26);
  box-shadow: inset 0 0 0 6px rgba(255, 248, 231, 0.18);
}

.exhibitions-page .page-hero::after,
.gallery-page .page-hero::after,
.submit-page .page-hero::after,
.about-page .page-hero::after,
.programs-page .page-hero::after {
  position: absolute;
  right: clamp(20px, 6vw, 96px);
  bottom: clamp(18px, 5vw, 76px);
  color: rgba(30, 24, 18, 0.16);
  content: "漢  A  ا  श  א  Ж";
  font-family: "Songti SC", Georgia, serif;
  font-size: clamp(34px, 5vw, 76px);
  letter-spacing: 0;
  white-space: nowrap;
}

.exhibitions-page .page-hero > *,
.gallery-page .page-hero > *,
.submit-page .page-hero > *,
.about-page .page-hero > *,
.programs-page .page-hero > * {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.exhibitions-page .page-hero .eyebrow,
.gallery-page .page-hero .eyebrow,
.submit-page .page-hero .eyebrow,
.about-page .page-hero .eyebrow,
.programs-page .page-hero .eyebrow {
  color: #745029;
  font-family: Georgia, "Songti SC", serif;
  font-size: 14px;
}

.exhibitions-page .page-hero.compact h1,
.gallery-page .page-hero.compact h1,
.submit-page .page-hero.compact h1,
.about-page .page-hero.compact h1,
.programs-page .page-hero.compact h1 {
  max-width: 980px;
  color: #100d0a;
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1;
}

.exhibitions-page .page-hero p:not(.eyebrow),
.gallery-page .page-hero p:not(.eyebrow),
.submit-page .page-hero p:not(.eyebrow),
.about-page .page-hero p:not(.eyebrow),
.programs-page .page-hero p:not(.eyebrow) {
  width: min(720px, 100%);
  color: #3b3025;
  font-size: clamp(16px, 1.45vw, 20px);
}

.exhibitions-page .section-pad,
.gallery-page .section-pad,
.submit-page .section-pad,
.about-page .section-pad,
.programs-page .section-pad {
  position: relative;
  padding: clamp(54px, 7vw, 96px) clamp(22px, 5vw, 72px);
  background:
    linear-gradient(rgba(243, 232, 214, 0.94), rgba(243, 232, 214, 0.94)),
    repeating-linear-gradient(45deg, rgba(92, 63, 28, 0.08) 0 1px, transparent 1px 34px),
    radial-gradient(circle at 50% 0%, rgba(193, 139, 62, 0.12), transparent 22rem),
    #f3e8d6;
  border-bottom: 1px solid rgba(113, 78, 37, 0.16);
}

.exhibitions-page .section-pad::before,
.gallery-page .section-pad::before,
.submit-page .section-pad::before,
.about-page .section-pad::before,
.programs-page .section-pad::before {
  position: absolute;
  inset: 14px clamp(12px, 2vw, 28px);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(113, 78, 37, 0.15);
  box-shadow: inset 0 0 0 5px rgba(255, 248, 231, 0.15);
}

.exhibitions-page .section-pad > *,
.gallery-page .section-pad > *,
.submit-page .section-pad > *,
.about-page .section-pad > *,
.programs-page .section-pad > * {
  position: relative;
  z-index: 1;
}

.exhibitions-page .section-head h2,
.gallery-page .section-head h2,
.submit-page .section-head h2,
.about-page .section-head h2,
.about-page .split-section h2,
.about-page .partners-section h2,
.about-page .contact-panel h2 {
  color: #231a13;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(32px, 4vw, 52px);
}

.exhibitions-page .eyebrow,
.gallery-page .eyebrow,
.submit-page .eyebrow,
.about-page .eyebrow,
.exhibitions-page .meta-label,
.gallery-page .meta-label,
.submit-page .meta-label,
.about-page .meta-label {
  color: #9a642b;
  font-family: Georgia, "Songti SC", serif;
}

.feature-panel,
.criteria-grid article,
.guideline-grid article,
.principles-grid article,
.content-grid article,
.review-grid article,
.archive-grid article,
.metric-grid article,
.work-card,
.submission-form,
.large-detail,
.file-field,
.submission-result {
  background:
    linear-gradient(rgba(249, 240, 223, 0.94), rgba(249, 240, 223, 0.94)),
    repeating-linear-gradient(135deg, rgba(88, 55, 22, 0.055) 0 1px, transparent 1px 30px);
  border-color: rgba(117, 81, 40, 0.3);
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(57, 38, 18, 0.08);
}

.work-card {
  overflow: hidden;
}

.work-card img,
.large-detail img {
  border-radius: 3px;
  filter: saturate(0.92) contrast(1.02);
}

.exhibitions-page .timeline {
  overflow: hidden;
  border-color: rgba(117, 81, 40, 0.26);
  border-radius: 5px;
  background: #f9f0df;
  box-shadow: 0 12px 28px rgba(57, 38, 18, 0.08);
}

.exhibitions-page .timeline article {
  border-color: rgba(117, 81, 40, 0.24);
  background:
    linear-gradient(rgba(249, 240, 223, 0.88), rgba(249, 240, 223, 0.88)),
    repeating-linear-gradient(135deg, rgba(88, 55, 22, 0.05) 0 1px, transparent 1px 28px);
}

.exhibitions-page .timeline span {
  color: #a46d2d;
  font-family: Georgia, serif;
}

.exhibitions-page .jury-section,
.submit-page .form-section,
.submit-page .membership-guide,
.about-page .contact-panel {
  color: #f7e9ce;
  background:
    linear-gradient(rgba(6, 27, 41, 0.91), rgba(6, 27, 41, 0.96)),
    repeating-linear-gradient(135deg, rgba(200, 148, 69, 0.08) 0 1px, transparent 1px 42px),
    radial-gradient(circle at 12% 0%, rgba(200, 148, 69, 0.15), transparent 20rem),
    #061b29;
  border-color: rgba(200, 148, 69, 0.34);
}

.exhibitions-page .jury-section::before,
.submit-page .form-section::before,
.submit-page .membership-guide::before,
.about-page .contact-panel::before {
  border-color: rgba(200, 148, 69, 0.2);
  box-shadow: inset 0 0 0 5px rgba(200, 148, 69, 0.04);
}

.exhibitions-page .jury-section .eyebrow,
.submit-page .form-section .eyebrow,
.submit-page .membership-guide .eyebrow,
.about-page .contact-panel .eyebrow {
  color: #d0a35e;
}

.exhibitions-page .jury-section h2,
.submit-page .form-section h2,
.submit-page .membership-guide h2,
.about-page .contact-panel h2 {
  color: #fff0d4;
}

.exhibitions-page .criteria-grid article,
.submit-page .submission-form,
.about-page .contact-panel .button {
  border-color: rgba(200, 148, 69, 0.5);
}

.submit-page .submission-form {
  color: #2b2118;
}

.submit-page .form-progress span {
  background: rgba(200, 148, 69, 0.28);
}

.submit-page .form-progress span.is-active {
  background: #c89445;
}

.button.primary,
.filter-button.is-active,
.admin-tabs button.is-active {
  color: #f8ead0;
  background: #071d2b;
  border-color: #c89445;
}

.button.ghost {
  color: #071d2b;
  background: rgba(249, 240, 223, 0.72);
  border-color: rgba(117, 81, 40, 0.36);
}

.filter-button,
.admin-tabs button,
.script-cloud span,
.partner-list span {
  border-color: rgba(117, 81, 40, 0.3);
  border-radius: 5px;
  background: rgba(249, 240, 223, 0.84);
}

.about-page .partner-list span {
  min-height: 46px;
  font-family: Georgia, "Songti SC", serif;
}

.latest-page main {
  background: #f3e8d6;
}

.latest-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - var(--museum-header-height));
  min-height: calc(100svh - var(--museum-header-height));
  padding: clamp(34px, 6vw, 78px) clamp(22px, 6vw, 96px);
  color: #2b2118;
  background:
    linear-gradient(rgba(243, 232, 214, 0.93), rgba(243, 232, 214, 0.93)),
    repeating-linear-gradient(45deg, rgba(92, 63, 28, 0.08) 0 1px, transparent 1px 34px),
    radial-gradient(circle at 82% 8%, rgba(193, 139, 62, 0.16), transparent 24rem),
    #f3e8d6;
  border-bottom: 1px solid rgba(113, 78, 37, 0.18);
}

.latest-showcase::before {
  position: absolute;
  inset: 16px clamp(12px, 2vw, 28px);
  pointer-events: none;
  content: "";
  border: 1px solid rgba(113, 78, 37, 0.17);
  box-shadow: inset 0 0 0 5px rgba(255, 248, 231, 0.15);
}

.latest-showcase > * {
  position: relative;
  z-index: 1;
}

.back-to-hero {
  position: fixed;
  top: calc(var(--museum-header-height) + 22px);
  left: clamp(22px, 3.4vw, 58px);
  z-index: 19;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #071d2b;
  background: rgba(249, 240, 223, 0.78);
  border: 1px solid rgba(117, 81, 40, 0.28);
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(57, 38, 18, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.back-to-hero span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-hero:hover {
  transform: translateX(-2px);
  background: rgba(255, 247, 231, 0.92);
  border-color: rgba(183, 134, 67, 0.58);
}

.latest-showcase-media {
  overflow: hidden;
  border: 1px solid rgba(117, 81, 40, 0.34);
  border-radius: 5px;
  box-shadow: 0 18px 38px rgba(57, 38, 18, 0.12);
}

.latest-showcase-media img {
  width: 100%;
  aspect-ratio: 4 / 3.1;
  object-fit: cover;
}

.latest-showcase-copy {
  display: grid;
  gap: 18px;
}

.latest-showcase-copy h1 {
  margin: 0;
  color: #17110c;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(44px, 5.8vw, 86px);
  font-weight: 500;
  line-height: 0.98;
}

.latest-showcase-copy > p:not(.eyebrow) {
  width: min(620px, 100%);
  margin: 0;
  color: #463728;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.62;
}

.latest-facts {
  display: grid;
  gap: 10px;
  margin: 0;
}

.latest-facts div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(117, 81, 40, 0.24);
}

.latest-facts dt {
  color: #9a642b;
  font-family: Georgia, serif;
  font-weight: 700;
}

.latest-facts dd {
  margin: 0;
  color: #3f3328;
}

.past-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.past-work-card {
  overflow: hidden;
  background:
    linear-gradient(rgba(249, 240, 223, 0.94), rgba(249, 240, 223, 0.94)),
    repeating-linear-gradient(135deg, rgba(88, 55, 22, 0.055) 0 1px, transparent 1px 30px);
  border: 1px solid rgba(117, 81, 40, 0.3);
  border-radius: 5px;
  box-shadow: 0 12px 28px rgba(57, 38, 18, 0.08);
}

.past-work-card img {
  width: 100%;
  aspect-ratio: 4 / 2.8;
  object-fit: cover;
}

.past-work-card div {
  padding: 20px;
}

.past-work-card h3 {
  margin: 0 0 10px;
  color: #231a13;
  font-family: Georgia, "Songti SC", serif;
  font-size: 24px;
  font-weight: 500;
}

.past-work-card p {
  margin: 0;
  color: #604b34;
}

@media (max-width: 820px) {
  :root {
    --museum-header-height: 76px;
  }

  .exhibitions-page .page-hero,
  .gallery-page .page-hero,
  .submit-page .page-hero,
  .about-page .page-hero,
  .programs-page .page-hero {
    min-height: calc(100vh - var(--museum-header-height));
    min-height: calc(100svh - var(--museum-header-height));
    padding: 42px 22px;
  }

  .exhibitions-page .page-hero::after,
  .gallery-page .page-hero::after,
  .submit-page .page-hero::after,
  .about-page .page-hero::after,
  .programs-page .page-hero::after {
    right: 20px;
    bottom: 22px;
    font-size: 34px;
    opacity: 0.78;
  }
}

@media (max-width: 620px) {
  .exhibitions-page .page-hero.compact h1,
  .gallery-page .page-hero.compact h1,
  .submit-page .page-hero.compact h1,
  .about-page .page-hero.compact h1,
  .programs-page .page-hero.compact h1 {
    font-size: 38px;
  }

  .exhibitions-page .page-hero::before,
  .gallery-page .page-hero::before,
  .submit-page .page-hero::before,
  .about-page .page-hero::before,
  .programs-page .page-hero::before {
    inset: 12px;
  }

  .exhibition-apply-link {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .latest-page {
    overflow-x: hidden;
  }

  .latest-showcase {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    min-height: auto;
    padding: 82px clamp(22px, 6vw, 34px) 44px;
    overflow: hidden;
  }

  .latest-showcase::before {
    inset: 14px;
  }

  .back-to-hero {
    top: calc(var(--museum-header-height) + 18px);
    left: 22px;
    width: 42px;
    height: 42px;
  }

  .latest-showcase-media,
  .latest-showcase-copy {
    width: 100%;
    min-width: 0;
  }

  .latest-showcase-media {
    order: 1;
  }

  .latest-showcase-copy {
    order: 2;
    gap: 15px;
  }

  .latest-showcase-copy h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .latest-showcase-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.55;
  }

  .latest-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 0;
  }

  .latest-showcase .button {
    width: 100%;
  }

  .past-work-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 520px) {
  .latest-showcase {
    padding: 78px 22px 38px;
  }

  .latest-showcase-media img {
    aspect-ratio: 4 / 3.25;
  }

  .latest-showcase-copy h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .latest-page .past-exhibitions {
    padding-right: 22px;
    padding-left: 22px;
  }
}

.article-page {
  background:
    radial-gradient(circle at 18% 8%, rgba(200, 148, 69, 0.12), transparent 28rem),
    linear-gradient(180deg, #071d2b 0, #071d2b 76px, #f2e4cd 76px, #f6eddf 100%);
}

.article-page main {
  background: #f3e8d6;
}

.article-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  align-content: end;
  overflow: hidden;
  padding: 104px clamp(22px, 8vw, 148px) 64px;
  color: #2b2118;
  background:
    linear-gradient(90deg, rgba(239, 225, 204, 0.97), rgba(239, 225, 204, 0.82) 46%, rgba(239, 225, 204, 0.34) 82%),
    linear-gradient(180deg, rgba(243, 232, 214, 0.12), rgba(6, 27, 41, 0.12)),
    url("assets/work-bamboo-bone.png") center / cover;
  border-bottom: 1px solid #c89445;
}

.arabic-article-page .article-hero {
  background:
    linear-gradient(90deg, rgba(239, 225, 204, 0.97), rgba(239, 225, 204, 0.8) 44%, rgba(239, 225, 204, 0.3) 82%),
    linear-gradient(180deg, rgba(243, 232, 214, 0.1), rgba(6, 27, 41, 0.18)),
    url("assets/work-arabic-leather.png") center / cover;
}

.article-hero::before {
  position: absolute;
  inset: 22px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(127, 90, 44, 0.24);
  box-shadow: inset 0 0 0 6px rgba(255, 248, 231, 0.18);
}

.article-hero > * {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.back-to-traditions {
  position: fixed;
  top: calc(var(--museum-header-height) + 22px);
  left: clamp(22px, 3.4vw, 58px);
  z-index: 19;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #071d2b;
  background: rgba(249, 240, 223, 0.78);
  border: 1px solid rgba(117, 81, 40, 0.28);
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(57, 38, 18, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.back-to-traditions span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-traditions:hover {
  transform: translateX(-2px);
  background: rgba(255, 247, 231, 0.92);
  border-color: rgba(183, 134, 67, 0.58);
}

.article-hero h1 {
  margin: 0;
  color: #100d0a;
  font-family: "Songti SC", Georgia, serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  line-height: 1;
}

.article-hero p:not(.eyebrow) {
  width: min(680px, 100%);
  margin: 22px 0 0;
  color: #3b3025;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.65;
}

.article-shell {
  position: relative;
  padding: clamp(42px, 7vw, 92px) clamp(22px, 6vw, 96px);
  background:
    linear-gradient(rgba(243, 232, 214, 0.94), rgba(243, 232, 214, 0.94)),
    repeating-linear-gradient(45deg, rgba(92, 63, 28, 0.08) 0 1px, transparent 1px 34px),
    #f3e8d6;
}

.article-body {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(rgba(249, 240, 223, 0.96), rgba(249, 240, 223, 0.96)),
    repeating-linear-gradient(135deg, rgba(88, 55, 22, 0.045) 0 1px, transparent 1px 30px);
  border: 1px solid rgba(117, 81, 40, 0.26);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(57, 38, 18, 0.09);
}

.article-body p {
  margin: 0 0 18px;
  color: #3f3328;
  font-size: 18px;
  line-height: 1.9;
}

.article-body h2 {
  margin: 42px 0 18px;
  color: #17110c;
  font-family: "Songti SC", Georgia, serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 500;
  line-height: 1.1;
}

.article-term-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.article-term-grid section,
.figure-list p {
  padding: 18px;
  background: rgba(255, 248, 231, 0.48);
  border: 1px solid rgba(117, 81, 40, 0.18);
  border-radius: 5px;
}

.article-term-grid h3 {
  margin: 0 0 8px;
  color: #9a642b;
  font-family: "Songti SC", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.article-term-grid p,
.figure-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

.figure-list {
  display: grid;
  gap: 12px;
}

.figure-list strong {
  color: #9a642b;
  font-family: "Songti SC", Georgia, serif;
  font-weight: 600;
}

.source-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.source-list a {
  display: block;
  padding: 13px 16px;
  color: #2b2118;
  background: rgba(255, 248, 231, 0.5);
  border: 1px solid rgba(117, 81, 40, 0.18);
  border-radius: 5px;
  font-weight: 700;
}

.source-list a:hover {
  color: #071d2b;
  border-color: rgba(183, 134, 67, 0.58);
}

@media (max-width: 820px) {
  .article-hero {
    min-height: 360px;
    padding: 90px 22px 44px;
  }

  .article-hero::before {
    inset: 14px;
  }

  .back-to-traditions {
    top: calc(var(--museum-header-height) + 18px);
    left: 22px;
    width: 40px;
    height: 40px;
  }

  .article-shell {
    padding: 28px 18px 46px;
  }

  .article-body {
    padding: 24px 18px;
  }

  .article-body p {
    font-size: 16px;
    line-height: 1.78;
  }

  .article-term-grid {
    grid-template-columns: 1fr;
  }
}
