:root {
  --bg: #121212;
  --bg-soft: #181818;
  --bg-muted: #1d1917;
  --paper: #f7f3eb;
  --paper-soft: #ebe3d5;
  --text: #f6f0e6;
  --text-muted: #b6ab9d;
  --line: rgba(247, 243, 235, 0.12);
  --red: #c61f2b;
  --red-bright: #e53935;
  --gold: #b98b2f;
  --dark-text: #181614;
  --font-cn: "Noto Serif SC", serif;
  --font-ui: "Noto Sans SC", sans-serif;
  --font-en: "Cormorant Garamond", serif;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.28);
  --space-section: 60px;
  --space-section-mobile: 44px;
  --space-title-copy: 18px;
  --space-title-translation: 14px;
  --space-block: 24px;
  --space-grid: 24px;
  --anchor-offset: 168px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(198, 31, 43, 0.16), transparent 26%),
    linear-gradient(180deg, #111 0%, #151312 32%, #111 100%);
  color: var(--text);
  font-family: var(--font-ui);
}

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

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

.site-shell {
  min-height: 100vh;
}

#top,
#about,
#artists,
#collections,
#ai-awards,
#digital-art,
#news,
#contact {
  scroll-margin-top: var(--anchor-offset);
}

.section-anchor {
  position: relative;
  width: 100%;
  height: 0;
  scroll-margin-top: 16px;
}

#artists-anchor {
  scroll-margin-top: 2px;
}

#collections-anchor,
#ai-awards-anchor,
#digital-art-anchor,
#news-anchor,
#contact-anchor {
  scroll-margin-top: 8px;
}

.hero-inner,
.section-shell,
.cta-inner,
.site-footer {
  width: min(1248px, calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr) 286px;
  align-items: center;
  gap: 28px;
  min-height: 88px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 10px 96px;
  backdrop-filter: blur(16px);
  background: rgba(18, 18, 18, 0.62);
  border-bottom: 1px solid rgba(247, 243, 235, 0.05);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  height: 42px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.86) 0%,
    rgba(18, 18, 18, 0.48) 52%,
    rgba(18, 18, 18, 0) 100%
  );
}

.brand-mark {
  padding: 4px 0;
}

.brand-mark img,
.footer-brand img {
  width: 100%;
  object-fit: contain;
}

.brand-mark img {
  width: auto;
  max-height: 90px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
  justify-self: center;
  font-size: 14px;
  color: var(--text-muted);
  padding-top: 22px;
}

.site-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.1;
}

.site-nav a span {
  font-size: 14px;
}

.site-nav a small {
  color: rgba(247, 243, 235, 0.46);
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--paper);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  padding-top: 22px;
}

.lang-switch {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #c84339 0%, #d9473d 100%);
  color: var(--paper);
  box-shadow: 0 8px 22px rgba(198, 31, 43, 0.18);
}

.site-header .button-primary {
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid rgba(247, 243, 235, 0.08);
  background: linear-gradient(135deg, rgba(200, 67, 57, 0.9) 0%, rgba(217, 71, 61, 0.9) 100%);
  box-shadow: 0 6px 18px rgba(198, 31, 43, 0.14);
  font-size: 14px;
}

.button-secondary {
  border-color: rgba(247, 243, 235, 0.24);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.02);
}

.button-dark {
  background: var(--dark-text);
  color: var(--paper);
}

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

.button-outline-light {
  border-color: rgba(247, 243, 235, 0.48);
  color: var(--paper);
  background: transparent;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: var(--paper-soft);
  font-weight: 600;
}

.news-feature-link,
.info-title a {
  color: inherit;
}

.news-feature-link:hover,
.info-title a:hover {
  color: #fff8ef;
}

.news-detail-page {
  padding-bottom: 72px;
}

.news-detail-hero {
  position: relative;
  padding: 72px 0 36px;
}

.news-detail-content {
  padding: 0 0 32px;
}

.news-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
  gap: 32px;
  align-items: start;
}

.news-detail-intro,
.news-detail-article {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(247, 243, 235, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.news-detail-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(247, 243, 235, 0.66);
  font-size: 14px;
}

.news-detail-title {
  margin: 10px 0 16px;
  font-family: var(--font-cn);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.08;
  color: #fff8ef;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 18px;
  color: rgba(247, 243, 235, 0.62);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-detail-summary {
  margin: 0;
  color: rgba(247, 243, 235, 0.8);
  line-height: 1.8;
  font-size: 1.02rem;
}

.news-detail-image-frame {
  min-height: 480px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(247, 243, 235, 0.08);
  background:
    radial-gradient(circle at top right, rgba(198, 31, 43, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.08));
}

.news-detail-image {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.news-detail-image-placeholder {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 243, 235, 0.72);
  font-family: var(--font-en);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.news-detail-body {
  display: grid;
  gap: 18px;
}

.news-detail-body p {
  margin: 0;
  color: rgba(247, 243, 235, 0.84);
  line-height: 1.95;
  font-size: 1.02rem;
}

.news-detail-source-link-wrap {
  margin-top: 26px;
}

.news-section-link-row {
  margin: -2px 0 20px;
}

.news-page {
  padding-bottom: 72px;
}

.news-listing-hero {
  padding: 72px 0 28px;
}

.news-listing-title {
  margin: 10px 0 14px;
  font-family: var(--font-cn);
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 1.08;
  color: #fff8ef;
}

.news-listing-summary {
  margin: 0;
  max-width: 760px;
  color: rgba(247, 243, 235, 0.78);
  line-height: 1.8;
}

.news-listing-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.news-listing-filters button {
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(247, 243, 235, 0.18);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(247, 243, 235, 0.82);
  font: inherit;
  cursor: pointer;
}

.news-listing-filters button.is-active,
.news-listing-filters button:hover {
  border-color: rgba(225, 118, 90, 0.48);
  background: rgba(225, 118, 90, 0.08);
  color: #fff8ef;
}

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

.news-listing-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(247, 243, 235, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.news-listing-card time {
  display: block;
  margin-bottom: 14px;
  color: rgba(247, 243, 235, 0.58);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.news-listing-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-cn);
  font-size: 2rem;
  line-height: 1.22;
  color: #fff8ef;
}

.news-listing-card h2 a {
  color: inherit;
}

.news-listing-card p {
  margin: 0;
  color: rgba(247, 243, 235, 0.76);
  line-height: 1.8;
}

.news-listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.news-listing-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(225, 118, 90, 0.1);
  color: #ffe8df;
  font-size: 12px;
}

.news-listing-empty {
  color: rgba(247, 243, 235, 0.72);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.hero-section {
  position: relative;
  overflow: clip;
  padding: 8px 0 36px;
  min-height: calc(100vh - 88px);
}

.about-page main {
  padding-top: 18px;
}

.about-page .about-hero-shell,
.about-page .about-section-block,
.about-page .site-footer {
  width: min(1280px, calc(100% - 132px));
}

.admin-page main {
  display: grid;
  gap: 0;
}

.admin-page .site-footer {
  width: min(1280px, calc(100% - 132px));
}

.admin-hero {
  position: relative;
  min-height: 760px;
  padding: 170px 0 84px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(160, 37, 37, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(23, 18, 19, 0.98), rgba(18, 16, 17, 0.94));
}

.admin-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: 34px;
  align-items: end;
}

.admin-hero-panel {
  display: grid;
  gap: 18px;
}

.admin-kpi-card {
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(214, 200, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(43, 34, 30, 0.86), rgba(20, 18, 19, 0.92)),
    radial-gradient(circle at top right, rgba(171, 58, 48, 0.18), transparent 46%);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.18);
}

.admin-kpi-card span,
.admin-board-head span {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(232, 225, 216, 0.62);
}

.admin-kpi-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 0.95;
  color: #fff6eb;
}

.admin-kpi-card small {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(232, 225, 216, 0.74);
}

