:root {
  --bg: #0d0d10;
  --bg-soft: #16161b;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f2ede4;
  --muted: rgba(242, 237, 228, 0.72);
  --accent: #c7ab7a;
  --accent-2: #8b7350;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --header-h: 78px;
}body.page-is-loading main,
body.page-is-loading .footer {
  opacity: 0;
  visibility: hidden;
}body.page-is-ready main,
body.page-is-ready .footer {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.18s ease;
}* {
  box-sizing: border-box;
}html {
  scroll-behavior: smooth;
}body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", sans-serif;
}img {
  display: block;
  max-width: 100%;
}a {
  color: inherit;
  text-decoration: none;
}button,
input,
textarea,
select {
  font: inherit;
}button {
  cursor: pointer;
}h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
}p {
  margin: 0;
  line-height: 1.7;
}.site-bg {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(13, 13, 16, 0.84), rgba(13, 13, 16, 0.94)),
    url("/assets/img/site/texture-home.webp") center / cover no-repeat;
  z-index: -1;
}.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}.narrow {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}.section {
  padding: 76px 0;
}.page-hero {
  padding-top: 42px;
}.hidden {
  display: none !important;
}.eyebrow {
  margin-bottom: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}.section-heading h2,
.page-title {
  font-size: clamp(2.1rem, 5vw, 4rem);
  margin-bottom: 14px;
}.page-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}.section-lead,
.section-intro {
  color: var(--muted);
  max-width: 64ch;
  margin: 0 auto;
}.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 24px;
}.panel-sub {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 18px;
}.empty-state {
  text-align: center;
  color: var(--muted);
  padding: 32px 20px;
}.text-link {
  display: inline-block;
  color: var(--accent);
}.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    180deg,
    rgba(8, 8, 12, 0.88),
    rgba(8, 8, 12, 0.58)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
}.brand-tag {
  color: var(--muted);
  font-size: 0.78rem;
}.menu-toggle {
  width: 46px;
  height: 46px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(199, 171, 122, 0.28);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}.nav-panel {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  padding: 18px 16px 22px;
  background: rgba(12, 12, 15, 0.97);
  border-bottom: 1px solid var(--line);
}.nav-panel.open {
  display: flex;
}.nav-panel a,
.nav-login {
  position: relative;
  padding: 12px 16px;
  color: var(--text);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  text-align: left;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease;
}.nav-panel a:hover,
.nav-login:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(199, 171, 122, 0.25);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  color: #fff;
}.nav-panel a::after,
.nav-login::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 8px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(199, 171, 122, 0.9),
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
  opacity: 0.9;
}.nav-panel a:hover::after,
.nav-login:hover::after {
  transform: scaleX(1);
}.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  padding-left: 6px;
}.lang-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 6px 10px;
  transition: all 0.22s ease;
}.lang-btn:hover,
.lang-btn.active {
  color: var(--text);
  border-color: rgba(199, 171, 122, 0.24);
  background: rgba(255, 255, 255, 0.04);
}.btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}.btn:hover {
  transform: translateY(-2px);
}.btn:active {
  transform: translateY(0);
}.btn-primary {
  background: #222;
  color: #fff;
}.btn-primary:hover {
  background: #000;
}.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
}.vote-btn {
  flex-direction: column;
  gap: 4px;
  line-height: 1.15;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}.vote-btn .btn-main {
  display: block;
}.vote-btn .btn-sub {
  display: block;
  font-size: 0.72rem;
  opacity: 0.72;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}.selection-voted-message {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(199, 171, 122, 0.28);
  border-radius: 12px;
  background: rgba(199, 171, 122, 0.06);
  color: var(--accent);
  text-align: center;
  line-height: 1.5;
  font-size: 0.96rem;
}.selection-voted-message-inline {
  width: 100%;
}.hero,
.hero-section {
  padding-top: 48px;
  position: relative;
}.hero-section {
  overflow: hidden;
  min-height: clamp(720px, 92vh, 980px);
}.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 20%,
      rgba(214, 184, 117, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.07),
      transparent 20%
    ),
    linear-gradient(
      180deg,
      rgba(7, 10, 18, 0.08) 0%,
      rgba(7, 10, 18, 0.28) 52%,
      rgba(7, 10, 18, 0.58) 100%
    );
  pointer-events: none;
  z-index: 0;
}.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 26, 0) 0%,
    rgba(11, 15, 26, 0.82) 100%
  );
  pointer-events: none;
  z-index: 0;
}.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: center;
}.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}.hero-copy .eyebrow {
  margin-bottom: 14px;
}.hero-kicker {
  opacity: 0.9;
}.hero-subtitle {
  margin-bottom: 14px;
  font-size: clamp(1.02rem, 1.15vw, 1.14rem);
  color: var(--accent);
  line-height: 1.8;
  max-width: 40ch;
}.hero-core {
  margin: 0 0 16px;
  max-width: 34ch;
  padding: 12px 16px;
  border: 1px solid rgba(199, 171, 122, 0.34);
  border-radius: 14px;
  background: rgba(199, 171, 122, 0.05);
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.3;
  box-shadow: 0 10px 28px rgba(199, 171, 122, 0.08);
}.hero-core strong {
  color: #f2ede4;
  font-weight: 600;
}.hero-invocation {
  max-width: 34ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.42rem, 2.3vw, 2rem);
  line-height: 1.32;
  color: rgba(255, 255, 255, 0.94);
  margin: 0 0 18px;
  text-wrap: balance;
}.hero-motto {
  max-width: 42ch;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.6);
  margin: 0;
  line-height: 1.8;
}.hero-copy h1,
.hero-title {
  font-size: clamp(3.3rem, 12vw, 6rem);
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  line-height: 0.94;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  max-width: 11ch;
}.hero-kicker {
  letter-spacing: 0.2em;
  text-transform: uppercase;
}.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  max-width: 360px;
}.hero-actions .btn {
  min-height: 50px;
  justify-content: center;
}.hero-copy {
  animation: heroReveal 0.9s ease both;
}.hero-visual {
  animation: heroReveal 1.15s ease both;
}@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}.hero-image-frame,
.hero-book-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.11),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}.hero-image-frame::after,
.hero-book-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.14));
}.hero-image-frame {
  width: min(100%, 380px);
  margin-inline: auto;
}.hero-image {
  display: block;
}.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.03)),
    radial-gradient(
      circle at calc(32% + var(--glow-shift-x, 0%))
        calc(28% + var(--glow-shift-y, 0px)),
      rgba(255, 255, 255, 0.12),
      transparent 18%
    ),
    radial-gradient(
      circle at calc(68% + var(--glow-shift-x, 0%) * 0.6)
        calc(42% + var(--glow-shift-y, 0px) * 0.5),
      rgba(255, 255, 255, 0.07),
      transparent 22%
    ),
    radial-gradient(
      circle at calc(52% + var(--glow-shift-x, 0%) * 0.4)
        calc(68% + var(--glow-shift-y, 0px) * 0.8),
      rgba(255, 255, 255, 0.05),
      transparent 26%
    ),
    linear-gradient(to right, rgba(199, 171, 122, 0.05), transparent 35%);
  mix-blend-mode: screen;
  transition: background 0.08s linear;
}.hero-book-frame {
  padding: clamp(0.9rem, 2vw, 1.2rem);
  border-radius: 32px;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}.hero-book-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(214, 184, 117, 0.5),
    rgba(255, 255, 255, 0.06),
    rgba(214, 184, 117, 0.18)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}.hero-image,
.hero-book {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}.hero-book {
  border-radius: 22px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
}.hero-meta {
  margin-top: 1.1rem;
  color: rgba(244, 240, 232, 0.72);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}.method-grid,
