/* The Projection Room — the red-lit wing of the lab */

/* The room's light is myco red: swap the page atmosphere */
body {
  background:
    radial-gradient(ellipse 120% 60% at 50% -10%, rgba(193, 59, 59, 0.13) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 85% 110%, rgba(38, 153, 153, 0.05) 0%, transparent 60%),
    var(--abyss);
  background-attachment: fixed;
}

.page-head {
  padding: 150px 0 20px;
}

.page-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--myco-red-bright);
}

.page-head .eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--myco-red-bright);
  box-shadow: 0 0 8px var(--myco-red-bright);
  animation: pulseDot 2.4s ease-in-out infinite;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.page-subtitle {
  color: var(--text-subtle);
  font-size: 1.05rem;
  font-style: italic;
  max-width: 46em;
}

.projection-body {
  padding-top: 40px;
  padding-bottom: 110px;
}

/* Reels — masonry so portrait and landscape screens coexist */
.reel-grid {
  columns: 2 460px;
  column-gap: 22px;
}

.reel {
  break-inside: avoid;
  margin: 0 0 22px;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.reel:hover {
  border-color: rgba(224, 92, 92, 0.45);
  box-shadow: 0 0 32px rgba(193, 59, 59, 0.16);
}

.reel video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

.reel figcaption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 13px 16px;
}

.reel-title {
  font-family: var(--font-lab);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.reel-note {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0;
  color: var(--text-subtle);
}

.reel-duration {
  font-family: var(--font-lab);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--myco-red-bright);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .page-head {
    padding-top: 130px;
  }

  .reel-grid {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-head .eyebrow .dot {
    animation: none;
  }
}