.admin-modules-block {
  display: grid;
  gap: 34px;
}

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

.admin-module-card {
  position: relative;
  padding: 28px 28px 26px;
  border-radius: 28px;
  border: 1px solid rgba(184, 170, 154, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(245, 238, 226, 0.92)),
    radial-gradient(circle at top right, rgba(171, 58, 48, 0.08), transparent 42%);
  box-shadow: 0 22px 42px rgba(43, 30, 18, 0.08);
}

.admin-module-card-accent {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.95), rgba(247, 235, 229, 0.92)),
    radial-gradient(circle at top right, rgba(171, 58, 48, 0.16), transparent 42%);
  border-color: rgba(176, 65, 52, 0.26);
}

.admin-module-card h3,
.admin-stream-card h3,
.admin-board-card h3,
.admin-permission-item h3 {
  margin: 16px 0 12px;
  font-size: 1.8rem;
}

.admin-module-card p,
.admin-permission-item p,
.admin-board-row span,
.admin-board-row strong,
.admin-stream-card li {
  color: rgba(49, 41, 34, 0.84);
}

.admin-module-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.admin-module-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(49, 41, 34, 0.78);
}

.admin-module-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(176, 65, 52, 0.8);
}

.admin-operations-section {
  padding: 60px 0;
}

.admin-ops-heading {
  align-items: end;
  gap: 34px;
}

.admin-workflow-grid,
.admin-board-grid {
  display: grid;
  gap: 24px;
}

.admin-workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.admin-stream-card,
.admin-board-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(214, 200, 184, 0.14);
  background:
    linear-gradient(180deg, rgba(32, 27, 26, 0.96), rgba(16, 14, 15, 0.98)),
    radial-gradient(circle at top right, rgba(173, 65, 53, 0.14), transparent 42%);
}

.admin-stream-card ol {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.admin-stream-card li {
  line-height: 1.72;
  color: rgba(232, 225, 216, 0.78);
}

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

.admin-board-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(214, 200, 184, 0.12);
}

.admin-board-head h3 {
  margin: 0;
  color: #fff8ef;
}

.admin-board-row {
  display: grid;
  gap: 5px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(214, 200, 184, 0.08);
}

.admin-board-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.admin-board-row strong {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 248, 239, 0.9);
}

.admin-board-row span {
  font-size: 0.92rem;
  color: rgba(232, 225, 216, 0.64);
}

.admin-persona-section {
  display: grid;
  gap: 22px;
}

.admin-newslab-section {
  display: grid;
  gap: 30px;
}

.admin-newslab-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 24px;
}

.admin-news-source-card,
.admin-news-draft-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(184, 170, 154, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.94), rgba(245, 238, 226, 0.92)),
    radial-gradient(circle at top right, rgba(171, 58, 48, 0.08), transparent 42%);
  box-shadow: 0 22px 42px rgba(43, 30, 18, 0.08);
}

.admin-source-list,
.admin-draft-block {
  display: grid;
  gap: 10px;
}

.admin-source-list {
  margin-top: 16px;
}

.admin-source-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(184, 170, 154, 0.22);
}

.admin-source-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.admin-source-item strong,
.admin-draft-block h4 {
  display: block;
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.5;
  color: rgba(38, 30, 24, 0.92);
}

.admin-source-item span,
.admin-draft-block p {
  display: block;
  margin-top: 6px;
  font-size: 0.97rem;
  line-height: 1.72;
  color: rgba(49, 41, 34, 0.76);
}

.admin-draft-block + .admin-draft-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(184, 170, 154, 0.22);
}

.admin-draft-label {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(176, 65, 52, 0.78);
}

.admin-permissions-grid {
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 40px;
}

.admin-permission-panel {
  display: grid;
  gap: 16px;
}

.admin-permission-item {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(184, 170, 154, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.9), rgba(245, 238, 226, 0.88)),
    radial-gradient(circle at top right, rgba(171, 58, 48, 0.08), transparent 42%);
}

.admin-permission-item h3 {
  margin: 0 0 8px;
}

.admin-permission-item p {
  margin: 0;
  line-height: 1.72;
}

.admin-login-page,
.admin-dashboard-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(159, 51, 40, 0.18), transparent 22%),
    radial-gradient(circle at bottom right, rgba(183, 115, 42, 0.1), transparent 24%),
    #0d0d0f;
  color: #f4efe7;
  font-family: "Plus Jakarta Sans", "Noto Sans SC", sans-serif;
}

.admin-login-shell {
  min-height: 100vh;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 0;
}

.admin-login-panel,
.admin-login-card,
.admin-sidebar,
.admin-topbar,
.admin-panel-card,
.admin-stat-card,
.admin-list-card,
.admin-draft-table {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(25, 24, 27, 0.96), rgba(12, 12, 14, 0.98)),
    radial-gradient(circle at top right, rgba(174, 68, 53, 0.14), transparent 42%);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.22);
}

.admin-login-panel {
  width: 100%;
  max-width: 760px;
  padding: 30px 32px 28px;
  border-radius: 32px;
}

.admin-login-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.admin-login-brand img {
  width: 120px;
  height: auto;
}

.admin-login-kicker,
.admin-topbar-kicker {
  margin: 0 0 6px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 235, 225, 0.55);
}

.admin-login-brand h1,
.admin-topbar h1 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  line-height: 1.1;
  color: #fff8ef;
}

.admin-login-brand h1 .admin-title-line {
  display: block;
  white-space: nowrap;
}

.admin-login-brand h1 .admin-title-line + .admin-title-line {
  margin-top: 4px;
}

.admin-login-brand h1 .admin-title-subline {
  display: block;
  margin-top: 8px;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  line-height: 1.35;
  font-weight: 500;
  color: rgba(243, 235, 225, 0.72);
  white-space: nowrap;
}

.admin-login-brand h1 .admin-title-subline + .admin-title-subline {
  margin-top: 2px;
}

.admin-login-copy {
  margin: 28px 0 0;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(243, 235, 225, 0.72);
}

.admin-login-alert {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 20px;
  border: 1px solid rgba(230, 122, 96, 0.24);
  background: linear-gradient(180deg, rgba(120, 34, 28, 0.28), rgba(48, 23, 22, 0.22));
}

.admin-login-alert strong {
  display: block;
  color: #fff8ef;
  font-size: 1rem;
}

.admin-login-alert p,
.admin-login-alert small {
  display: block;
  margin-top: 8px;
  line-height: 1.7;
  color: rgba(243, 235, 225, 0.74);
}

.admin-login-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.admin-login-form label {
  display: grid;
  gap: 6px;
}

.admin-login-form span {
  font-size: 0.92rem;
  color: rgba(243, 235, 225, 0.72);
}

.admin-login-form input,
.admin-login-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff8ef;
  font: inherit;
}

.admin-password-field {
  display: grid;
  gap: 6px;
}

.admin-password-input {
  position: relative;
}

.admin-password-input input {
  padding-right: 98px;
}

.admin-password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 235, 225, 0.72);
  cursor: pointer;
}

.admin-password-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}

.admin-password-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
  margin: 0 auto;
}

.admin-password-status {
  position: absolute;
  top: 50%;
  right: 56px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
}

.admin-password-status.is-valid,
.admin-password-status.is-invalid {
  opacity: 1;
}

.admin-password-status.is-valid {
  color: #80d0a1;
  background: rgba(28, 83, 47, 0.3);
}

.admin-password-status.is-invalid {
  color: #ff9d8f;
  background: rgba(114, 34, 30, 0.32);
}

.admin-login-form input::placeholder {
  color: rgba(243, 235, 225, 0.42);
}

.admin-login-hint {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(243, 235, 225, 0.58);
}

.admin-login-hint span {
  display: block;
}

.admin-login-hint span + span {
  margin-top: 2px;
}

.admin-form-message {
  min-height: 22px;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(243, 235, 225, 0.64);
}