.artists-grid,
.works-grid,
.origin-grid,
.profile-layout,
.admin-layout,
.form-grid,
.admin-table,
.selection-checklist,
.artist-preview-panel {
  display: grid;
  gap: 16px;
}.profile-room {
  position: relative;
  overflow: hidden;
  padding: 34px 28px;
  background:
    linear-gradient(180deg, rgba(24, 25, 31, 0.96), rgba(15, 16, 21, 0.985));
  border: 1px solid rgba(199, 171, 122, 0.12);
}.profile-room::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(199, 171, 122, 0.06), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}.profile-visual-room {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(199, 171, 122, 0.14);
}.profile-image-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}.profile-image-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.18));
}.profile-page-invocation {
  margin: 18px auto 0;
  max-width: 40ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.14rem, 2vw, 1.5rem);
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.9);
}.info-card,
.work-card,
.artist-card,
.final-cta-box,
.selection-center-card,
.modal-panel,
.admin-drawer,
.origin-grid,
.origin-manifesto,
.origin-preview-card {
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(24, 25, 31, 0.96), rgba(15, 16, 21, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}.origin-manifesto-inner p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.95;
}.origin-not-box {
  border: 1px solid rgba(199, 171, 122, 0.16);
  background: rgba(255, 255, 255, 0.02);
}.info-card,
.origin-grid,
.origin-manifesto,
.origin-preview-card,
.selection-center-card,
.final-cta-box,
.cta-panel {
  backdrop-filter: blur(8px);
}.info-card {
  padding: 22px;
  border-radius: var(--radius);
}.info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}.info-card p,
.modal-text,
.login-note,
.selection-slide-body p,
.origin-grid p,
.origin-preview-card p,
.origin-manifesto p {
  color: var(--muted);
}.selection-slide {
  display: flex;
  flex-direction: column;
  height: 100%;
}.method {
  position: relative;
}.method-frames {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}.method-frame {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}.method-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at top right,
    rgba(199, 171, 122, 0.08),
    transparent 36%
  );
}.method-frame:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 171, 122, 0.28);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}.method-frame-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}.method-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: rgba(199, 171, 122, 0.95);
  letter-spacing: -0.04em;
}.method-label {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(199, 171, 122, 0.18);
  background: rgba(199, 171, 122, 0.06);
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}.method-frame h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 0.95;
}.method-frame p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 34ch;
}.selection,
.selection-section {
  position: relative;
}.selection::before,
.selection-section::before {
  background: radial-gradient(
    circle at center,
    rgba(199, 171, 122, 0.05),
    transparent 55%
  );
}.selection-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--muted);
  text-align: center;
}.selection-name,
.selection-status,
.selection-deadline {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}.selection-deadline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}.selection-note {
  margin-top: 18px;
  text-align: center;
  color: rgba(244, 240, 232, 0.68);
}.selection-circle-wrap {
  display: none;
}.selection-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82%;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}.selection-carousel::-webkit-scrollbar {
  height: 8px;
}.selection-carousel::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}.selection-slide,
.selection-shell {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}.selection-shell {
  border-radius: 30px;
}.selection-slide img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}.selection-slide-body {
  padding: 18px;
}.selection-slide-role,
.work-type,
.artist-meta,
.work-meta,
.center-kicker,
.profile-role,
.profile-meta-label {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}.selection-slide-body h3,
.artist-card h3,
.work-card h3,
.selection-center-card h3 {
  font-size: 1.8rem;
  margin: 8px 0 10px;
}.selection-slide-actions,
.center-actions,
.form-actions,
.admin-row-actions,
.login-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}.admin-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: rgba(255, 255, 255, 0.04);
  color: var(--text);

  border: 1px solid var(--line);
  border-radius: 10px;

  padding: 10px 38px 10px 12px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;

  cursor: pointer;
}.admin-form select:hover {
  border-color: rgba(199, 171, 122, 0.35);
}.admin-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(199, 171, 122, 0.15);
}.admin-form select option {
  background: #1a1a1f;
  color: #f2ede4;
}.admin-form label {
  position: relative;
}.admin-form label select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23c7ab7a' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23c7ab7a' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}.selection-header {
  align-items: end;
  gap: 1rem;
}.selection-title {
  letter-spacing: -0.025em;
}.selection-status {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}.selection-artist-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}.selection-artist-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 184, 117, 0.24);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}.selection-artist-card.is-selected {
  border-color: rgba(214, 184, 117, 0.48);
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(214, 184, 117, 0.2);
}.selection-artist-image img {
  transition: transform 0.55s ease;
}.selection-artist-card:hover .selection-artist-image img {
  transform: scale(1.04);
}.pagination-wrap {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}.pagination-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}.pagination-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}.pagination-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}.pagination-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(199, 171, 122, 0.34);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}.pagination-btn.is-active {
  border-color: rgba(199, 171, 122, 0.5);
  background: rgba(199, 171, 122, 0.14);
  border-color: var(--accent);
  color: #fff;
}.pagination-btn:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
  box-shadow: none;
}.artists-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}.artist-card,
.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 24px;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.35) 70%,
    rgba(0, 0, 0, 0.65) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}.artist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(199, 171, 122, 0.22),
    rgba(255, 255, 255, 0.04),
    rgba(199, 171, 122, 0.08)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.72;
  z-index: 1;
}.artist-card:hover::after {
  opacity: 1;
}body[data-page="works"] .work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 36%,
    rgba(7, 10, 18, 0.08) 58%,
    rgba(7, 10, 18, 0.2) 100%
  );
  z-index: 0;
}.artist-card:hover,
.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 171, 122, 0.3);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}.artist-card > *,
.work-card > * {
  position: relative;
  z-index: 1;
}.artist-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.05), transparent 22%),
    radial-gradient(circle at top right, rgba(199, 171, 122, 0.10), transparent 30%),
    linear-gradient(180deg, rgba(24, 25, 31, 0.96), rgba(15, 16, 21, 0.98));
  filter: saturate(0.98) contrast(1.02);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}.work-card img {
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}.artist-card:hover img,
.work-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.05);
}.artist-card-body,
.work-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.8rem;
  padding: 22px;
}.artist-card-body h3,
body[data-page="works"] .work-card-body h3 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}.artist-card-body p:last-of-type,
body[data-page="works"] .work-card-body p:last-of-type {
  color: var(--muted);
  line-height: 1.8;
  flex: 1;
}.artist-card .btn,
.work-card .btn {
  margin-top: auto;
  align-self: flex-start;
}.work-card-featured .work-card-body {
  gap: 10px;
}.work-related-selection {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 0.2rem;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}.work-related-selection strong {
  color: var(--accent);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
}.origin-hero,
.origin-preview {
  position: relative;
}.origin-hero .narrow {
  max-width: 900px;
}.origin-intro,
.works-page-intro,
.artists-page-intro {
  max-width: 70ch;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}.origin-manifesto-section,
.profile-page-section {
  padding-top: 10px;
}.origin-grid {
  border-radius: 24px;
  padding: 28px;
  gap: 22px;
}.origin-grid p + p,
.origin-manifesto-inner p + p {
  margin-top: 18px;
}.origin-manifesto,
.origin-preview-card {
  position: relative;
  overflow: hidden;
  padding: 34px 28px;
}.origin-manifesto::before,
.origin-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at top center,
    rgba(199, 171, 122, 0.08),
    transparent 42%
  );
}.origin-manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}.origin-manifesto-inner p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}#homeOriginPreview {
  align-items: stretch;
}#homeOriginPreview .panel,
#homeOriginPreview .origin-manifesto,
#homeOriginPreview .origin-preview-card {
  height: 100%;
}.profile-page-section {
  position: relative;
}.profile-page-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 220px;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(199, 171, 122, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}.profile-layout {
  gap: 24px;
}.profile-visual,
.profile-content {
  transition:
    transform 0.32s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}.profile-content:hover {
  border-color: rgba(199, 171, 122, 0.16);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}.profile-visual {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}.profile-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.34) 100%
  );
}.profile-visual::before,
.profile-content::after,
.artists-page-hero::before,
.profile-page-hero::before,
.works-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at top right,
      rgba(199, 171, 122, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}.profile-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
  filter: saturate(0.98) contrast(1.03);
}.profile-visual:hover .profile-image {
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.05);
}.profile-content > * + * {
  margin-top: 20px;
}.artist-card-body {
  justify-content: flex-start;
}.artist-card-body .artist-meta {
  margin-bottom: 2px;
}.artist-card-body h3 {
  max-width: 12ch;
}.artist-card-body p {
  max-width: 34ch;
}.artists-page-hero,
.profile-page-hero {
  position: relative;
  overflow: hidden;
}.artists-page-hero::after,
.profile-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 16, 0) 0%,
    rgba(13, 13, 16, 0.68) 100%
  );
  pointer-events: none;
}.artists-page-hero .narrow,
.profile-page-hero .narrow {
  position: relative;
  z-index: 1;
}.work-associated-artist-link {
  display: inline-flex;
  align-items: center;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}.work-associated-artist-link:hover {
  opacity: 1;
  transform: translateX(2px);
}.profile-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}.profile-back-link:hover {
  opacity: 1;
  transform: translateX(-2px);
}.profile-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-wrap: balance;
  margin: 8px 0 14px;
}.profile-role {
  display: inline-block;
  margin-bottom: 2px;
}.profile-meta,
.profile-bio,
.profile-statement-block p {
  color: var(--muted);
}.profile-bio {
  max-width: 62ch;
  font-size: 1.08rem;
  line-height: 1.95;
  color: var(--muted);
}.profile-meta-panel {
  margin: 10px 0 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.025)
  );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 28px rgba(0, 0, 0, 0.12);
}.profile-meta-label {
  display: block;
  margin-bottom: 8px;
}.profile-meta-data {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}.profile-statement-block {
  margin-top: 1.7rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}.profile-statement-block h2 {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}.profile-statement-block p {
  font-size: 1.03rem;
  line-height: 1.9;
}.preview-gallery-grid,
.profile-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}.preview-gallery-image,
.profile-gallery-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}.profile-content h2,
.profile-content h3 {
  text-wrap: balance;
}.profile-statement-block h2,
.profile-media-section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}.profile-gallery-image:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(199, 171, 122, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}.profile-gallery-image {
  will-change: transform;
}.profile-gallery-grid {
  align-items: start;
}.preview-video-list,
.profile-video-list {
  list-style: none;
  margin: 12px 0 0;
  padding-left: 0;
}.preview-video-list li,
.profile-video-list li {
  margin-bottom: 8px;
}.preview-video-list a,
.profile-video-list a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  color: var(--accent);
  word-break: break-word;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}.artists-page-hero .page-title,
.profile-page-hero .page-title {
  text-wrap: balance;
  letter-spacing: -0.03em;
}.artists-page-intro,
.profile-page-hero .section-lead {
  max-width: 66ch;
}.profile-video-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 171, 122, 0.42);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}body[data-page="works"] .works-grid {
  align-items: stretch;
}body[data-page="works"] .selection-slide-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}.work-detail {
  position: relative;
  overflow: visible;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 28px;
}.work-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at top right,
      rgba(199, 171, 122, 0.08),
      transparent 34%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}.work-detail-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: start;
}.work-detail-visual {
  display: grid;
  gap: 16px;
  align-content: start;
}.work-detail-cover,
.work-detail-back-cover {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--line);
  object-fit: cover;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}.work-detail-visual:hover .work-detail-cover {
  transform: scale(1.03);
  filter: saturate(1.04) contrast(1.05);
}.work-detail-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}.work-detail-content > * {
  min-width: 0;
}.work-detail-content .text-link {
  align-self: flex-start;
  margin-top: 0;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}.work-detail-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}.work-detail-content > p,
.work-detail .profile-statement-block p,
.work-detail .profile-statement-block a,
.work-related-selection span {
  color: var(--muted);
  line-height: 1.85;
  overflow-wrap: break-word;
  word-break: normal;
}.work-detail-content > p {
  max-width: 60ch;
}.work-detail .profile-statement-block {
  margin-top: 0.15rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}.work-detail .profile-statement-block h3 {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  margin: 0 0 0.05rem 0;
  line-height: 1.1;
}.work-detail .profile-statement-block a {
  color: var(--accent);
}.work-detail .btn {
  align-self: flex-start;
  margin-top: 0.6rem;
}.work-detail .work-associated-artist-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  line-height: 1;
}.cta-section {
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 10vw, 9rem);
}.final-cta-box,
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 34px 24px;
  text-align: center;
}.final-cta-box h2,
.cta-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  text-wrap: balance;
}.final-cta-box p,
.cta-copy {
  color: var(--muted);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}.final-cta-box .btn,
