:root {
  --black: #000000;
  --panel-top: #111111;
  --panel-bottom: #080808;
  --edge: #292929;
  --text-bright: #b5b5b5;
  --text: #999999;
  --secondary: #909090;
  --crimson: #871B0E;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
}

.page {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at 44% 45%, #090909 0%, #040404 48%, #000000 80%);
}

.gallery-container {
  width: min(100%, 1540px);
  height: 100%;
  padding: 30px 54px 36px;
  display: flex;
  flex-direction: column;
}

.identity-container {
  flex: 0 0 96px;
  display: flex;
  align-items: center;
  gap: 72px;
  padding-left: 22px;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cinemata {
  color: var(--text-bright);
  font-size: 46px;
  line-height: 0.92;
  letter-spacing: 0.016em;
}

.program-title {
  margin-top: 8px;
  color: var(--text);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.055em;
}

.program-subtitle {
  color: var(--secondary);
  font-size: 25px;
  line-height: 1;
  font-style: italic;
  letter-spacing: 0.008em;
  transform: translateX(24px);
}

.artwork-view {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  column-gap: 42px;
  align-items: center;
}

.artwork-side {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
}

.artwork-accent {
  position: absolute;
  left: 0;
  top: 31%;
  width: 3px;
  height: 38%;
  background: var(--crimson);
  opacity: 0.58;
  box-shadow: 4px 0 18px rgba(135,27,14,0.14);
}

.image-container {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.artwork-image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 69vh;
  object-fit: contain;
  object-position: center center;
  filter:
    drop-shadow(0 26px 34px rgba(0,0,0,0.80))
    drop-shadow(0 7px 12px rgba(0,0,0,0.62));
}

.wall-label {
  position: relative;
  width: 310px;
  align-self: center;
  background:
    linear-gradient(145deg, var(--panel-top) 0%, #0d0d0d 48%, var(--panel-bottom) 100%);
  border: 1px solid var(--edge);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.78),
    0 8px 18px rgba(0,0,0,0.58),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.label-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background:
    linear-gradient(to bottom, #9b2415 0%, var(--crimson) 54%, #621309 100%);
  box-shadow: 4px 0 16px rgba(135,27,14,0.20);
}

.label-content {
  padding: 30px 28px 30px 36px;
}

.work-id {
  color: var(--crimson);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.13em;
}

.label-rule {
  width: 40px;
  height: 1px;
  margin: 18px 0 24px;
  background: #3a3a3a;
}

.label-content p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.label-content p:last-child {
  margin-bottom: 0;
  color: var(--secondary);
}

.program-subtitle {
  transform: translateX(72px);
}

.program-subtitle {
  transform: translateX(96px);
}
