/* Conica Studio — lightbox styles */
.lb-overlay {
  position: fixed; inset: 0;
  background: rgba(21, 19, 15, 0.94);
  z-index: 9000;
  display: none;
  align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 240ms ease-out;
}
.lb-overlay.open { display: flex; opacity: 1; }

.lb-stage {
  position: relative;
  width: calc(100vw - 220px);
  height: calc(100vh - 160px);
  display: flex; align-items: center; justify-content: center;
}
.lb-img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.lb-caption {
  position: absolute; left: 56px; bottom: 32px;
  color: #efe6d0;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex; gap: 24px; align-items: baseline;
}
.lb-counter { opacity: 0.55; min-width: 64px; }
.lb-title { font-family: var(--font-serif, 'EB Garamond', serif); font-size: 16px; letter-spacing: 0; text-transform: none; opacity: 0.94; }
.lb-sub { opacity: 0.55; }

.lb-close, .lb-nav {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(239, 230, 208, 0.32);
  color: #efe6d0;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 200ms, background 200ms;
}
.lb-close:hover, .lb-nav:hover {
  border-color: rgba(239, 230, 208, 0.72);
  background: rgba(239, 230, 208, 0.06);
}
.lb-close {
  top: 24px; right: 28px;
  width: 44px; height: 44px;
  font-size: 24px; line-height: 1;
}
.lb-nav {
  top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px;
  font-size: 32px; line-height: 1;
}
.lb-prev { left: 28px; }
.lb-next { right: 28px; }

@media (max-width: 720px) {
  .lb-stage { width: 100vw; height: calc(100vh - 200px); }
  .lb-caption { left: 20px; right: 20px; bottom: 20px; flex-wrap: wrap; gap: 8px 16px; }
  .lb-nav { width: 44px; height: 44px; font-size: 24px; }
  .lb-prev { left: 12px; } .lb-next { right: 12px; }
  .lb-close { top: 12px; right: 12px; width: 36px; height: 36px; font-size: 20px; }
}