.cta-actions {
  margin-top: 18px;
}.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0 40px;
}.footer-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}.footer-links a {
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
}.footer-links a:hover {
  color: var(--accent);
}.modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}.modal.open {
  display: flex;
}.modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(199, 171, 122, 0.08),
      transparent 42%
    ),
    rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(88vh, 760px);
  overflow-y: auto;
  padding: 30px 24px 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    180deg,
    rgba(28, 28, 34, 0.96),
    rgba(14, 14, 18, 0.98)
  );
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(10px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}.modal.open .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.2rem;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}.modal-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(199, 171, 122, 0.28);
}.modal-text,
.login-note {
  color: var(--muted);
}.login-note {
  margin-top: 16px;
  font-size: 0.92rem;
  line-height: 1.6;
}.login-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}.login-form label,
.form-grid label {
  display: grid;
  gap: 8px;
}.login-form input,
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 12px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}.login-form input:focus,
.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  outline: none;
  border-color: rgba(199, 171, 122, 0.48);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 3px rgba(199, 171, 122, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}.form-grid textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.65;
}.form-grid select {
  appearance: none;
}.form-grid input::placeholder,
.form-grid textarea::placeholder,
.admin-search-input::placeholder {
  color: var(--muted);
}.form-grid input[readonly],
.form-grid textarea[readonly] {
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  border-style: dashed;
}.admin-guard-box {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px;
  text-align: center;
}.admin-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 10px;
}.admin-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}.admin-main {
  display: grid;
  gap: 22px;
  align-content: start;
}.admin-sidebar,
.form-panel,
.admin-main .panel {
  width: 100%;
  padding: 22px;
}.analytics-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(199, 171, 122, 0.16);
  background:
    linear-gradient(180deg, rgba(28, 24, 18, 0.32), rgba(15, 15, 19, 0.92)),
    rgba(255, 255, 255, 0.03);
}

.analytics-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.analytics-generated-at {
  color: var(--muted);
  font-size: 0.9rem;
}

.analytics-alerts {
  display: grid;
  gap: 10px;
}

.analytics-alert {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(199, 171, 122, 0.18);
  background: rgba(199, 171, 122, 0.06);
  color: var(--text);
}

.analytics-alert.is-warning {
  border-color: rgba(214, 140, 94, 0.32);
  background: rgba(214, 140, 94, 0.08);
}

.analytics-alert.is-danger {
  border-color: rgba(180, 86, 86, 0.38);
  background: rgba(180, 86, 86, 0.08);
}

.analytics-alert-title {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.analytics-grid {
  display: grid;
  gap: 14px;
}

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

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

.analytics-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.analytics-card-kicker {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.analytics-card-value {
  display: block;
  margin-top: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.analytics-card-meta {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.analytics-columns {
  display: grid;
  gap: 14px;
}

.analytics-subpanel {
  padding: 18px;
}

.analytics-subpanel-head {
  margin-bottom: 14px;
}

.analytics-subpanel-head h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.analytics-subpanel-head p {
  color: var(--muted);
}

.analytics-route-list,
.analytics-list-block {
  display: grid;
  gap: 10px;
}

.analytics-row {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.analytics-row-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.analytics-row-title {
  font-weight: 600;
  line-height: 1.45;
}

.analytics-row-value {
  color: var(--accent);
  white-space: nowrap;
}

.analytics-row-meta {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.analytics-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.84rem;
}

.analytics-status-strip {
  display: grid;
  gap: 12px;
}

.curatorial-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.curatorial-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  align-content: start;
}

.curatorial-label {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.curatorial-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.3vw, 2.2rem);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.curatorial-strip > .curatorial-item:first-child {
  grid-column: 1 / -1;
}

.curatorial-description {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(199, 171, 122, 0.14);
  background: rgba(199, 171, 122, 0.05);
  color: var(--muted);
  line-height: 1.6;
}

.analytics-status-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.analytics-panel-strategic {
  margin-top: 16px;
}

.analytics-strategic-headline {
  margin-bottom: 14px;
}

.analytics-strategic-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.analytics-strategic-reasons {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.analytics-strategic-reason {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  line-height: 1.55;
}

.analytics-status-card {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.analytics-status-card.is-good {
  border-color: rgba(110, 168, 118, 0.28);
  background: rgba(110, 168, 118, 0.08);
}

.analytics-status-card.is-watch {
  border-color: rgba(199, 171, 122, 0.28);
  background: rgba(199, 171, 122, 0.08);
}

.analytics-status-card.is-high,
.analytics-status-card.is-critical {
  border-color: rgba(180, 86, 86, 0.36);
  background: rgba(180, 86, 86, 0.08);
}

.analytics-status-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.analytics-status-title {
  font-weight: 600;
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.analytics-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.analytics-status-pill.is-good {
  color: #cfe9d4;
  background: rgba(110, 168, 118, 0.14);
}

.analytics-status-pill.is-watch {
  color: #ead9b3;
  background: rgba(199, 171, 122, 0.14);
}

.analytics-status-pill.is-high,
.analytics-status-pill.is-critical {
  color: #f0c5c5;
  background: rgba(180, 86, 86, 0.14);
}

.analytics-status-summary {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.96rem;
}

.analytics-subpanel-wide {
  width: 100%;
}

.analytics-readiness-recommendations {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.analytics-readiness-recommendation {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(199, 171, 122, 0.14);
  background: rgba(199, 171, 122, 0.05);
  color: var(--text);
}

.analytics-chart-stack {
  display: grid;
  gap: 14px;
  margin-bottom: 14px;
}

.analytics-chart-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.analytics-chart-card-metrics {
  border-color: rgba(199, 171, 122, 0.14);
  background:
    linear-gradient(180deg, rgba(199, 171, 122, 0.05), rgba(255, 255, 255, 0.018));
}

.analytics-chart-head {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.analytics-chart-head h4 {
  font-size: 1.22rem;
  line-height: 1.1;
}

.analytics-chart-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.analytics-chart-body {
  display: grid;
  gap: 12px;
}

.analytics-chart-row {
  display: grid;
  gap: 8px;
}

.analytics-chart-row-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.analytics-chart-label {
  font-weight: 600;
  line-height: 1.45;
}

.analytics-chart-value {
  color: var(--accent);
  white-space: nowrap;
}

.analytics-chart-bar-track {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.analytics-chart-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(199, 171, 122, 0.7), rgba(199, 171, 122, 0.96));
  box-shadow: 0 0 18px rgba(199, 171, 122, 0.18);
}

.analytics-chart-bar-fill.is-accent {
  background: linear-gradient(90deg, rgba(199, 171, 122, 0.72), rgba(199, 171, 122, 0.98));
}

.analytics-chart-bar-fill.is-accent-soft {
  background: linear-gradient(90deg, rgba(139, 115, 80, 0.72), rgba(199, 171, 122, 0.88));
}

.analytics-chart-bar-fill.is-gold {
  background: linear-gradient(90deg, rgba(214, 187, 128, 0.8), rgba(232, 214, 171, 0.98));
}

.analytics-chart-bar-fill.is-danger {
  background: linear-gradient(90deg, rgba(166, 92, 92, 0.7), rgba(196, 118, 118, 0.95));
}

.analytics-chart-meta {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.analytics-metric-pill {
  display: grid;
  gap: 4px;
  min-height: 88px;
  padding: 14px 15px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  align-content: start;
}

.analytics-metric-pill-label {
  color: var(--accent);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.analytics-metric-pill-value {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.05;
}

.analytics-metric-pill-meta {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

@media (min-width: 980px) {
  .analytics-status-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .analytics-grid-primary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

@media (max-width: 767px) {
  .analytics-grid-primary,
  .analytics-grid-secondary,
  .analytics-columns {
    grid-template-columns: 1fr;
  }

  .analytics-strategic-grid {
    grid-template-columns: 1fr;
  }

  .analytics-toolbar,
  .analytics-row-top {
    align-items: flex-start;
    flex-direction: column;
  }

    .analytics-chart-row-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .analytics-metric-band {
    grid-template-columns: 1fr;
  }

  .analytics-card-value {
    font-size: 2.2rem;
  }
}
.admin-sidebar {
  height: fit-content;
}.admin-sidebar-actions {
  margin-top: 18px;
}.panel-head {
  margin-bottom: 18px;
  padding-left: 12px;
}.panel-head h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}.panel-head p {
  color: var(--muted);
}#adminWorksList {
  margin-top: 4px;
}

#adminWorksList,
#adminWorksPagination,
#adminWorksSearch {
  position: relative;
}

#adminWorksSearch {
  margin-left: 12px;
}

#adminWorksPagination {
  margin-left: 12px;
}

#adminWorksList {
  padding-left: 12px;
}

#adminWorksList:empty {
  padding-left: 12px;
}

#adminWorksList {
  box-sizing: border-box;
}

#adminWorksList {
  width: calc(100% - 12px);
}

.panel:has(#adminWorksList) .panel-head {
  padding-left: 12px;
}.admin-form {
  display: grid;
  gap: 16px;
}.form-grid label {
  align-content: start;
}.form-grid label > span {
  display: inline-block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.95rem;
}.form-grid label.full {
  grid-column: 1 / -1;
}.admin-table {
  gap: 14px;
}.admin-row {
  padding: 16px;
  display: grid;
  gap: 14px;
}.admin-row-main {
  display: flex;
  gap: 14px;
  align-items: center;
}.admin-thumb {
  width: 72px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
}.admin-row-main h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}.admin-row-main p,
.admin-row-actions span,
.admin-section p {
  color: var(--muted);
}#adminWorksList {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

#adminWorksList .admin-row {
  height: 100%;
  padding: 18px;
  align-content: start;
}

#adminWorksList .admin-row-main {
  align-items: flex-start;
}

#adminWorksList .admin-row-copy {
  min-width: 0;
  padding-top: 2px;
  padding-left: 4px;
}

#adminWorksList .admin-row-copy h3 {
  margin-top: 0;
  margin-left: 0;
}

#adminWorksList .admin-row-actions {
  margin-top: auto;
}

@media (min-width: 1100px) {
  #adminWorksList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  #adminWorksList .admin-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  #adminWorksList .admin-row-main {
    align-items: flex-start;
  }

  #adminWorksList .admin-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }

  #adminWorksList .admin-row-actions .btn {
    flex: 1 1 auto;
  }
}