.admin-form-message.is-error {
  color: #ff9d8f;
}

.admin-form-message.is-success {
  color: #9fd1ae;
}

.admin-login-button,
.admin-topbar-actions a,
.admin-section-head a,
.admin-topbar-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #c85845, #de6f52);
  color: #fff9f2;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.admin-login-note strong,
.admin-list-row strong,
.admin-draft-row strong {
  display: block;
  color: #fff8ef;
}

.admin-login-actions a,
.admin-list-row span,
.admin-draft-row span,
.admin-panel-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(243, 235, 225, 0.68);
}

.admin-login-card span,
.admin-stat-card span,
.admin-section-head p,
.admin-sidebar-footer span {
  display: block;
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 235, 225, 0.5);
}

.admin-login-card strong,
.admin-stat-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2.9rem;
  line-height: 1;
  color: #fff8ef;
}

.admin-login-card small,
.admin-stat-card small {
  display: block;
  margin-top: 8px;
  color: rgba(243, 235, 225, 0.68);
}

.admin-app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar {
  padding: 26px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.admin-sidebar-brand img {
  width: 84px;
  height: auto;
}

.admin-sidebar-brand strong {
  display: block;
  color: #fff8ef;
}

.admin-sidebar-brand span {
  display: block;
  margin-top: 4px;
  color: rgba(243, 235, 225, 0.5);
  font-size: 0.88rem;
}

.admin-sidebar-nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar-nav a,
.admin-sidebar-footer a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(243, 235, 225, 0.72);
}

.admin-sidebar-nav a.is-active,
.admin-sidebar-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff8ef;
}

.admin-sidebar-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-footer strong {
  display: block;
  margin-top: 8px;
  color: #fff8ef;
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 28px;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-topbar-meta {
  margin: 10px 0 0;
  color: rgba(243, 235, 225, 0.6);
}

.admin-topbar-actions button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-password-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid rgba(230, 122, 96, 0.22);
  background:
    linear-gradient(180deg, rgba(82, 29, 25, 0.86), rgba(35, 19, 20, 0.9)),
    radial-gradient(circle at top right, rgba(214, 98, 75, 0.18), transparent 42%);
}

.admin-password-banner p {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 235, 225, 0.58);
}

.admin-password-banner h2 {
  margin: 8px 0 0;
  font-size: 1.45rem;
  line-height: 1.25;
  color: #fff8ef;
}

.admin-password-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c85845, #de6f52);
  color: #fff9f2;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.admin-dashboard-content {
  display: grid;
  gap: 22px;
  margin-top: 22px;
}

.admin-overview-grid,
.admin-card-grid,
.admin-news-workbench {
  display: grid;
  gap: 18px;
}

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

.admin-stat-card,
.admin-panel-card,
.admin-list-card,
.admin-draft-table {
  padding: 24px;
  border-radius: 24px;
}

.admin-dashboard-section {
  display: grid;
  gap: 16px;
}

.admin-dashboard-pane {
  display: none;
}

.admin-dashboard-pane.is-current {
  display: grid;
}

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

.admin-section-head h2 {
  margin: 8px 0 0;
  font-size: 2rem;
  line-height: 1.1;
  color: #fff8ef;
}

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

.admin-panel-card-wide {
  grid-column: span 2;
}

.admin-panel-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  color: #fff8ef;
}

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

.admin-news-management-grid {
  align-items: start;
}

.admin-news-stats-grid {
  margin-bottom: 2px;
}

.admin-news-review-launch {
  display: grid;
  gap: 16px;
}

.admin-news-review-launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-panel-meta {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin-top: 10px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(243, 235, 225, 0.7);
  font-size: 0.9rem;
  line-height: 1.4;
}

.admin-admins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.admin-section-head-compact {
  justify-content: start;
}

.admin-admin-create-card {
  display: grid;
  gap: 18px;
}

.admin-admin-create-form {
  display: grid;
  gap: 16px;
}

.admin-inline-note {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-inline-note strong {
  color: #fff8ef;
  font-size: 0.98rem;
}

.admin-inline-note p,
.admin-inline-note-text {
  margin: 0;
  color: rgba(243, 235, 225, 0.68);
  line-height: 1.7;
}

.admin-news-preset-row {
  margin-top: 14px;
}

.admin-admin-create-form label,
.admin-password-form label {
  display: grid;
  gap: 8px;
}

.admin-admin-create-form input,
.admin-admin-create-form select,
.admin-admin-create-form textarea,
.admin-password-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff8ef;
  font: inherit;
}

.admin-admin-create-form textarea {
  min-height: 116px;
  padding: 14px 16px;
  resize: vertical;
}

.admin-module-fieldset {
  margin: 0;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-module-fieldset legend {
  padding: 0 10px;
  color: #fff8ef;
  font-weight: 600;
}

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

.admin-module-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(243, 235, 225, 0.74);
}

.admin-module-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

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

.admin-news-source-list {
  display: grid;
  gap: 12px;
}

.admin-news-source-row,
.admin-news-draft-row {
  align-items: start;
}

.admin-news-source-meta,
.admin-news-draft-main,
.admin-news-draft-side {
  display: grid;
  gap: 6px;
}

.admin-news-draft-open {
  display: grid;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.admin-news-draft-open strong {
  transition: color 180ms ease;
}

.admin-news-draft-open:hover strong {
  color: #ffefe3;
}

.admin-news-source-meta span,
.admin-news-draft-main span,
.admin-news-draft-side span {
  color: rgba(243, 235, 225, 0.68);
  line-height: 1.6;
}

.admin-news-draft-row {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
  gap: 18px;
}

.admin-news-draft-row.is-selected {
  border-color: rgba(222, 111, 82, 0.34);
  box-shadow: 0 0 0 1px rgba(222, 111, 82, 0.2) inset;
}

.admin-draft-table {
  display: grid;
  gap: 16px;
}

.admin-art-category-list {
  display: grid;
  gap: 16px;
}

.admin-art-category-item {
  gap: 14px;
}

.admin-danger-button {
  border-color: rgba(220, 86, 86, 0.38);
  color: #ffb6ae;
}

.admin-danger-button:hover {
  border-color: rgba(235, 98, 98, 0.52);
  color: #ffd8d2;
  background: rgba(235, 98, 98, 0.08);
}

.admin-news-status-control {
  display: grid;
  gap: 8px;
}

.admin-news-status-control span {
  color: #fff8ef;
  font-weight: 600;
}

.admin-news-status-control select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff8ef;
  font: inherit;
}

.admin-news-toggle-button {
  white-space: nowrap;
}

.admin-news-editor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.admin-news-feature-grid label {
  color: rgba(243, 235, 225, 0.8);
}

.admin-news-review-note {
  margin-bottom: 18px;
}

.admin-news-review-summary {
  margin-bottom: 18px;
}

.admin-news-filter-form {
  margin-bottom: 18px;
}

.admin-news-drafts-head {
  margin-bottom: 14px;
}

.admin-news-batch-actions {
  margin-top: 4px;
}

.admin-news-select-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(243, 235, 225, 0.7);
  margin-bottom: 4px;
}

.admin-news-select-row input {
  width: 16px;
  height: 16px;
}

.admin-news-published-list {
  display: grid;
  gap: 12px;
}

