/* Showcase page — "Inside the Camp". Loaded after styles.css.
   Full-bleed background (grid + glow extend the whole viewport) with a
   wider centered content column for the film + gallery. */

body.showcase {
  padding: 0;
  display: block;
  min-height: 100vh;
  background-color: var(--bg);
}

.show.poster {
  width: 100%;
  max-width: none;
  min-height: 100vh;
}

/* push the glow a little higher so it sits behind the film */
.show.poster {
  background-image:
    radial-gradient(
      ellipse 60% 38% at 50% 22%,
      rgba(176, 28, 14, 0.5) 0%,
      rgba(120, 20, 12, 0.2) 40%,
      rgba(20, 8, 6, 0) 70%
    ),
    repeating-linear-gradient(0deg, var(--line-soft) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(90deg, var(--line-soft) 0 1px, transparent 1px 46px);
}

.show-frame {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 58px 30px;
}

/* ---------- top nav ---------- */
.topbar {
  align-items: flex-start;
}
.topnav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 3px;
  padding-top: 2px;
}
.topnav a {
  color: var(--muted-light);
  text-decoration: none;
  transition: color 0.18s ease;
}
.topnav a:hover { color: var(--white); }
.topnav a.active { color: var(--red); }
.topnav .sep { color: var(--gold-dim); }

/* ---------- hero ---------- */
.hero {
  text-align: center;
  margin-top: 40px;
}
.hero .eyebrow { margin-bottom: 14px; }
.hero .title { margin: 8px 0 14px; }
.hero .subhead { margin-bottom: 34px; }

/* ---------- video ---------- */
.video-wrap {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(229, 51, 31, 0.18);
}
.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-frame video {
  object-fit: cover;
  background: #000;
}
.video-tag {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--muted-light);
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 9px;
  pointer-events: none;
}
.rec {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: blink 1.4s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0.25; } }
.video-cap {
  text-align: center;
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--gold);
}

/* corner ticks on the film frame */
.tick {
  position: absolute;
  width: 14px;
  height: 14px;
  z-index: 3;
  border: solid var(--gold);
  opacity: 0.8;
}
.tick.tl { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.tick.tr { top: 6px; right: 6px; border-width: 1px 1px 0 0; }
.tick.bl { bottom: 6px; left: 6px; border-width: 0 0 1px 1px; }
.tick.br { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 24px 10px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: "Anton", sans-serif;
  font-size: 44px;
  line-height: 0.9;
  color: var(--white);
}
.stat-num.red { color: var(--red); }
.stat-label {
  font-size: 9.5px;
  letter-spacing: 3px;
  color: var(--muted-light);
}

/* ---------- gallery ---------- */
.gallery-section { margin-top: 50px; }
.gallery-section .eyebrow { margin-bottom: 22px; }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(232, 214, 180, 0.12);
  background: #111;
}
.shot.wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.25) contrast(1.05) brightness(0.82);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 7, 0.05) 40%, rgba(10, 8, 7, 0.85));
  pointer-events: none;
}
.shot:hover img {
  transform: scale(1.07);
  filter: grayscale(0) contrast(1.08) brightness(0.95);
}
.shot figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.shot-num {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--red);
}
.shot-cap {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--white);
}

/* ---------- quote ---------- */
.quote {
  position: relative;
  text-align: center;
  margin-top: 64px;
  padding: 10px 0;
}
.quote-mark {
  font-family: "Anton", sans-serif;
  font-size: 90px;
  line-height: 0.4;
  color: var(--red);
  opacity: 0.5;
}
.quote blockquote {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4.6vw, 46px);
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.05;
  margin: 14px 0 16px;
}
.quote blockquote .red { color: var(--red); }
.quote-by {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
}

/* ---------- responsive ---------- */
@media (max-width: 820px) {
  .show-frame { padding: 34px 26px 24px; }
  .topbar { flex-wrap: wrap; gap: 14px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .shot.wide { grid-column: span 2; }
  .side { display: none; }
}

@media (max-width: 520px) {
  .gallery { grid-template-columns: 1fr; }
  .shot.wide { grid-column: span 1; }
}