.admin-status,
.artist-votes,
.votes-total-box strong {
  color: var(--accent) !important;
}.admin-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 420px);
  height: 100dvh;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 24px;
  overflow-y: auto;
  border-left: 1px solid var(--line);
  background: rgba(17, 17, 21, 0.98);
}.admin-drawer.open {
  transform: translateX(0);
}.admin-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}.admin-section + .admin-section {
  margin-top: 22px;
}.admin-section h4 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}.selection-checklist {
  gap: 10px;
}.check-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}.votes-summary {
  margin-bottom: 18px;
}.votes-total-box {
  padding: 14px 16px;
}#homeWorksGrid:empty,
#worksListingGrid:empty {
  min-height: 80px;
}.upload-path-field {
  width: 100%;
  margin-top: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  line-height: 1.55;
}textarea.upload-path-field {
  min-height: 110px;
}.admin-upload {
  display: grid;
  gap: 12px;
  align-content: start;
}.admin-upload.is-uploading {
  opacity: 0.82;
}.admin-upload.is-dragover .admin-upload-dropzone {
  border-color: rgba(199, 171, 122, 0.7);
  background: rgba(199, 171, 122, 0.08);
  transform: translateY(-1px);
}.admin-upload-dropzone {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.025);
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}.admin-upload-title {
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.4;
}.admin-upload-help,
.admin-upload-status,
.upload-preview-empty {
  color: var(--muted);
  font-size: 0.92rem;
}.admin-upload-help {
  line-height: 1.6;
  white-space: pre-line;
}.admin-upload-status {
  min-height: 1.3em;
}.admin-upload-status.is-error {
  color: #ffb4b4;
}.admin-upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 6px;
}.admin-upload-preview {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  margin-top: 4px;
}.upload-preview-card {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  aspect-ratio: 4 / 5;
}.upload-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.selection {
  position: relative;
}.selection::before {
  content: "";
  position: absolute;
  inset: 40px 0 auto;
  height: 420px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 38%, rgba(199, 171, 122, 0.12), transparent 34%),
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.05), transparent 18%);
  opacity: 0.9;
}.selection-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}.selection-lead {
  max-width: 58ch;
}.selection-ritual-line {
  margin: 18px auto 0;
  max-width: 44ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
}.selection-shell {
  position: relative;
  z-index: 2;
  padding: 28px 24px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(199, 171, 122, 0.16);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}.selection-microcopy {
  margin: 20px auto 0;
  max-width: 40ch;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}.selection-note {
  margin: 10px auto 0;
  max-width: 46ch;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.58);
}@media (min-width: 768px) {
  .hero-actions,
  .selection-slide-actions,
  .login-actions {
    flex-direction: row;
  }
.selection-circle-wrap {
  display: block;
  margin-bottom: 180px;
}

.selection-circle {
  position: relative;
  min-height: 860px;
}

  .hero-actions {
  max-width: none;
}

.hero-actions .btn {
  min-width: 220px;
}

  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }

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

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

  .origin-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .profile-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

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

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

  .form-actions,
  .admin-row-actions,
  .footer-row {
    flex-direction: row;
  }

  .footer-row {
    justify-content: space-between;
    align-items: flex-start;
  }

  .origin-manifesto {
    padding: 44px 42px;
  }

  .origin-intro,
  .works-page-intro,
  .artists-page-intro,
  .origin-manifesto-inner p,
  .profile-bio,
  .profile-statement-block p {
    font-size: 1.08rem;
  }

  .final-cta-box,
  .cta-panel {
    padding: 48px 40px;
  }
}@media (min-width: 900px) {
  .work-detail-grid {
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(28px, 4vw, 56px);
  }

  .work-detail-visual {
    position: sticky;
    top: calc(var(--header-h) + 24px);
    align-self: start;
  }

  .work-detail-content {
    min-width: 0;
  }
}@media (min-width: 960px) {
  .profile-layout {
    grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
  }

  .profile-visual {
    position: sticky;
    top: 118px;
    align-self: start;
  }

  .profile-content {
    padding: 38px;
    min-height: 100%;
  }
  .profile-content {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(24, 25, 31, 0.96), rgba(15, 16, 21, 0.98));
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.2);
}
.profile-role {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.profile-statement-block {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.work-detail-cover-link {
  display: block;
  text-decoration: none;
  color: inherit;
  
}

.work-card-cover {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.work-card-cover img {
  display: block;
}

.work-detail .profile-statement-block + .profile-statement-block {
  margin-top: 8px;
}

.profile-title {
  margin-bottom: 8px;
}

.profile-curated-badge {
  display: inline-block;
  margin-bottom: 18px;
}

.profile-statement-block {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.profile-statement-block + .profile-statement-block {
  margin-top: 18px;
}
}@media (min-width: 1100px) {
  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-panel a,
  .nav-login {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.015);
    text-align: center;
    backdrop-filter: blur(8px);
  }

  .nav-panel a:hover,
  .nav-login:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(199, 171, 122, 0.3);
  }

  .lang-switch {
    margin-top: 0;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero {
    padding-top: 64px;
  }

  .hero-copy h1 {
    line-height: 0.92;
  }

  .hero-image {
    aspect-ratio: 4 / 4.8;
  }

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

  .method-frames {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
  }

  .method-frame {
    min-height: 100%;
  }

  .artists-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 420px));
    justify-content: center;
    align-items: stretch;
  }

  .selection-carousel {
    display: none;
  }

  .selection-circle-wrap {
    display: block;
  }

  .selection .section-heading {
    position: relative;
    z-index: 3;
    margin-bottom: 20px;
  }

  .selection-meta {
    position: relative;
    z-index: 3;
    margin-bottom: 28px;
  }




.artist-node img {
  pointer-events: none;
}

.artist-node img,
.artist-node span {
  pointer-events: auto;
}

.center-votes {
  margin: 10px 0 14px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.35;
}
.center-votes span {
  opacity: 0.8;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.center-votes strong {
  color: var(--accent);
  font-size: 1.12rem;
  font-weight: 700;
}
.center-image-wrap {
  width: 100%;
  height: 300px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(199, 171, 122, 0.1);
}

.center-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.center-actions .btn {
  width: 100%;
  justify-content: center;
}

  .center-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 18px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .admin-layout {
    grid-template-columns: 360px 1fr;
    align-items: start;
  }
}@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
  }

  .hero-title,
  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-book-frame {
    max-width: min(84vw, 420px);
    margin-inline: auto;
  }
}@media (max-width: 640px) {
  .hero-copy h1,
.hero-title {
  max-width: none;
  font-size: clamp(2.9rem, 15vw, 4.2rem);
}

.hero-invocation {
  font-size: clamp(1.28rem, 6vw, 1.55rem);
  max-width: none;
}

.hero-motto {
  font-size: 1.2rem;
  letter-spacing: 0.07em;
}

.hero-text,
.selection-slide-text,
.artist-card-summary,
.artists-page-intro,
.origin-intro,
.origin-manifesto-inner p,
.profile-statement-block p {
  font-size: 0.98rem;
  line-height: 1.82;
}

.selection-center-card {
  width: 100%;
  max-width: 320px;
}

.center-image-wrap {
  height: 230px;
}

.artist-card-badge {
  left: 12px;
  top: 12px;
}
  .homepage .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-actions,
  body[data-page="works"] .selection-slide-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-panel,
  .final-cta-box {
    border-radius: 26px;
  }

  .selection-shell,
  .work-detail {
    border-radius: 22px;
  }
}body[data-page="works"] .works-grid.works-detail-mode {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-content: stretch;
}.pagination-btn:disabled {
  opacity: 0.4;
  cursor: default;
  transform: none;
  box-shadow: none;
}.admin-list-toolbar {
  margin: 0 0 18px;
  display: flex;
  justify-content: flex-start;
}.admin-search-input {
  width: min(100%, 420px);
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}.admin-search-input::placeholder {
  color: var(--muted);
}.toast-stack {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 120;
  display: grid;
  gap: 12px;
  width: min(100% - 24px, 460px);
}.toast {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(29, 29, 35, 0.96),
    rgba(17, 17, 22, 0.98)
  );
  color: var(--text);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.36);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  animation: toastIn 0.24s ease forwards;
}.toast.is-error {
  border-color: rgba(255, 120, 120, 0.28);
}.toast.is-success {
  border-color: rgba(199, 171, 122, 0.28);
}@keyframes toastIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}.ui-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}.ui-modal.open {
  display: block;
}.ui-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 14, 0.62);
  backdrop-filter: blur(4px);
}.ui-modal-dialog {
  position: relative;
  width: min(92vw, 460px);
  margin: 50vh auto 0;
  transform: translateY(-50%);
  background: rgba(20, 20, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  padding: 24px 22px 20px;
  color: #f5f1e8;
}.ui-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}.ui-modal-close:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(199, 171, 122, 0.32);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}.ui-modal-close:active {
  transform: translateY(0);
}.ui-modal-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}.ui-modal-title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
}.ui-modal-message {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.94;
}.ui-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}.toast-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}.toast {
  min-width: 220px;
  max-width: 320px;
  padding: 12px 14px;
  border-radius: 12px;
  color: #fff;
  background: rgba(25, 25, 30, 0.96);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}.toast.is-success {
  border: 1px solid rgba(120, 255, 180, 0.25);
}.toast.is-error {
  border: 1px solid rgba(255, 120, 120, 0.25);
}.public-auth-panel {
  margin-bottom: 24px;
}.public-auth-form {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 14px;
}.public-auth-form input[type="email"],
.public-auth-form input[type="text"] {
  min-width: 280px;
  flex: 1 1 280px;
  height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
}.public-auth-text {
  margin-top: 8px;
}@media (max-width: 640px) {
  .public-auth-form {
    flex-direction: column;
    align-items: stretch;
  }

  .public-auth-form input[type="email"],
.public-auth-form input[type="text"],
.public-auth-form .btn {
  width: 100%;
}
}.work-artist-line {
  margin: 2px 0 4px;
  color: var(--muted);
}.work-artist-line span {
  color: var(--accent);
  margin-right: 6px;
}.origin-manifesto-inner p,
.origin-manifesto p,
.origin-preview-card p {
  white-space: normal;
}.selection-status.is-open {
  border-color: rgba(199, 171, 122, 0.28);
  color: var(--accent);
}.selection-status.is-closed {
  border-color: rgba(255, 120, 120, 0.28);
  color: #ffb1b1;
  background: rgba(255, 120, 120, 0.06);
}.btn.is-disabled,
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}.profile-gallery-shell {
  margin-top: 18px;
}.profile-gallery-main-wrap {
  margin-bottom: 14px;
}.profile-gallery-main-btn {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: block;
  cursor: pointer;
}.profile-gallery-main-image {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}.profile-gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}.profile-gallery-thumb {
  flex: 0 0 88px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
  cursor: pointer;
}.profile-gallery-thumb:hover,
.profile-gallery-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(199, 171, 122, 0.52);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}.profile-gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}.admin-upload-preview {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}.admin-gallery-shell {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 4px;
}.admin-gallery-main-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 12px;
}.admin-gallery-main-btn {
  width: 100%;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}.admin-gallery-main-image {
  width: 100%;
  max-width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  display: block;
  background: rgba(255, 255, 255, 0.03);
}.admin-gallery-thumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 12px;
  margin-top: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(199, 171, 122, 0.35) transparent;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}.admin-gallery-thumbs::-webkit-scrollbar {
  height: 8px;
}.admin-gallery-thumbs::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}.admin-gallery-thumbs::-webkit-scrollbar-thumb {
  background: linear-gradient(
    90deg,
    rgba(199, 171, 122, 0.22),
    rgba(199, 171, 122, 0.5)
  );
  border-radius: 999px;
}.admin-gallery-thumbs::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    90deg,
    rgba(199, 171, 122, 0.34),
    rgba(199, 171, 122, 0.72)
  );
}.admin-gallery-thumb {
  flex: 0 0 86px;
  width: 86px;
  max-width: 86px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}.admin-gallery-thumb:hover,