.admin-news-published-item {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  color: inherit;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.admin-news-published-item:hover,
.admin-news-published-item.is-selected {
  border-color: rgba(225, 118, 90, 0.48);
  background: rgba(225, 118, 90, 0.08);
  transform: translateY(-1px);
}

.admin-news-published-item strong,
.admin-news-published-item small,
.admin-news-published-date {
  display: block;
}

.admin-news-published-date {
  color: rgba(255, 245, 236, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.admin-news-published-item strong {
  font-size: 18px;
  line-height: 1.45;
  color: #fff7ee;
}

.admin-news-published-item small {
  margin-top: 8px;
  color: rgba(255, 245, 236, 0.62);
  font-size: 13px;
}

.admin-news-published-item .admin-tag-row {
  margin-top: 12px;
}

.admin-news-published-preview {
  min-height: 100%;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.admin-status-pill.is-success {
  color: #dbffe6;
  background: rgba(70, 177, 104, 0.18);
  border-color: rgba(93, 198, 127, 0.32);
}

.admin-status-pill.is-warning {
  color: #fff0cf;
  background: rgba(207, 154, 52, 0.18);
  border-color: rgba(225, 171, 69, 0.32);
}

.admin-status-pill.is-danger {
  color: #ffd7d2;
  background: rgba(209, 92, 74, 0.16);
  border-color: rgba(223, 109, 90, 0.3);
}

.admin-news-checklist-pills {
  margin-top: 4px;
}

.admin-news-missing-note {
  margin-top: 12px;
}

.admin-news-missing-note.is-success {
  border-color: rgba(93, 198, 127, 0.26);
  background: rgba(70, 177, 104, 0.08);
}

.admin-news-editor-checklist {
  margin-bottom: 4px;
}

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

.admin-media-filter-form {
  margin-top: 18px;
}

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

.admin-news-image-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-news-image-preview-card {
  gap: 12px;
}

.admin-news-image-preview-card p {
  color: rgba(243, 235, 225, 0.78);
  font-weight: 600;
}

.admin-news-image-preview {
  min-height: 200px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-news-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-news-image-preview span {
  color: rgba(243, 235, 225, 0.54);
  font-size: 14px;
}

.admin-media-asset-card {
  display: grid;
  gap: 14px;
}

.admin-media-asset-preview {
  overflow: hidden;
  border-radius: 18px;
  min-height: 180px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-media-asset-preview img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.admin-media-asset-meta {
  display: grid;
  gap: 6px;
}

.admin-media-asset-meta strong {
  color: #fff8ef;
}

.admin-media-asset-meta span {
  color: rgba(243, 235, 225, 0.64);
  line-height: 1.55;
  word-break: break-all;
}

.admin-news-preview-card {
  min-height: 100%;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at top right, rgba(225, 118, 90, 0.18), transparent 26%), rgba(255, 255, 255, 0.02);
}

.admin-news-preview-meta {
  display: block;
  color: rgba(255, 245, 236, 0.58);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-news-preview-visual {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.admin-news-preview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-news-preview-card h3,
.admin-news-preview-card h4 {
  margin: 14px 0 0;
  color: #fff7ee;
}

.admin-news-preview-card h3 {
  font-size: 28px;
  line-height: 1.25;
}

.admin-news-preview-card h4 {
  font-size: 20px;
  line-height: 1.35;
}

.admin-news-preview-card p {
  margin: 12px 0 0;
  color: rgba(255, 245, 236, 0.78);
  line-height: 1.75;
}

.admin-news-modal-dialog {
  max-width: 900px;
}

.admin-news-modal-body {
  max-height: min(72vh, 820px);
  overflow: auto;
}

.admin-news-preview-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 6px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.admin-reset-password-button {
  min-height: 42px;
  border-radius: 999px;
  padding-inline: 16px;
  font-weight: 600;
  cursor: pointer;
}

.admin-reset-password-button:disabled {
  opacity: 0.58;
  cursor: wait;
}

.admin-card-action-note {
  color: rgba(243, 235, 225, 0.52);
  font-size: 0.84rem;
  line-height: 1.55;
}

.admin-card-note {
  margin-top: 14px;
  color: rgba(243, 235, 225, 0.58);
  font-size: 0.88rem;
}

.admin-hidden {
  display: none !important;
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-modal.is-hidden {
  display: none;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 6, 0.76);
  backdrop-filter: blur(6px);
}

.admin-modal-dialog {
  position: relative;
  width: min(620px, calc(100% - 16px));
  padding: 26px 26px 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(25, 24, 27, 0.98), rgba(12, 12, 14, 1)),
    radial-gradient(circle at top right, rgba(174, 68, 53, 0.14), transparent 42%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
}

.admin-modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-modal-head p {
  margin: 0 0 6px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 235, 225, 0.54);
}

.admin-modal-head h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #fff8ef;
}

.admin-modal-head h2 span {
  display: block;
}

.admin-modal-head h2 span + span {
  margin-top: 6px;
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
  color: rgba(243, 235, 225, 0.72);
}

.admin-modal-close,
.admin-secondary-button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(243, 235, 225, 0.82);
  font: inherit;
  cursor: pointer;
}

.admin-modal-close {
  min-width: 44px;
  padding: 0;
  border-radius: 14px;
  font-size: 1.6rem;
  line-height: 1;
}

.admin-password-form {
  display: grid;
  gap: 16px;
}

.admin-password-rules {
  margin: -2px 0 0;
  color: rgba(243, 235, 225, 0.58);
  line-height: 1.6;
}

.admin-password-rules span {
  display: block;
}

.admin-password-rules span + span {
  margin-top: 2px;
}

.admin-modal-actions {
  display: flex;
  justify-content: end;
  gap: 12px;
}

.admin-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.admin-tag-button {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 238, 229, 0.88);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.admin-tag-button:hover {
  border-color: rgba(199, 95, 72, 0.5);
  background: rgba(199, 95, 72, 0.12);
  transform: translateY(-1px);
}

.admin-tag-button.is-active {
  border-color: rgba(128, 187, 117, 0.45);
  color: rgba(222, 247, 218, 0.96);
  background: rgba(82, 125, 75, 0.18);
}

.admin-tag-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(243, 235, 225, 0.76);
  font-size: 0.9rem;
}

.admin-list-card,
.admin-draft-table {
  display: grid;
}

.admin-list-row,
.admin-draft-row {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-list-row:first-child,
.admin-draft-row:first-child {
  padding-top: 0;
}

.admin-list-row:last-child,
.admin-draft-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media (max-width: 1180px) {
  .admin-app-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .admin-overview-grid,
  .admin-card-grid,
  .admin-news-workbench,
  .admin-admins-grid,
  .admin-admins-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-news-draft-row {
    grid-template-columns: 1fr;
  }

  .admin-news-editor-grid {
    grid-template-columns: 1fr;
  }

  .admin-media-assets-grid,
  .admin-media-picker-grid,
  .admin-news-image-preview-grid {
    grid-template-columns: 1fr;
  }

  .admin-panel-card-wide {
    grid-column: span 2;
  }

  .admin-login-shell {
    width: min(100% - 32px, 1320px);
  }

  .admin-password-banner {
    display: grid;
  }
}

@media (max-width: 760px) {
  .admin-main {
    padding: 16px;
  }

  .admin-topbar,
  .admin-login-panel,
  .admin-login-card,
  .admin-stat-card,
  .admin-panel-card,
  .admin-list-card,
  .admin-draft-table,
  .admin-sidebar {
    padding: 18px;
    border-radius: 20px;
  }

  .admin-topbar,
  .admin-section-head {
    display: grid;
    gap: 14px;
  }

  .admin-overview-grid,
  .admin-card-grid,
  .admin-news-workbench,
  .admin-admins-grid,
  .admin-admins-list,
  .admin-module-grid,
  .admin-media-picker-grid {
    grid-template-columns: 1fr;
  }

  .admin-news-management-grid,
  .admin-news-draft-row {
    grid-template-columns: 1fr;
  }

  .admin-panel-card-wide {
    grid-column: auto;
  }

  .admin-login-brand img {
    width: 88px;
  }

  .admin-login-shell {
    padding: 18px 0;
  }

  .admin-login-brand {
    gap: 14px;
  }

  .admin-login-form {
    margin-top: 18px;
    gap: 12px;
  }

  .admin-modal {
    padding: 16px;
  }

  .admin-modal-dialog {
    padding: 22px 18px 20px;
    border-radius: 22px;
  }

  .admin-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.about-section-block,
.about-hero-shell {
  width: min(1248px, calc(100% - 64px));
  margin: 0 auto;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 28px;
}

.about-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 32px;
  align-items: stretch;
}

.about-hero-copy,
.about-hero-panel,
.about-section-block {
  border-radius: 30px;
}

.about-hero-copy {
  padding: 44px 44px 40px;
  background:
    radial-gradient(circle at top right, rgba(198, 31, 43, 0.22), transparent 24%),
    linear-gradient(160deg, #1b1716 0%, #121212 72%);
  border: 1px solid rgba(247, 243, 235, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-hero-copy h1 {
  margin: 0;
  font-family: var(--font-cn);
  font-size: clamp(44px, 4.4vw, 72px);
  line-height: 1.04;
}

.about-hero-panel {
  padding: 34px 32px;
  background:
    linear-gradient(180deg, rgba(247, 243, 235, 0.06) 0%, rgba(247, 243, 235, 0.02) 100%);
  border: 1px solid rgba(247, 243, 235, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-hero-stat + .about-hero-stat {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 243, 235, 0.08);
}

.about-hero-stat span {
  display: block;
  color: rgba(247, 243, 235, 0.56);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero-stat strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-family: var(--font-cn);
  font-size: 28px;
  line-height: 1.45;
  font-weight: 600;
}

.about-section-block {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  padding: 40px 44px 42px;
  background:
    radial-gradient(circle at top right, rgba(185, 139, 47, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f3eb 0%, #f2ecdf 100%);
  color: var(--dark-text);
  box-shadow: 0 24px 48px rgba(56, 42, 28, 0.08);
}

.about-section-featured::before,
.about-section-featured::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  border-style: solid;
  transform: rotate(14deg);
  opacity: 0.28;
}

.about-section-featured::before {
  top: -140px;
  right: 84px;
  width: 188px;
  height: 448px;
  border-width: 28px 18px 24px 30px;
  border-color: rgba(198, 31, 43, 0.16);
}

.about-section-featured::after {
  top: -34px;
  right: -12px;
  width: 122px;
  height: 312px;
  border-width: 14px 19px 16px 12px;
  border-color: rgba(229, 57, 53, 0.2);
}

.about-content-grid {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.about-section-heading h2,
.team-meta h3 {
  margin: 0;
  font-family: var(--font-cn);
  font-weight: 600;
}

.about-section-heading h2 {
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: 1.18;
}

.about-section-heading,
.about-copy,
.about-contact-card {
  position: relative;
  z-index: 1;
}

.about-copy p,
.about-contact-card p,
.team-meta p {
  margin: 0;
  font-size: 17px;
  line-height: 1.95;
  color: rgba(24, 22, 20, 0.74);
}

.about-copy p + p,
.about-contact-card p + p {
  margin-top: 18px;
}

.about-copy {
  position: relative;
  z-index: 1;
}

.about-focus-grid,
.about-team-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-focus-card,
.team-card,
.about-contact-card {
  border-radius: 24px;
  border: 1px solid rgba(24, 22, 20, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.12) 100%);
  box-shadow: 0 14px 30px rgba(56, 42, 28, 0.05);
}

.about-focus-card {
  min-height: 220px;
  padding: 26px 24px 24px;
}

.about-focus-card h3 {
  margin: 0;
  font-family: var(--font-cn);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.45;
}

.about-focus-card p {
  margin: 14px 0 0;
  color: rgba(24, 22, 20, 0.72);
  line-height: 1.9;
}

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

.team-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) minmax(0, 1fr);
}

.team-photo {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
}

.team-photo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(247, 243, 235, 0.22);
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 24px;
  background: rgba(0, 0, 0, 0.22);
}

.team-photo-anthony {
  background:
    radial-gradient(circle at 72% 18%, rgba(185, 139, 47, 0.35), transparent 22%),
    linear-gradient(160deg, rgba(198, 31, 43, 0.26), rgba(18, 18, 18, 0.28)),
    linear-gradient(180deg, #2c2522 0%, #151211 100%);
}

.team-photo-zhu {
  background:
    radial-gradient(circle at 24% 20%, rgba(229, 57, 53, 0.34), transparent 22%),
    linear-gradient(160deg, rgba(185, 139, 47, 0.18), rgba(18, 18, 18, 0.22)),
    linear-gradient(180deg, #2b2623 0%, #141210 100%);
}

.team-meta {
  padding: 28px 26px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.team-role {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(109, 97, 86, 0.84);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.team-meta h3 {
  font-size: 28px;
  line-height: 1.2;
  color: var(--dark-text);
}

.team-meta p {
  margin-top: 14px;
}

.about-contact-card {
  padding: 28px 28px 30px;
}

.about-contact-card .stacked-actions {
  margin-top: 22px;
}

.hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 240px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.96) 0%,
    rgba(18, 18, 18, 0.82) 24%,
    rgba(18, 18, 18, 0.42) 62%,
    rgba(18, 18, 18, 0) 100%
  );
}

.hero-backdrop,
.hero-noise,
.hero-arc {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-backdrop {
  background:
    radial-gradient(circle at 83% 22%, rgba(229, 57, 53, 0.26), transparent 18%),
    radial-gradient(circle at 77% 78%, rgba(185, 139, 47, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.3) 0%, rgba(12, 12, 12, 0.84) 100%);
}

.hero-noise {
  opacity: 0.18;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 42%),
    linear-gradient(180deg, rgba(247, 243, 235, 0.05), transparent 28%);
}

.hero-arc {
  border-radius: 50%;
  border-style: solid;
  transform: rotate(14deg);
}

.hero-arc-one {
  top: 34px;
  left: -168px;
  right: auto;
  width: 300px;
  height: 520px;
  border-width: 26px;
  border-color: rgba(229, 57, 53, 0.58);
  filter: blur(0.4px);
}

.hero-arc-two {
  top: -92px;
  left: -54px;
  right: auto;
  width: 430px;
  height: 780px;
  border-width: 24px;
  border-color: rgba(198, 31, 43, 0.44);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 540px);
  justify-content: space-between;
  align-items: center;
  gap: 72px;
  min-height: 720px;
}

.hero-copy {
  position: relative;
  max-width: 540px;
  padding: 28px 0 32px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 -18px 0 -24px;
  z-index: -1;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.88), rgba(18, 18, 18, 0.42) 72%, rgba(18, 18, 18, 0));
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--paper-soft);
  font-family: var(--font-en);
  font-size: 24px;
  letter-spacing: 0.04em;
}

.eyebrow.dark {
  color: #6d6156;
}

.eyebrow.light {
  color: rgba(247, 243, 235, 0.84);
}

.hero-copy h1,
.section-heading h2,
.cta-inner h2 {
  margin: 0;
  font-family: var(--font-cn);
  font-weight: 600;
}

.hero-copy h1 {
  font-size: clamp(46px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 11ch;
  text-wrap: balance;
}

.headline-line {
  display: block;
}

.title-line {
  display: block;
}

.title-line-compact {
  display: none;
}

.hero-translation {
  margin: 24px 0 0;
  max-width: max-content;
  color: var(--paper-soft);
  font-family: var(--font-en);
  font-size: clamp(22px, 1.85vw, 29px);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.translation-line {
  display: block;
}

.hero-summary,
.section-heading p,
.pillar p,
.artist-meta p,
.artwork-copy span,
.timeline p,
.news-list p,
.event-list p,
.site-footer p,
.site-footer a,
.cta-inner p {
  color: var(--text-muted);
}

.hero-summary {
  margin: var(--space-title-copy) 0 0;
  font-size: 19px;
  line-height: 1.86;
  max-width: 36em;
}

.text-measure {
  max-width: 28em;
  text-wrap: pretty;
}

.text-measure-wide {
  max-width: 34em;
}

.text-measure-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: calc(var(--space-block) + 10px);
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: var(--space-block);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--paper-soft);
}

.hero-signals span {
  padding-right: 14px;
  border-right: 1px solid rgba(247, 243, 235, 0.18);
}

.hero-signals span:last-child {
  border-right: 0;
  padding-right: 0;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.62fr;
  grid-template-rows: 390px 168px;
  gap: 20px;
}

.hero-stage-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(247, 243, 235, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-stage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24));
}

.hero-stage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background-size: 180px 180px;
  background-repeat: repeat;
}