.admin-gallery-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(199, 171, 122, 0.52);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}.admin-gallery-thumb img {
  width: 100%;
  height: 82px;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}.admin-gallery-main-wrap,
.admin-gallery-thumb {
  position: relative;
}.admin-image-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}.admin-image-remove--thumb {
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  font-size: 14px;
}.admin-gallery-thumb {
  position: relative;
}.admin-gallery-thumb[draggable="true"] {
  cursor: grab;
}.admin-gallery-thumb[draggable="true"]:active {
  cursor: grabbing;
}.admin-gallery-thumb.is-dragging {
  opacity: 0.45;
  transform: scale(0.96);
}.admin-gallery-thumb.is-drop-before::before,
.admin-gallery-thumb.is-drop-after::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(199, 171, 122, 0.45);
}.admin-gallery-thumb.is-drop-before::before {
  left: 4px;
}.admin-gallery-thumb.is-drop-after::after {
  right: 4px;
}.admin-gallery-shell.is-single .admin-gallery-main-wrap {
  margin-bottom: 0;
}@media (max-width: 640px) {
  .admin-gallery-main-image {
    max-height: 280px;
  }

  .admin-gallery-thumb {
    flex: 0 0 72px;
    width: 72px;
    max-width: 72px;
  }

  .admin-gallery-thumb img {
    height: 72px;
  }
}.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}.gallery-lightbox.open {
  display: block;
}.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 12, 0.9);
  backdrop-filter: blur(6px);
}.gallery-lightbox-topbar {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
}.gallery-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(94vw, 1200px);
  height: min(88vh, 900px);
  margin: 50vh auto 0;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 14px;
  padding: 24px 0 116px; 
  box-sizing: border-box;
}.gallery-lightbox-stage {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}.gallery-lightbox-image {
  max-width: 100%;
  max-height: calc(88vh - 190px); 
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  background: rgba(255, 255, 255, 0.03);
}.gallery-lightbox-close,
.gallery-lightbox-nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(199, 171, 122, 0.34);
}.gallery-lightbox-thumbs {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  max-width: min(92vw, 980px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px;
}.gallery-lightbox-thumb {
  flex: 0 0 72px;
  width: 72px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}.gallery-lightbox-thumb.is-active {
  border-color: rgba(199, 171, 122, 0.56);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}.gallery-lightbox-thumb img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  display: block;
}@media (max-width: 700px) {
  .gallery-lightbox-dialog {
    width: min(96vw, 1200px);
    height: min(82vh, 900px);
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 10px;
    padding: 20px 0 104px;
  }

  .gallery-lightbox-image {
    max-height: calc(84vh - 180px);
  }

  .gallery-lightbox-close,
  .gallery-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .gallery-lightbox-thumb {
    flex: 0 0 64px;
    width: 64px;
  }

  .gallery-lightbox-thumb img {
    height: 64px;
  }
}.admin-gallery-main-wrap,
.admin-gallery-thumb {
  position: relative;
}.admin-image-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.82);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}.admin-image-remove:hover {
  transform: scale(1.08);
  background: rgba(150, 24, 24, 0.92);
  border-color: rgba(255, 255, 255, 0.3);
}.admin-image-remove--thumb {
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  font-size: 15px;
}.method-notice {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--accent);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  letter-spacing: 0.02em;
}.selection-heading {
  margin: 0 auto 24px;
  text-align: center;
  max-width: 760px;
  color: var(--text);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.1;
  opacity: 0.96;
}.artists-page-notice {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1.8;
  padding: 16px 18px;
  border: 1px solid rgba(199, 171, 122, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}.profile-curated-badge {
  display: inline-block;
  margin-top: 4px;
  margin-bottom: 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  line-height: 1.5;
}.origin-not-box {
  margin-top: 26px;
  padding: 28px 24px;
  text-align: center;
}.origin-not-box h3 {
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  margin-bottom: 16px;
}.origin-not-list {
  list-style: none;
  padding: 0;
  margin: 0;
}.origin-not-list li + li {
  margin-top: 10px;
}.origin-not-list li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}@media (max-width: 640px) {
  .method-notice,
  .selection-heading,
  .artists-page-notice {
    padding-left: 8px;
    padding-right: 8px;
  }
.selection-shell {
  padding: 20px 16px 20px;
}

.selection-ritual-line {
  font-size: 1.08rem;
}

.selection-microcopy {
  font-size: 1rem;
}

.selection-note {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

  .origin-not-box {
    padding: 22px 18px;
  }
}.selection-microcopy {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}.center-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0 0 10px;
}.selection-slide {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(24, 25, 31, 0.96),
    rgba(15, 16, 21, 0.98)
  );
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
}.selection-slide-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}.selection-slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}.selection-slide-body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  height: 100%;
}.selection-slide-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  margin-bottom: 8px;
}.selection-slide-role {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.92rem;
}.selection-slide h3 {
  margin-bottom: 10px;
}.selection-slide-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 12px;
}.selection-state-block.compact {
  display: block;
  margin: 12px 0 14px;
}.selection-slide-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}.selection-slide-actions .btn {
  width: 100%;
  justify-content: center;
}.artist-card-curated {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(24, 25, 31, 0.96), rgba(15, 16, 21, 0.98));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
}.artist-card-curated:hover {
  transform: translateY(-6px);
  border-color: rgba(199, 171, 122, 0.24);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.24);
}.artist-card-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}.artist-card-visual > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
}.artist-card-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 4;
  pointer-events: none;
}.artist-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}.artist-card-curated:hover .artist-card-visual img {
  transform: scale(1.03);
}.artist-card-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}.artist-card-body h3 {
  margin-bottom: 2px;
}.artist-meta {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}.artist-card-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(14, 15, 20, 0.92);
  border: 1px solid rgba(199, 171, 122, 0.26);
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}.artist-card-summary {
  color: var(--muted);
  line-height: 1.8;
}.center-text,
.artist-card-summary,
.selection-slide-text,
.work-detail-content > p,
.work-card-body > p,
.profile-statement-block p,
.selection-curatorial-text {
  line-height: 1.8;
}.profile-statement-block strong,
.work-detail-content strong,
.work-card-body strong,
.selection-curatorial-text strong,
.origin-manifesto-flow strong {
  font-weight: 700;
  color: var(--text);
}.profile-statement-block em,
.work-detail-content em,
.work-card-body em,
.selection-curatorial-text em,
.origin-manifesto-flow em {
  font-style: italic;
}.artist-node img,
.artist-node span {
  pointer-events: none;
}.selection-circle {
  position: relative;
  width: min(100%, 980px);
  height: 840px;
  margin: 24px auto 0;
  z-index: 1;
  overflow: visible;
}.selection-circle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(199, 171, 122, 0.08) 0%,
    rgba(199, 171, 122, 0.03) 34%,
    transparent 68%
  );
  filter: blur(8px);
  z-index: 1;
}.selection-circle::before {
  content: "";
  position: absolute;
  inset: 88px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}.artist-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 142px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  text-align: center;
  z-index: 10;
}.artist-node[data-artist="5"] {
  z-index: 11;
}.artist-node img {
  width: 142px;
  height: 176px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
  pointer-events: none;
}.artist-node span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}.artist-node.active img,
.artist-node:hover img {
  transform: translateY(-4px);
  border-color: rgba(199, 171, 122, 0.45);
}.selection-center-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 290px;
  min-height: 520px;
  transform: translate(-50%, -44%);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(25, 26, 31, 0.96), rgba(14, 15, 20, 0.98));
  border: 1px solid rgba(199, 171, 122, 0.18);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  pointer-events: auto;
}.selection-center-card * {
  pointer-events: auto;
}.profile-gallery-thumbs,
.gallery-lightbox-thumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 12px;
  margin-top: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(199, 171, 122, 0.35) transparent;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}.profile-gallery-thumbs::-webkit-scrollbar,
.gallery-lightbox-thumbs::-webkit-scrollbar {
  height: 8px;
}.profile-gallery-thumbs::-webkit-scrollbar-track,
.gallery-lightbox-thumbs::-webkit-scrollbar-track {
  background: transparent;
}.profile-gallery-thumbs::-webkit-scrollbar-thumb,
.gallery-lightbox-thumbs::-webkit-scrollbar-thumb {
  background: linear-gradient(
    90deg,
    rgba(199, 171, 122, 0.22),
    rgba(199, 171, 122, 0.5)
  );
  border-radius: 999px;
}.profile-gallery-thumb,
.gallery-lightbox-thumb {
  position: relative;
  flex: 0 0 84px;
  width: 84px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    opacity 0.24s ease;
  cursor: pointer;
}.profile-gallery-thumb::after,
.gallery-lightbox-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.22) 100%);
  opacity: 0.9;
}.profile-gallery-thumb:hover,
.gallery-lightbox-thumb:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 171, 122, 0.38);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}.profile-gallery-thumb.is-active,
.gallery-lightbox-thumb.is-active {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(199, 171, 122, 0.62);
  box-shadow:
    0 0 0 1px rgba(199, 171, 122, 0.18),
    0 16px 36px rgba(0, 0, 0, 0.24);
}.profile-gallery-thumb img,
.gallery-lightbox-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}.profile-gallery-thumb:hover img,
.gallery-lightbox-thumb:hover img,
.profile-gallery-thumb.is-active img,
.gallery-lightbox-thumb.is-active img {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.04);
}@media (max-width: 640px) {
  .profile-gallery-thumbs,
  .gallery-lightbox-thumbs {
    gap: 10px;
    padding: 8px 10px;
    border-radius: 16px;
    margin-top: 12px;
  }

  .profile-gallery-thumb,
  .gallery-lightbox-thumb {
    flex: 0 0 72px;
    width: 72px;
    border-radius: 12px;
  }
}@media (min-width: 961px) {
  .profile-gallery-thumbs,
  .gallery-lightbox-thumbs {
    gap: 14px;
    padding: 12px 14px;
  }

  .profile-gallery-thumb,
  .gallery-lightbox-thumb {
    flex: 0 0 92px;
    width: 92px;
  }
}.works-page-section {
  position: relative;
}.works-page-section::before {
  content: "";
  position: absolute;
  inset: 30px 0 auto;
  height: 320px;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(199, 171, 122, 0.1), transparent 34%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.04), transparent 16%);
}.works-page-invocation {
  margin: 18px auto 0;
  max-width: 40ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.14rem, 2vw, 1.5rem);
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.9);
}.works-page-frame {
  position: relative;
  z-index: 2;
  padding: 26px 22px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(199, 171, 122, 0.14);
}.works-page-microcopy {
  margin: 0 auto 20px;
  max-width: 44ch;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.84);
}.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
}.work-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 171, 122, 0.24);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.3);
}.work-card-media {
  overflow: visible;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}.work-card-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transition: transform 0.45s ease, filter 0.45s ease;
}.work-card:hover .work-card-image {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.03);
}.work-card-body {
  padding: 20px 20px 22px;
}.work-card-kicker {
  margin-bottom: 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
}.work-card-title {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 0.98;
  margin-bottom: 10px;
}.work-card-type {
  margin-bottom: 14px;
  color: rgba(242, 237, 228, 0.66);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}.work-card-context {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}.work-card-context p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}.work-card-context span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: rgba(242, 237, 228, 0.58);
  margin-right: 6px;
}.work-card-context strong {
  color: var(--text);
  font-weight: 600;
}.work-card-text {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}.work-card-actions {
  margin-top: auto;
  display: flex;
}#homeWorksGrid .work-card-actions {
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}body[data-page="works"] .work-card-actions {
  justify-content: center;
  align-items: center;
  width: 100%;
}body[data-page="works"] .work-card-context {
  display: flex;
  flex-direction: column;
  gap: 10px;
}body[data-page="works"] .work-card-context p {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}body[data-page="works"] .work-card-context span,
body[data-page="works"] .work-card-context strong,
body[data-page="works"] .work-card-context a {
  display: block;
  margin-right: 0;
}body[data-page="works"] .work-card-context span {
  line-height: 1.2;
}body[data-page="works"] .work-card-context strong,
body[data-page="works"] .work-card-context a {
  line-height: 1.45;
}body[data-page="works"] .work-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}body[data-page="works"] .work-card-actions .btn {
  align-self: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 0 24px;
}.origin-invocation {
  margin: 18px auto 0;
  max-width: 40ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.14rem, 2vw, 1.5rem);
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.9);
}.origin-opening {
  margin-bottom: 22px;
  padding: 24px 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(199, 171, 122, 0.14);
}.origin-opening-line {
  max-width: 32ch;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.28;
  color: rgba(255, 255, 255, 0.94);
}.origin-manifesto {
  position: relative;
  padding: 30px 26px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(199, 171, 122, 0.14);
}.origin-manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(199, 171, 122, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0));
}.origin-manifesto-head {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 26px;
}.origin-manifesto-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}.origin-manifesto-subtitle {
  color: var(--muted);
  line-height: 1.8;
}.origin-manifesto-flow {
  display: grid;
  gap: 18px;
}.origin-manifesto-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}.origin-manifesto-step:first-child {
  border-top: 0;
  padding-top: 0;
}.origin-manifesto-step.is-featured p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.34rem, 2vw, 1.75rem);
  line-height: 1.38;
  color: rgba(255, 255, 255, 0.94);
}.origin-manifesto-step p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.92;
}.origin-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(199, 171, 122, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}.origin-closing-line {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}.origin-closing-line p {
  max-width: 34ch;
  margin: 0 auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.22rem, 2vw, 1.6rem);
  line-height: 1.36;
  color: rgba(255, 255, 255, 0.92);
}.origin-not-box {
  margin-top: 22px;
  padding: 24px 22px;
  text-align: center;
  border: 1px solid rgba(199, 171, 122, 0.12);
}.origin-not-box h3 {
  margin-bottom: 14px;
  font-size: clamp(1.6rem, 2vw, 2rem);
}.origin-not-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}.origin-not-list li {
  color: rgba(242, 237, 228, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}@media (max-width: 640px) {
.origin-invocation {
  font-size: 1.04rem;
}

.origin-opening {
  padding: 18px 14px;
}

.origin-opening-line {
  font-size: 1.22rem;
}

.origin-manifesto {
  padding: 22px 16px 24px;
}

.origin-manifesto-step {
  grid-template-columns: 1fr;
  gap: 10px;
}

.origin-step-number {
  width: fit-content;
}
}.method .info-card,
.selection-shell,
.origin-manifesto,
.artists-page-frame,
.works-page-frame,
.profile-room {
  backdrop-filter: blur(10px);
}.btn-secondary {
  background: rgba(255, 255, 255, 0.015);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
}.btn-secondary:hover {
  border-color: rgba(199, 171, 122, 0.2);
  background: rgba(255, 255, 255, 0.035);
}.method-declaration {
  max-width: 46ch;
  margin: 18px auto 0;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.86);
}.closing-declaration {
  padding-top: 30px;
  padding-bottom: 54px;
}.closing-declaration-subtle {
  padding-top: 18px;
}.closing-declaration-line {
  max-width: 34ch;
  margin: 0 auto;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.7vw, 2.2rem);
  line-height: 1.24;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: balance;
}.closing-declaration-line::before,
.closing-declaration-line::after {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(199, 171, 122, 0.8),
    transparent
  );
}.closing-declaration-line::after {
  margin: 18px auto 0;
}.page-title,
.origin-manifesto-title,
.profile-title,
.work-card-title,
.artist-card h3 {
  text-wrap: balance;
}.section-heading h2,
.page-title {
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}.admin-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}.admin-top-panel {
  width: 100%;
  max-width: none;
  display: block;
}.admin-main {
  width: 100%;
  max-width: none;
}.preview-video-grid,
.profile-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}.video-embed-card {
  width: 100%;
}.video-embed-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}.video-embed-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}@media (min-width: 900px) {
  .preview-video-grid,
  .profile-video-grid {
    grid-template-columns: 1fr;
  }
}

.selection-form-grid {
  display: grid;
  gap: 18px;
}

.selection-form-left {
  display: grid;
  gap: 16px;
}

.selection-selection-sidecards {
  display: grid;
  gap: 18px;
}

.selection-emergence-admin {
  margin-top: 0;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.selection-emergence-admin-title {
  margin: 0 0 14px;
}

.selection-emergence-admin-toggle {
  margin-bottom: 14px;
}

.selection-emergence-admin label + label {
  margin-top: 14px;
}

.selection-emergence-admin label > span {
  display: inline-block;
  margin-bottom: 8px;
}

.selection-emergence-admin input,
.selection-emergence-admin select {
  margin-top: 4px;
}

.selection-home-work-admin {
  min-height: 100%;
}

.selection-form-right {
  display: grid;
  gap: 12px;
  align-content: start;
}

@media (min-width: 768px) {
  .selection-form-grid {
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
    align-items: start;
  }

  .selection-selection-sidecards {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .selection-selection-sidecards {
    grid-template-columns: 1fr;
  }
}
  .selection-form-left {
    grid-column: 1;
  }

  .selection-form-right {
    grid-column: 2;
    grid-row: 1;
  }
}.admin-form textarea {
  resize: vertical;
  min-height: 120px;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(199, 171, 122, 0.42) transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.12);
}.admin-form textarea::-webkit-scrollbar {
  width: 10px;
}.admin-form textarea::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}.admin-form textarea::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(199, 171, 122, 0.24),
    rgba(199, 171, 122, 0.58)
  );
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}.admin-form textarea::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(199, 171, 122, 0.34),
    rgba(199, 171, 122, 0.76)
  );
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}.admin-form textarea::-webkit-scrollbar-corner {
  background: transparent;
}.artist-media-grid {
  display: grid;
  gap: 18px;
  width: 100%;
  grid-column: 1 / -1;
}.artist-media-col {
  min-width: 0;
  width: 100%;
}.artist-media-col .admin-upload,
.artist-media-col .upload-path-field,
.artist-media-col textarea,
.artist-media-col input {
  width: 100%;
  max-width: 100%;
}@media (min-width: 980px) {
  .artist-media-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
  }
}.form-field {
  display: grid;
  align-content: start;
}.form-label {
  display: inline-block;
  margin-bottom: 2px;
  color: var(--text);
  font-size: 0.95rem;
}.artist-card-interitus-note {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.75;
}.profile-interitus-block {
  border-top-color: rgba(199, 171, 122, 0.18);
}.artist-card-badge.is-selected,
.profile-curated-badge.is-selected {
  border-color: rgba(199, 171, 122, 0.22);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.03);
}.artist-card-badge.is-recognized,
.profile-curated-badge.is-recognized {
  border-color: rgba(199, 171, 122, 0.42);
  color: #e7cf9f;
  background: rgba(199, 171, 122, 0.08);
  box-shadow: 0 0 0 1px rgba(199, 171, 122, 0.08) inset;
}.artist-card-badge.is-consecrated,
.profile-curated-badge.is-consecrated {
  border-color: rgba(215, 186, 121, 0.7);
  color: #f3dfb8;
  background: linear-gradient(
    180deg,
    rgba(199, 171, 122, 0.18),
    rgba(199, 171, 122, 0.08)
  );
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(215, 186, 121, 0.18) inset;
}.profile-curated-microcopy {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}.work-interitus-process {
  margin-top: 24px;
  padding: 22px;
  border-radius: 18px;
}.work-interitus-process h2 {
  margin-bottom: 12px;
}.work-interitus-process p:last-child {
  color: var(--text);
  line-height: 1.8;
}.selection-state-block {
  margin: 16px 0 24px;
}.selection-state-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
}.selection-state-note {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 60ch;
}.selection-state-note.compact {
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: none;
}.selection-state-badge.is-awaiting {
  opacity: 0.6;
}.selection-state-badge.is-emerging {
  border-color: rgba(199,171,122,0.2);
}.selection-state-badge.is-forming {
  border-color: rgba(199,171,122,0.35);
}.selection-state-badge.is-destabilizing {
  border-color: rgba(255,100,100,0.4);
}.selection-state-badge.is-converging {
  border-color: rgba(199,171,122,0.6);
}.selection-state-badge.is-closed {
  opacity: 0.5;
}.selection-edition-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}.selection-curatorial-note {
  margin: 14px auto 28px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 760px;
}.selection-circle-wrap {
  margin-top: 80px;
  margin-bottom: 180px;
}.selection-curatorial-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}.selection-curatorial-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
}.selection-emergence-wrap {
  display: block;
  width: min(100%, 720px);
  margin: 26px auto 10px;
  position: relative;
  z-index: 20;
}.selection-emergence-wrap[hidden] {
  display: none !important;
}.selection-emergence-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 92px;
  padding: 18px 22px;
  text-decoration: none;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(215, 186, 121, 0.34);
  background:
    radial-gradient(circle at 50% 50%, rgba(215, 186, 121, 0.18), rgba(215, 186, 121, 0.04) 38%, rgba(10, 10, 14, 0.94) 78%),
    linear-gradient(180deg, rgba(24, 22, 18, 0.96), rgba(12, 12, 16, 0.98));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(215, 186, 121, 0.08) inset,
    0 0 36px rgba(215, 186, 121, 0.14);
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}.selection-emergence-link:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(235, 206, 145, 0.54);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(235, 206, 145, 0.12) inset,
    0 0 44px rgba(235, 206, 145, 0.18);
}.selection-emergence-aura {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle, rgba(235, 206, 145, 0.22) 0%, rgba(235, 206, 145, 0.08) 24%, rgba(235, 206, 145, 0) 62%);
  filter: blur(22px);
  opacity: 0.9;
  pointer-events: none;
}.selection-emergence-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}.selection-emergence-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 229, 197, 0.68);
}.selection-emergence-name {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.05;
  color: #f3dfb8;
  text-shadow:
    0 0 16px rgba(235, 206, 145, 0.18),
    0 0 26px rgba(235, 206, 145, 0.1);
}@media (max-width: 768px) {
  .selection-emergence-wrap {
    width: 100%;
    margin-top: 18px;
  }

  .selection-emergence-link {
    min-height: 82px;
    padding: 16px 16px;
    border-radius: 20px;
  }

  .selection-emergence-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
  }

  .selection-emergence-name {
    font-size: clamp(1.3rem, 7vw, 1.9rem);
  }
}