.hero-stage-card-large {
  padding: 28px;
  background:
    radial-gradient(circle at 25% 20%, rgba(198, 31, 43, 0.38), transparent 35%),
    linear-gradient(160deg, #34211b 0%, #15110f 100%);
}

.hero-stage-card-large::after {
  background-image:
    radial-gradient(circle at 24px 24px, rgba(247, 243, 235, 0.18) 1.2px, transparent 1.5px),
    linear-gradient(135deg, transparent 0 47%, rgba(247, 243, 235, 0.1) 48%, transparent 49%);
}

.hero-stage-card-large p {
  position: relative;
  margin: 0;
  color: rgba(247, 243, 235, 0.7);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero-stage-card-large h2 {
  position: relative;
  margin: 20px 0 0;
  max-width: 10ch;
  color: var(--paper);
  font-family: var(--font-cn);
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.28;
  text-wrap: initial;
}

.hero-stage-card-large .title-line {
  white-space: nowrap;
}

.hero-card-note {
  position: relative;
  display: inline-block;
  margin-top: 18px;
  color: rgba(247, 243, 235, 0.58);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.hero-card-note-small {
  margin-top: 14px;
  font-size: 12px;
}

.hero-stage-card-tall {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 26px 24px 24px;
  min-height: 578px;
  background:
    linear-gradient(180deg, rgba(198, 31, 43, 0.82), rgba(109, 14, 22, 0.95)),
    linear-gradient(160deg, #231818, #140f0f);
}

.hero-stage-card-tall::after {
  background-image:
    linear-gradient(180deg, rgba(247, 243, 235, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 243, 235, 0.08) 1px, transparent 1px);
  background-size: 100% 46px, 46px 100%;
}

.hero-card-foot {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: calc(100% - 48px);
  color: rgba(247, 243, 235, 0.84);
  font-family: var(--font-en);
  font-size: 24px;
  line-height: 1.1;
}

.hero-stage-card-small {
  padding: 22px 24px 24px;
  background:
    radial-gradient(circle at top left, rgba(185, 139, 47, 0.34), transparent 34%),
    linear-gradient(160deg, #1f1a18, #111);
}

.hero-stage-card-small::after {
  background-image:
    radial-gradient(circle at center, rgba(185, 139, 47, 0.18) 1px, transparent 1.2px);
  background-size: 22px 22px;
}

.hero-card-label {
  position: relative;
  margin: 0;
  color: rgba(247, 243, 235, 0.72);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero-stage-card-tall h3,
.hero-stage-card-small h3 {
  position: relative;
  margin: 18px 0 0;
  color: var(--paper);
  font-family: var(--font-cn);
  font-size: 28px;
  line-height: 1.28;
  text-wrap: balance;
}

.hero-stage-card-small h3 {
  max-width: 8ch;
  font-size: 22px;
}

@media (max-width: 1480px) {
  .hero-stage-card-tall {
    padding-bottom: 132px;
  }

  .hero-card-foot {
    font-size: 18px;
    line-height: 1.16;
  }

  .hero-stage-card-large .title-line-desktop,
  .hero-stage-card-tall .title-line-desktop {
    display: none;
  }

  .hero-stage-card-large .title-line-compact,
  .hero-stage-card-tall .title-line-compact {
    display: block;
    white-space: nowrap;
  }
}

.light-section {
  color: var(--dark-text);
  background: var(--paper);
}

.ai-section {
  padding-top: 46px;
  padding-bottom: 42px;
}

.dark-section {
  padding: var(--space-section) 0;
}

.mission-section {
  position: relative;
  overflow: hidden;
  width: min(1280px, calc(100% - 132px));
  margin: 0 auto;
  padding: 52px 48px 48px;
  background:
    radial-gradient(circle at top right, rgba(185, 139, 47, 0.08), transparent 28%),
    linear-gradient(180deg, #f7f3eb 0%, #f3ede2 100%);
}

.mission-section::before,
.mission-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  border-style: solid;
  transform: rotate(14deg);
  opacity: 0.3;
}

.mission-section::before {
  top: -136px;
  right: 82px;
  left: auto;
  width: 194px;
  height: 458px;
  border-width: 28px 18px 24px 30px;
  border-color: rgba(198, 31, 43, 0.16);
}

.mission-section::after {
  top: -36px;
  right: -12px;
  left: auto;
  bottom: auto;
  width: 126px;
  height: 318px;
  border-width: 14px 19px 16px 12px;
  border-color: rgba(229, 57, 53, 0.2);
}

.section-heading {
  max-width: 760px;
}

.artists-section .section-shell,
.collections-section .section-shell,
.ai-section .section-shell,
.digital-section .section-shell,
.news-section .section-shell {
  width: min(1280px, calc(100% - 132px));
  padding-left: 48px;
  padding-right: 48px;
}

.section-heading.constrained {
  max-width: 460px;
}

.section-heading h2,
.cta-inner h2 {
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: 1.2;
  text-wrap: balance;
}

.mission-title {
  max-width: 7ch;
  text-wrap: initial;
}

.mission-title .title-line {
  white-space: nowrap;
}

.section-heading p,
.cta-inner p {
  margin: var(--space-title-copy) 0 0;
  font-size: 17px;
  line-height: 1.9;
  text-wrap: pretty;
}

.section-translation {
  margin: var(--space-title-translation) 0 0;
  color: rgba(24, 22, 20, 0.5);
  font-family: var(--font-en);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  max-width: 30ch;
}

.section-translation-light {
  color: rgba(247, 243, 235, 0.78);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.mission-heading,
.artists-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.mission-intro,
.artists-intro {
  margin: 0;
  padding-top: 26px;
}

.pillar-grid {
  margin-top: calc(var(--space-block) + 6px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(var(--space-grid) + 18px);
}

.pillar {
  min-height: 240px;
  padding: 28px 28px 30px;
  border: 1px solid rgba(24, 22, 20, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.08) 100%);
  box-shadow: 0 18px 40px rgba(56, 42, 28, 0.06);
}

.pillar-index {
  display: block;
  margin-bottom: 16px;
  color: rgba(109, 97, 86, 0.72);
  font-family: var(--font-en);
  font-size: 26px;
}

.pillar h3,
.artist-meta h3,
.timeline h3,
.news-list h3,
.event-list h3,
.footer-links h3,
.certificate-body h3 {
  margin: 0;
  font-family: var(--font-cn);
  font-weight: 600;
}

.pillar h3,
.timeline h3 {
  font-size: 24px;
  line-height: 1.45;
  text-wrap: balance;
}

.pillar p {
  margin: 16px 0 0;
  color: rgba(24, 22, 20, 0.72);
  font-size: 15px;
  line-height: 1.9;
}

.artist-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.7fr;
  grid-template-rows: 250px 250px;
  gap: var(--space-grid);
  margin-top: 22px;
}

.artist-portrait {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  min-height: 220px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    transform 240ms ease,
    border-color 240ms ease;
}

.artist-portrait:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 243, 235, 0.22);
}

.artist-portrait-large {
  grid-row: 1 / span 2;
}

.artist-portrait-wide {
  grid-column: 2 / span 2;
}

.artist-visual,
.artwork,
.certificate-preview {
  position: absolute;
  inset: 0;
}

.artist-visual {
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.artist-visual-ink {
  background:
    radial-gradient(circle at 25% 20%, rgba(198, 31, 43, 0.26), transparent 22%),
    linear-gradient(160deg, #3a2e2a 0%, #171312 58%, #0f0f0f 100%);
}

.artist-visual-red {
  background:
    linear-gradient(140deg, rgba(229, 57, 53, 0.88), rgba(70, 10, 18, 0.86)),
    linear-gradient(160deg, #271414, #101010);
}

.artist-visual-gold {
  background:
    radial-gradient(circle at 68% 18%, rgba(185, 139, 47, 0.5), transparent 28%),
    linear-gradient(160deg, #2d261f, #120f0d);
}

.artist-visual-night {
  background:
    linear-gradient(120deg, rgba(185, 139, 47, 0.15), transparent 42%),
    linear-gradient(160deg, #181717, #0f0f10);
}

.artist-meta,
.artwork-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.88) 100%);
}

.artist-meta h3,
.artwork-copy p,
.news-list h3,
.event-list h3 {
  color: var(--paper);
  font-size: 24px;
  line-height: 1.3;
  text-wrap: pretty;
  max-width: none;
}

.artist-meta p,
.artwork-copy span {
  margin: 8px 0 0;
  font-size: 14px;
}

.collections-head {
  display: flex;
  gap: calc(var(--space-grid) + 8px);
  justify-content: space-between;
  align-items: flex-start;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  max-width: 500px;
  padding-top: 58px;
}

.category-pills span,
.metric-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--paper-soft);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.02);
}

.collection-wall {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: var(--space-grid);
  margin-top: 22px;
}

.artwork {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 260px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.artwork:hover {
  transform: translateY(-4px);
  filter: saturate(1.08);
}

.artwork::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 12%, rgba(0, 0, 0, 0.75) 100%);
}

.artwork-tall {
  min-height: 620px;
}

.artwork-wide {
  min-height: 290px;
}

.artwork-medium {
  min-height: 300px;
}

.artwork-vermillion {
  background:
    radial-gradient(circle at top left, rgba(229, 57, 53, 0.48), transparent 28%),
    linear-gradient(160deg, #3a211f, #181111 72%);
}

.artwork-ivory {
  background:
    linear-gradient(140deg, rgba(247, 243, 235, 0.82), rgba(208, 196, 180, 0.68)),
    linear-gradient(180deg, #a09a8f, #676159);
}

.artwork-shadow {
  background:
    radial-gradient(circle at 75% 24%, rgba(198, 31, 43, 0.34), transparent 26%),
    linear-gradient(180deg, #171514, #0e0e0f 100%);
}

.artwork-gold {
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 139, 47, 0.58), transparent 24%),
    linear-gradient(180deg, #271f18, #0f0f10 100%);
}

.artwork-night {
  background:
    linear-gradient(130deg, rgba(198, 31, 43, 0.22), transparent 35%),
    linear-gradient(160deg, #151718, #0b0c0d 70%);
}

.split-shell {
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: calc(var(--space-grid) + 20px);
  align-items: start;
}

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

.timeline article {
  padding: 26px 24px 28px;
  border-radius: 24px;
  background: rgba(24, 22, 20, 0.04);
  border: 1px solid rgba(24, 22, 20, 0.08);
}

.timeline span {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(109, 97, 86, 0.72);
  font-family: var(--font-en);
  font-size: 26px;
}

.timeline p {
  margin: 12px 0 0;
  color: rgba(24, 22, 20, 0.72);
  font-size: 15px;
  line-height: 1.85;
}

.metric-strip {
  width: min(1248px, calc(100% - 64px));
  margin: var(--space-block) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ai-section .metric-strip {
  width: min(1280px, calc(100% - 132px));
  padding-left: 48px;
  padding-right: 48px;
  margin-top: 20px;
}

.metric-strip span {
  color: rgba(24, 22, 20, 0.82);
  border-color: rgba(24, 22, 20, 0.12);
}

.stacked-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: var(--space-block);
}

.certificate-card {
  position: relative;
  padding: 24px;
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(185, 139, 47, 0.12), rgba(198, 31, 43, 0.12)),
    linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(10, 10, 10, 0.96));
  border: 1px solid rgba(247, 243, 235, 0.1);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.certificate-glow {
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.42), transparent 60%);
}

.certificate-body {
  position: relative;
}

.certificate-label {
  margin: 0;
  color: rgba(247, 243, 235, 0.58);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.certificate-body h3 {
  margin-top: 14px;
  color: var(--paper);
  font-size: clamp(22px, 2.6vw, 34px);
}

.certificate-preview {
  position: relative;
  min-height: 240px;
  margin-top: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(247, 243, 235, 0.38), transparent 28%),
    linear-gradient(160deg, #332723, #15110f);
}

.certificate-body dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 0;
}

.certificate-body dt {
  color: rgba(247, 243, 235, 0.58);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.certificate-body dd {
  margin: 8px 0 0;
  color: var(--paper);
  font-size: 14px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: calc(var(--space-grid) + 12px);
}

.news-section .section-heading.constrained {
  max-width: 620px;
}

.news-section-title {
  text-wrap: pretty;
  max-width: none;
  white-space: nowrap;
}

.news-list,
.event-list {
  margin-top: var(--space-block);
}

.news-feature-card {
  margin-top: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(225, 118, 90, 0.24);
  background: radial-gradient(circle at top right, rgba(225, 118, 90, 0.16), transparent 28%), rgba(255, 255, 255, 0.03);
}

.news-feature-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: rgba(247, 243, 235, 0.58);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.news-feature-card time {
  display: block;
  color: rgba(247, 243, 235, 0.58);
  font-family: var(--font-en);
  font-size: 14px;
}

.news-feature-card h3 {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.3;
  text-wrap: pretty;
}

.news-feature-card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.9;
}

.news-list article,
.event-list article {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.news-list time,
.event-date {
  display: inline-flex;
  color: rgba(247, 243, 235, 0.6);
  font-family: var(--font-en);
  font-size: 22px;
}

.news-list h3,
.event-list h3 {
  margin-top: 14px;
  font-size: 24px;
  text-wrap: pretty;
}

.info-title {
  max-width: 20ch;
}

.info-title-line {
  display: block;
  white-space: nowrap;
}

.info-subtitle-line {
  display: block;
}

.news-list p,
.event-list p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.9;
}

.event-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
}

@media (max-width: 1600px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .news-section .section-heading.constrained {
    max-width: none;
  }

  .event-list article {
    display: block;
    gap: 10px;
  }

  .event-date {
    display: block;
    margin: 0 0 10px;
  }

  .news-list h3,
  .event-list h3 {
    font-size: 22px;
    line-height: 1.36;
  }

  .news-section-title {
    white-space: normal;
  }

  .info-subtitle-line {
    display: inline;
  }

  .event-list article > div {
    width: 100%;
    max-width: none;
  }
}

.cta-section {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-bright) 100%);
  color: var(--paper);
  padding: calc(var(--space-section) + 10px) 0;
}