.selection-selection-sidecards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  align-items: start;
}

.selection-home-work-admin {
  min-height: 100%;
}

.selection-home-work-admin .selection-emergence-admin-title {
  margin-bottom: 14px;
}

.selection-artist-work-link-wrap {
  width: 100%;
  max-width: 760px;
  margin: 18px auto 0;
}

.selection-artist-work-strip {
  width: 100%;
  margin: 0;
}

.selection-artist-work-strip-link {
  min-height: 92px;
}

.selection-artist-work-strip .selection-emergence-kicker {
  letter-spacing: 0.22em;
}

.field-timeline-event {
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(199, 171, 122, 0.16);
  background: rgba(255, 255, 255, 0.025);
  color: #f4e7cb;
  font-size: 0.74rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.field-timeline-event.is-fracture {
  border-color: rgba(139, 115, 80, 0.42);
  color: #e3c9a5;
}

.field-timeline-event.is-convergence {
  border-color: rgba(199, 171, 122, 0.42);
  box-shadow: 0 0 0 1px rgba(199, 171, 122, 0.08) inset;
  color: #fff1d4;
}

.field-timeline-event.is-threshold {
  border-color: rgba(199, 171, 122, 0.26);
  color: #eedcbc;
}

@media (max-width: 980px) {
  .selection-selection-sidecards {
    grid-template-columns: 1fr;
  }
}
#homeWorksGrid .work-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}#homeWorksGrid .work-card-actions {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}#homeWorksGrid .work-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}#homeWorksGrid .work-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}#homeWorksGrid .work-card-actions {
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}#homeWorksGrid .work-card-actions .btn {
  align-self: center;
  justify-content: center;
}.selection-curatorial-note {
  width: min(70%, 760px);
  max-width: 760px;
  margin: 28px auto 0;
}.selection-curatorial-text {
  max-width: 100%;
}.hero-core,
.works-page-microcopy {
  white-space: pre-line;
}.method-law {
  margin-top: 10px;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.4;
  color: var(--accent);
  text-align: center;
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}.admin-format-hint {
  display: block;
  margin-top: 8px;
  color: rgba(242, 237, 228, 0.58);
  font-size: 0.82rem;
  line-height: 1.5;
}strong {
  font-weight: 600;
}em {
  font-style: italic;
}strong,
em {
  color: inherit;
}.origin-invocation em,
.hero-invocation em,
.profile-page-invocation em,
.selection-curatorial-text em,
.works-page-invocation em,
.works-closing-line em,
.closing-declaration-line em {
  font-family: "Cormorant Garamond", serif;
}.method-law,
.method-notice,
.selection-slide-role,
.work-type,
.artist-meta,
.work-meta,
.center-kicker,
.profile-role,
.profile-meta-label,
.profile-back-link,
.work-associated-artist-link,
.text-link {
  color: var(--accent);
}.method-law strong,
.method-notice strong,
.selection-slide-role strong,
.work-type strong,
.artist-meta strong,
.work-meta strong,
.center-kicker strong,
.profile-role strong,
.profile-meta-label strong,
.profile-back-link strong,
.work-associated-artist-link strong,
.text-link strong {
  color: inherit;
}.hero-motto strong,
.hero-motto em {
  color: rgba(242, 237, 228, 0.72);
}.works-page-hero .section-lead strong,
.artists-page-notice strong,
.origin-opening-line strong,
.profile-page-hero .section-lead strong,
.method-declaration em,
.artists-closing-line em,
.works-page-microcopy strong,
.works-closing-line em,
.closing-declaration-line strong,
.closing-declaration-line em {
  color: inherit;
}.selection-curatorial-text strong,
.origin-manifesto-step strong,
.profile-statement-block strong,
.work-interitus-process strong,
.origin-manifesto-inner strong,
.work-detail .profile-statement-block strong {
  color: #f2ede4;
}.selection-curatorial-text em,
.origin-manifesto-step em,
.profile-statement-block em,
.work-interitus-process em,
.origin-manifesto-inner em,
.work-detail .profile-statement-block em {
  color: rgba(242, 237, 228, 0.9);
}.hero-core strong {
  color: #f2ede4;
}.hero-invocation em,
.origin-invocation em,
.profile-page-invocation em,
.works-page-invocation em,
.closing-declaration-line em {
  color: rgba(255, 255, 255, 0.9);
}.selection-voted-message[hidden] {
  display: none !important;
}.selection-state-block.admin {
  margin-top: 12px;
  padding: 16px 18px;
}.selection-state-block.admin .selection-state-note {
  margin: 10px 0 0;
}.votes-total-box-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}.votes-total-copy {
  display: flex;
  align-items: center;
  gap: 8px;
}.votes-total-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}.artist-work-link {
  margin-top: 14px;
  width: 100%;
  text-align: center;
}.profile-work-link {
  margin-top: 22px;
  max-width: 320px;
}.profile-emergence-wrap {
  width: 100%;
  max-width: 100%;
  margin: 18px 0 24px;
}.profile-emergence-link {
  min-height: 92px;
}.selection-artist-work-link-wrap {
  width: 100%;
}.selection-artist-work-strip {
  margin-top: 12px;
}.selection-artist-work-strip-link {
  width: 100%;
}.selection-slide-actions .selection-voted-message-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(199, 171, 122, 0.28) !important;
  border-radius: 12px;
  background: rgba(199, 171, 122, 0.06) !important;
  color: var(--accent) !important;
  text-align: center;
  line-height: 1.5;
  font-size: 0.96rem;
  box-sizing: border-box;
}
.public-auth-top-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}

.public-account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 240px;
  padding: 10px;
  border: 1px solid rgba(199, 171, 122, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(24, 20, 14, 0.96), rgba(13, 13, 16, 0.96));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(199, 171, 122, 0.06) inset,
    0 0 36px rgba(199, 171, 122, 0.08);
  z-index: 80;
  backdrop-filter: blur(18px);
}