.cta-inner {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.summary-line {
  display: block;
  white-space: nowrap;
}

.body-line {
  display: block;
}

.centered-actions {
  justify-content: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.8fr 0.7fr;
  align-items: start;
  gap: 32px;
  padding: 52px 0 64px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand img {
  width: auto;
  max-width: 100%;
  max-height: 200px;
}

.footer-brand p,
.footer-links p,
.footer-links a {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.85;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
}

.footer-links h3 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 4px 0 6px;
  font-size: 18px;
  color: var(--paper);
}

.footer-links h3 span {
  line-height: 1.1;
}

.footer-links h3 small {
  color: rgba(247, 243, 235, 0.42);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a {
  color: var(--text-muted);
}

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

@media (max-width: 1100px) {
  :root {
    --anchor-offset: 158px;
  }

  .section-anchor {
    scroll-margin-top: 14px;
  }

  #artists-anchor {
    scroll-margin-top: 0;
  }

  #collections-anchor,
  #ai-awards-anchor,
  #digital-art-anchor,
  #news-anchor,
  #contact-anchor {
    scroll-margin-top: 6px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) auto;
    grid-template-areas:
      "brand spacer actions"
      "nav nav nav";
    width: 100%;
    align-items: end;
    column-gap: 16px;
    row-gap: 12px;
    padding: 10px 28px 12px;
  }

  .brand-mark {
    grid-area: brand;
    flex-basis: auto;
    padding-left: 4px;
  }

  .site-nav {
    grid-area: nav;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 10px;
    column-gap: 18px;
    padding-top: 0;
    font-size: 13px;
  }

  .site-nav a span {
    font-size: 13px;
  }

  .site-nav a small {
    font-size: 9px;
  }

  .header-actions {
    grid-area: actions;
    justify-self: end;
    padding-top: 24px;
  }

  .hero-inner,
  .split-shell,
  .news-grid,
  .collection-wall,
  .artist-layout,
  .site-footer,
  .pillar-grid,
  .about-hero-shell,
  .about-content-grid,
  .about-focus-grid,
  .about-team-grid,
  .admin-hero-shell,
  .admin-module-grid,
  .admin-workflow-grid,
  .admin-board-grid,
  .admin-permissions-grid,
  .admin-newslab-grid {
    grid-template-columns: 1fr;
  }

  .mission-heading,
  .artists-heading {
    display: grid;
    align-items: start;
    gap: 18px;
  }

  .mission-intro,
  .artists-intro,
  .category-pills {
    padding-top: 0;
  }

  .artist-layout {
    grid-template-rows: auto;
    gap: 20px;
  }

  .artist-portrait-large,
  .artist-portrait-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-inner {
    padding-top: 20px;
    gap: 40px;
    min-height: 0;
  }

  .about-hero-copy,
  .about-hero-panel,
  .about-section-block {
    padding-left: 28px;
    padding-right: 28px;
  }

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

  .team-card {
    grid-template-columns: 1fr;
  }

  .hero-copy::before {
    inset: 0 -8px 0 -10px;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 250px 180px;
  }

  .hero-stage-card-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 250px;
    padding-bottom: 74px;
  }

  .collection-wall {
    margin-top: 28px;
  }

  .artwork,
  .artwork-tall,
  .artwork-wide,
  .artwork-medium {
    min-height: 280px;
  }

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

  .certificate-body dl {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --anchor-offset: 144px;
  }

  .section-anchor {
    scroll-margin-top: 12px;
  }

  #artists-anchor {
    scroll-margin-top: 0;
  }

  #collections-anchor,
  #ai-awards-anchor,
  #digital-art-anchor,
  #news-anchor,
  #contact-anchor {
    scroll-margin-top: 4px;
  }

  .hero-inner,
  .section-shell,
  .cta-inner,
  .site-footer,
  .metric-strip {
    width: min(100% - 24px, 1248px);
  }

  .artists-section .section-shell,
  .collections-section .section-shell,
  .ai-section .section-shell,
  .digital-section .section-shell,
  .news-section .section-shell,
  .ai-section .metric-strip {
    width: min(100% - 24px, 1248px);
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    grid-template-columns: minmax(136px, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    min-height: 72px;
    row-gap: 10px;
    padding: 8px 14px 12px;
  }

  .brand-mark {
    padding-left: 2px;
  }

  .brand-mark img {
    max-height: 56px;
  }

  .header-actions {
    gap: 10px;
    padding-top: 18px;
  }

  .lang-switch {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 4px;
    font-size: 12px;
  }

  .header-actions .button {
    min-height: 40px;
    padding: 0 18px;
    font-size: 13px;
  }

  .hero-section {
    padding-top: 6px;
    padding-bottom: 28px;
    min-height: auto;
  }

  .hero-arc-one {
    top: 78px;
    left: -124px;
    width: 220px;
    height: 380px;
    border-width: 18px;
  }

  .hero-arc-two {
    top: 12px;
    left: -36px;
    width: 300px;
    height: 560px;
    border-width: 18px;
  }

  .hero-copy {
    padding: 18px 0 24px;
  }

  .hero-copy::before {
    inset: 0 -6px 0 -8px;
    background:
      linear-gradient(90deg, rgba(18, 18, 18, 0.84), rgba(18, 18, 18, 0.5) 74%, rgba(18, 18, 18, 0));
  }

  .hero-copy h1 {
    max-width: none;
    line-height: 1.04;
  }

  .admin-hero {
    min-height: auto;
    padding: 138px 0 56px;
  }

  .admin-hero-panel {
    grid-template-columns: 1fr;
  }

  .admin-kpi-card strong {
    font-size: 2.5rem;
  }

  .admin-module-card,
  .admin-stream-card,
  .admin-board-card,
  .admin-permission-item,
  .admin-news-source-card,
  .admin-news-draft-card {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .admin-module-card h3,
  .admin-stream-card h3,
  .admin-board-card h3,
  .admin-permission-item h3 {
    font-size: 1.55rem;
  }

  .hero-translation,
  .text-measure,
  .text-measure-wide {
    max-width: none;
  }

  .summary-line {
    white-space: normal;
  }

  .body-line {
    display: inline;
  }

  .hero-translation {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.32;
  }

  .hero-summary {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.82;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    align-items: start;
    gap: 10px 8px;
    width: 100%;
    padding: 2px 0 0;
  }

  .site-nav a {
    align-items: center;
    min-width: 0;
    text-align: center;
  }

  .site-nav a span {
    font-size: 12px;
  }

  .site-nav a small {
    font-size: 8px;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 560px) {
  .site-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav";
    justify-items: center;
    padding: 10px 12px 12px;
  }

  .brand-mark {
    justify-self: start;
    width: 100%;
  }

  .header-actions {
    justify-self: center;
    padding-top: 6px;
  }

  .site-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .hero-actions,
  .stacked-actions,
  .centered-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-signals {
    gap: 10px;
    letter-spacing: 0.08em;
  }

  .hero-signals span {
    border-right: 0;
    padding-right: 0;
  }

  .hero-stage {
    grid-template-rows: 220px 230px 150px;
  }

  .mission-section {
    width: min(100% - 24px, 1248px);
    margin: 0 auto;
    padding: 36px 20px 34px;
  }

  .about-section-block,
  .about-hero-shell {
    width: min(100% - 24px, 1248px);
  }

  .dark-section {
    padding: var(--space-section-mobile) 0;
  }

  .ai-section {
    padding-top: 36px;
    padding-bottom: 34px;
  }

  .artist-layout {
    gap: 16px;
  }

  .pillar {
    min-height: auto;
    padding: 24px 22px 24px;
  }

  .about-hero-copy,
  .about-hero-panel,
  .about-section-block,
  .about-contact-card {
    padding: 24px 20px 24px;
  }

  .about-hero-copy h1 {
    font-size: 42px;
  }

  .about-hero-stat strong,
  .team-meta h3 {
    font-size: 24px;
  }

  .team-photo {
    min-height: 260px;
  }

  .about-page .about-hero-shell,
  .about-page .about-section-block,
  .about-page .site-footer {
    width: min(100% - 24px, 1248px);
  }

  .about-section-featured::before {
    top: -164px;
    right: 24px;
  }

  .about-section-featured::after {
    top: -46px;
    right: -30px;
  }

  .artist-portrait {
    min-height: 240px;
  }

  .artist-portrait-large,
  .artist-portrait-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .collections-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-translation {
    max-width: none;
    font-size: 16px;
  }

  .category-pills {
    justify-content: flex-start;
  }

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

  .cta-section {
    padding: calc(var(--space-section-mobile) + 8px) 0;
  }

  .site-footer {
    padding: 40px 0 56px;
  }
}