.public-account-menu-link {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--text);
  background: transparent;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.public-account-menu-link.is-button {
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.public-account-menu-link:hover {
  transform: translateY(-1px);
  border-color: rgba(199, 171, 122, 0.26);
  background: rgba(199, 171, 122, 0.08);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.origin-trace-hero {
  position: relative;
}

.origin-trace-section {
  padding-top: 18px;
}

.origin-trace-layout {
  display: block;
}

.origin-trace-shell {
  padding: 30px;
  border: 1px solid rgba(199, 171, 122, 0.16);
  background:
    radial-gradient(circle at top right, rgba(199, 171, 122, 0.09), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(199, 171, 122, 0.05) inset,
    0 0 80px rgba(199, 171, 122, 0.05);
}

.origin-trace-shell-top {
  margin-bottom: 24px;
}

.origin-trace-shell-line {
  color: var(--muted);
  max-width: 72ch;
}

.origin-trace-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.origin-trace-summary-card {
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(199, 171, 122, 0.16);
  background:
    linear-gradient(180deg, rgba(199, 171, 122, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.14),
    0 0 22px rgba(199, 171, 122, 0.05);
}

.origin-trace-summary-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #f8f2e7;
}

.origin-trace-summary-label,
.origin-trace-label {
  display: block;
  color: rgba(242, 237, 228, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.origin-trace-impact {
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 20px;
  border-color: rgba(199, 171, 122, 0.18);
  background:
    radial-gradient(circle at 15% 20%, rgba(199, 171, 122, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.02);
}

.origin-trace-impact-text strong {
  color: var(--accent);
}

.origin-trace-card {
  margin-top: 18px;
  padding: 24px 22px;
  border: 1px solid rgba(199, 171, 122, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
}

.origin-trace-card-head {
  margin-bottom: 16px;
}

.origin-trace-card-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.origin-trace-current-item {
  padding: 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(199, 171, 122, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.origin-trace-current-item strong {
  display: block;
  margin-top: 8px;
  color: #f7f0e4;
}

.origin-trace-empty {
  color: var(--muted);
}

.origin-trace-trajectory-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.origin-trace-trajectory-item {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(199, 171, 122, 0.14);
  background:
    radial-gradient(circle at 12% 18%, rgba(199, 171, 122, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.022);
}

.origin-trace-trajectory-toggle {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.origin-trace-trajectory-toggle:hover {
  opacity: 1;
}

.origin-trace-trajectory-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(199, 171, 122, 0.22);
  color: var(--accent);
  background: rgba(199, 171, 122, 0.06);
  font-size: 1.15rem;
  line-height: 1;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.origin-trace-trajectory-grid {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.origin-trace-trajectory-item.is-open .origin-trace-trajectory-grid {
  display: grid;
}

.origin-trace-trajectory-item.is-open .origin-trace-trajectory-chevron {
  transform: rotate(45deg);
}

.origin-trace-trajectory-head {
  display: grid;
  grid-template-columns: 54px 1fr 38px;
  gap: 14px;
  align-items: center;
}

.origin-trace-trajectory-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(199, 171, 122, 0.22);
  color: var(--accent);
  background: rgba(199, 171, 122, 0.06);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
}

.origin-trace-trajectory-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.origin-trace-trajectory-selection {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.42rem;
  color: #f7f1e6;
}

.origin-trace-trajectory-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.origin-trace-trajectory-row {
  padding: 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(199, 171, 122, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.origin-trace-trajectory-row strong {
  display: block;
  margin-top: 8px;
  color: #f7f0e4;
}

.origin-trace-work-row {
  display: flex;
  flex-direction: column;
}

.origin-trace-work-link {
  display: block;
  width: 100%;
  margin-top: 10px;
}

.origin-trace-work-link .selection-emergence-kicker,
.origin-trace-work-link .selection-emergence-name {
  text-align: left;
}

@media (max-width: 720px) {
  .origin-trace-work-link {
    width: 100%;
  }
}

.origin-trace-work-link .selection-emergence-name {
  text-align: left;
}

@media (max-width: 980px) {
  .origin-trace-summary-grid,
  .origin-trace-current-grid,
  .origin-trace-trajectory-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .public-auth-top-wrap {
    width: 100%;
  }

  .public-account-menu {
    position: static;
    min-width: 100%;
  }

  .origin-trace-shell {
    padding: 22px 16px;
  }

  .origin-trace-summary-grid,
  .origin-trace-current-grid,
  .origin-trace-trajectory-grid {
    grid-template-columns: 1fr;
  }

    .origin-trace-trajectory-head {
  grid-template-columns: 42px 1fr 38px;
}
}
.origin-trace-artist-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 171, 122, 0.4);
  transition: all 0.25s ease;
}

.origin-trace-artist-link:hover {
  color: #fff;
  border-bottom-color: var(--accent);
}
.footer-legal {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-legal p {
  font-size: 0.78rem;
  color: var(--accent-2);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
}
/* ===== TIMELINE EVOLUTIVA CAMPO ===== */

.field-timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}

.field-timeline-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
}

.field-timeline-time {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.field-timeline-bar {
  position: relative;
  height: 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  overflow: hidden;
}

.field-timeline-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(199,171,122,0.2),
    rgba(199,171,122,0.9)
  );
  transition: width 0.4s ease;
}

.field-timeline-label {
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.field-timeline-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.field-timeline-summary-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(199, 171, 122, 0.14);
  background: rgba(255, 255, 255, 0.025);
}

.field-timeline-summary-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-timeline-summary-value {
  display: block;
  color: #f7f0e4;
  font-size: 1rem;
  line-height: 1.35;
}

.field-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field-timeline-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-timeline-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.field-timeline-total {
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.field-timeline-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.field-timeline-detail {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

.field-timeline-footnote {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.7;
}

.field-timeline-state-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(199, 171, 122, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: #f7f0e4;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-timeline-state-badge.is-awaiting {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.field-timeline-state-badge.is-emerging {
  border-color: rgba(199, 171, 122, 0.22);
  color: #e8d6b2;
}

.field-timeline-state-badge.is-forming {
  border-color: rgba(199, 171, 122, 0.28);
  color: #f0dfbc;
}

.field-timeline-state-badge.is-converging {
  border-color: rgba(199, 171, 122, 0.48);
  box-shadow: 0 0 0 1px rgba(199, 171, 122, 0.08) inset;
  color: #fff3d8;
}

.field-timeline-state-badge.is-destabilizing {
  border-color: rgba(139, 115, 80, 0.42);
  color: #d7c2a1;
}

.field-timeline-state-badge.is-closed {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(242, 237, 228, 0.58);
}

@media (max-width: 980px) {
  .field-timeline-summary {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .field-timeline-row {
    grid-template-columns: 1fr;
  }

  .field-timeline-time {
    margin-bottom: -2px;
  }

  .field-timeline-summary {
    grid-template-columns: 1fr;
  }
}
.analytics-accordion-trigger {
  position: relative;
  cursor: pointer;
  user-select: none;
  padding-right: 34px;
}

.analytics-accordion-trigger::after {
  content: "▾";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0.9;
}

.analytics-accordion-trigger:hover::after {
  opacity: 1;
}

.analytics-accordion-panel.is-collapsed .analytics-accordion-trigger::after {
  transform: translateY(-50%) rotate(-90deg);
}

.analytics-accordion-content {
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform-origin: top;
}

.analytics-accordion-panel.is-collapsed .analytics-accordion-content {
  display: none;
}

.analytics-accordion-panel.is-collapsed {
  padding-bottom: 0;
}
.admin-section-accordion-panel {
  overflow: hidden;
}

.admin-section-accordion-trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}

.admin-section-accordion-icon {
  flex: 0 0 auto;
  color: var(--accent);
  font-size: 0.95rem;
  line-height: 1;
  transform: translateY(6px);
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0.9;
}

.admin-section-accordion-trigger:hover .admin-section-accordion-icon {
  opacity: 1;
}


.admin-section-accordion-content {
  transition: opacity 0.22s ease, transform 0.22s ease;
  transform-origin: top;
}

.admin-section-accordion-panel.is-collapsed .admin-section-accordion-icon {
  transform: translateY(6px) rotate(-90deg);
}

.admin-section-accordion-panel.is-collapsed .admin-section-accordion-content {
  display: none;
}

.admin-section-accordion-panel.is-collapsed {
  padding-bottom: 0;
}
.admin-gallery-caption-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.admin-gallery-caption-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.admin-gallery-caption-label span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.admin-gallery-caption-input {
  width: 100%;
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
  color: var(--text);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.16);
}

.profile-gallery-caption {
  width: 100%;
  min-height: calc(1.9em * 6 + 24px);
  max-height: calc(1.9em * 6 + 24px);
  overflow-y: auto;
  margin-top: 14px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.9;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 14px 34px rgba(0, 0, 0, 0.16);
  scrollbar-width: thin;
  scrollbar-color: rgba(199, 171, 122, 0.35) transparent;
}

.profile-gallery-caption::-webkit-scrollbar {
  width: 8px;
}

.profile-gallery-caption::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

.profile-gallery-caption::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(199, 171, 122, 0.22),
    rgba(199, 171, 122, 0.5)
  );
  border-radius: 999px;
}

.profile-gallery-caption::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(199, 171, 122, 0.34),
    rgba(199, 171, 122, 0.72)
  );
}

@media (max-width: 700px) {
  .admin-gallery-caption-fields {
    grid-template-columns: 1fr;
  }

  .profile-gallery-caption {
    font-size: 0.96rem;
    line-height: 1.75;
  }
}
/* ===== Global page scrollbar — Interitus ===== */

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(199, 171, 122, 0.42) rgba(255, 255, 255, 0.04);
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.015)
    );
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background:
    linear-gradient(
      180deg,
      rgba(215, 186, 121, 0.18),
      rgba(199, 171, 122, 0.62)
    );
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(199, 171, 122, 0.08);
}

body::-webkit-scrollbar-thumb:hover,
html::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(
      180deg,
      rgba(231, 207, 159, 0.28),
      rgba(199, 171, 122, 0.82)
    );
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

body::-webkit-scrollbar-corner,
html::-webkit-scrollbar-corner {
  background: transparent;
}
/* ===== Admin section accordions — Interitus motion ===== */

.admin-section-accordion-trigger,
.analytics-accordion-trigger {
  position: relative;
  cursor: pointer;
  user-select: none;
  transition:
    background-color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.admin-section-accordion-trigger:hover,
.analytics-accordion-trigger:hover {
  background: linear-gradient(
    180deg,
    rgba(199, 171, 122, 0.08),
    rgba(199, 171, 122, 0.03)
  );
}

.admin-section-accordion-trigger:focus-visible,
.analytics-accordion-trigger:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 1px rgba(199, 171, 122, 0.34),
    0 0 0 4px rgba(199, 171, 122, 0.08);
  border-radius: 18px;
}

.admin-section-accordion-icon {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
  transform: rotate(0deg);
  transition:
    transform 0.34s ease,
    color 0.24s ease,
    opacity 0.24s ease;
  opacity: 0.9;
}

.admin-section-accordion-panel.is-collapsed
  > .admin-section-accordion-trigger
  .admin-section-accordion-icon {
  transform: rotate(-90deg);
  opacity: 0.72;
}

.admin-section-accordion-panel
  > .admin-section-accordion-trigger[aria-expanded="true"]
  .admin-section-accordion-icon {
  transform: rotate(0deg);
  opacity: 1;
}

.admin-section-accordion-content,
.analytics-accordion-content {
  overflow: hidden;
  transition:
    grid-template-rows 0.34s ease,
    opacity 0.26s ease,
    padding-top 0.26s ease,
    padding-bottom 0.26s ease;
}

.admin-section-accordion-panel,
.analytics-accordion-panel {
  transition:
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease;
}

.admin-section-accordion-panel.is-collapsed,
.analytics-accordion-panel.is-collapsed {
  border-color: rgba(255, 255, 255, 0.08);
}

.admin-section-accordion-panel:not(.is-collapsed),
.analytics-accordion-panel:not(.is-collapsed) {
  border-color: rgba(199, 171, 122, 0.2);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(199, 171, 122, 0.05);
}
/* ===== Interitus focus state (panel attivo) ===== */

.admin-section-accordion-panel.is-active,
.analytics-accordion-panel.is-active {
  z-index: 2;
  transform: translateY(-2px) scale(1.002);
}

.admin-section-accordion-panel.is-active {
  border-color: rgba(199, 171, 122, 0.28);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(199, 171, 122, 0.08);
}

/* ===== pannelli non attivi si “spengono” leggermente ===== */

.admin-layout .admin-section-accordion-panel:not(.is-active) {
  opacity: 0.78;
  transform: scale(0.998);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.admin-layout:hover .admin-section-accordion-panel:not(.is-active) {
  opacity: 0.65;
}

/* ===== effetto profondità graduale ===== */

.admin-section-accordion-panel {
  transition:
    transform 0.32s ease,
    opacity 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}
/* Admin — date picker icon visibility */
.admin-main input[type="date"] {
  color-scheme: dark;
}

.admin-main input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(79%) sepia(18%) saturate(472%) hue-rotate(7deg) brightness(96%) contrast(92%);
  opacity: 0.95;
  cursor: pointer;
}

.admin-main input[type="date"]::-webkit-datetime-edit,
.admin-main input[type="date"]::-webkit-date-and-time-value {
  color: inherit;
}
.analytics-field-state {
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(199, 171, 122, 0.18);
  background: rgba(199, 171, 122, 0.06);
  text-align: center;
}

.analytics-field-state-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.analytics-field-state-value {
  font-size: 22px;
  font-family: "Cormorant Garamond", serif;
  color: var(--accent);
  margin-top: 4px;
}
.curatorial-description {
  white-space: normal;
}

.curatorial-value {
  text-wrap: balance;
}