@font-face {
  font-family: 'VTC Du Bois';
  src: url('fonts/VTCDuBois-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'VTC Du Bois';
  src: url('fonts/VTCDuBois-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'VTC Du Bois';
  src: url('fonts/VTCDuBois-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}

:root {
  --bg: #000;
  --cream: #e8d9a8;
  --crimson: #dc143c;
  --gold: #ffd700;
  --green: #00aa00;
  --blue: #4682b4;
  --muted: #555;
  --line: #1a1a1a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ============ SCENES (base) ============ */
.scene {
  position: relative;
  background: var(--bg);
}

/* ============ SCENE 00 — COLD OPEN ============ */
.cold-open {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cold-open-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(0.35) contrast(1.1);
  animation: slowzoom 20s ease-in-out infinite alternate;
}

.cold-open-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.75) 100%);
}

.imagine {
  position: relative; z-index: 2;
  font-family: 'VTC Du Bois', 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 18vw, 280px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 80px rgba(255,215,0,0.3), 0 0 160px rgba(255,215,0,0.1);
  line-height: 1;
  text-align: center;
}

.cold-open-mark {
  position: absolute; bottom: 40px; left: 0; right: 0;
  text-align: center; z-index: 2;
}
.cold-open-mark span {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.4;
}

.scroll-hint {
  position: absolute; bottom: 16px;
  left: 50%; transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes slowzoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.5; }
}

/* ============ SECTION SCENE (default) ============ */
.scene-section {
  padding: 80px 32px;
  max-width: 900px;
  margin: 0 auto;
}

.scene-num {
  display: block;
  font-family: 'Oswald', monospace;
  font-size: 11px;
  color: #333;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.scene-title {
  font-family: 'VTC Du Bois', 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 7vw, 72px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 16px;
}

.scene-title .accent { color: var(--crimson); }
.scene-title .gold { color: var(--gold); }

.dim-line {
  width: 48px;
  height: 2px;
  background: var(--crimson);
  margin: 20px 0 28px;
}

.scene-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.65;
  color: #aaa;
  max-width: 640px;
  margin-bottom: 24px;
}

.scene-desc strong { color: var(--cream); font-weight: 600; }

/* ============ DIMENSIONS (tag row) ============ */
.dimensions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.dim-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crimson);
  border: 1px solid var(--crimson);
  padding: 6px 12px;
}

/* ============ MEDIA GRID ============ */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 24px 0;
}
.media-cell {
  aspect-ratio: 4/3;
  background: #0c0c0c;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.media-cell.wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}
.media-cell img,
.media-cell video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.media-placeholder {
  padding: 16px;
  font-style: italic;
  font-size: 12px;
  color: #555;
  text-align: center;
}

/* ============ SLAMS (interstitial full-screen transitions) ============ */
.slam {
  width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  background: var(--bg);
  text-align: center;
}
.slam-small {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 24px;
}
.slam-word {
  font-family: 'VTC Du Bois', 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(60px, 14vw, 200px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}
.slam-word .r { color: var(--crimson); }
.slam-word .g { color: var(--gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 640px) {
  .scene-section { padding: 60px 20px; }
  .media-grid { grid-template-columns: 1fr; }
  .media-cell.wide { grid-column: span 1; aspect-ratio: 16/9; }
}

/* ============ FIGURE CARDS ============ */
.figure-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 24px 0;
}
.figure-card {
  background: #0c0c0c;
  border: 1px solid var(--line);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s ease;
}
.figure-card:hover {
  border-color: var(--crimson);
}
.figure-card .name {
  font-family: 'VTC Du Bois', 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 6px;
}
.figure-card .status {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crimson);
}
.figure-card .status.live { color: var(--green); }
.figure-card .desc {
  margin-top: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .figure-row { grid-template-columns: 1fr; }
}

/* ============ CTA BUTTONS ============ */
.cta-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}
.cta {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: 1px solid;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.cta.gold {
  color: var(--gold);
  border-color: var(--gold);
}
.cta.gold:hover {
  background: var(--gold);
  color: var(--bg);
}
.cta.crimson {
  color: var(--crimson);
  border-color: var(--crimson);
}
.cta.crimson:hover {
  background: var(--crimson);
  color: var(--bg);
}
.cta-note {
  font-size: 11px;
  color: #444;
  font-style: italic;
  letter-spacing: 1px;
}

/* ============ IMMERSE SCENE ============ */
.immerse-bg {
  position: relative;
  padding: 120px 32px;
  background: #000;
  text-align: center;
  overflow: hidden;
}
.immerse-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,215,0,0.08) 0%, transparent 60%);
  animation: glow 6s ease-in-out infinite alternate;
}
.immerse-bg > * { position: relative; z-index: 1; }
@keyframes glow {
  0% { opacity: 0.6; }
  100% { opacity: 1; }
}
.immerse-word {
  font-family: 'VTC Du Bois', 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(80px, 18vw, 280px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 0 80px rgba(255,215,0,0.3), 0 0 160px rgba(255,215,0,0.1);
  line-height: 1;
  margin-bottom: 24px;
}
.immerse-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: #aaa;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
/* ============ CLOSE CARD ============ */
.close-card {
  padding: 80px 32px;
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--line);
}
.close-card .ri-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.close-card .ri-loc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: #444;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.close-card .ri-email {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity 0.2s ease;
  display: inline-block;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.close-card .ri-email:hover {
  opacity: 1;
  border-bottom-color: var(--gold);
}

/* ============ NEWSLETTER SIGNUP (in close card) ============ */
.newsletter {
  max-width: 440px;
  margin: 32px auto 28px;
  text-align: center;
}
.newsletter .nl-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 10px;
}
.newsletter .nl-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: #777;
  margin-bottom: 18px;
  line-height: 1.5;
}
.newsletter .nl-cta {
  font-size: 12px;
  padding: 13px 28px;
}

/* ============ SOCIAL ICONS ============ */
.socials {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 24px 0 20px;
}
.socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  opacity: 0.6;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.socials a:hover {
  opacity: 1;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============ SCROLL ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside scene-section */
.scene-section.fade-in .scene-title { transition-delay: 0.1s; }
.scene-section.fade-in .dim-line { transition-delay: 0.2s; }
.scene-section.fade-in .scene-desc { transition-delay: 0.3s; }
.scene-section.fade-in .dimensions,
.scene-section.fade-in .media-grid,
.scene-section.fade-in .figure-row { transition-delay: 0.4s; }

/* ============ MOBILE REFINEMENTS ============ */
@media (max-width: 640px) {
  .cold-open-mark span { font-size: 9px; letter-spacing: 4px; }
  .scene-section { padding: 48px 20px; }
  .slam { padding: 60px 20px; min-height: 50vh; }
  .slam-small { font-size: 11px; letter-spacing: 4px; }
  .scene-desc { font-size: 16px; }
  .dim-tag { font-size: 10px; padding: 5px 10px; }
  .dimensions { gap: 6px; }
  .figure-card { padding: 20px 12px; }
  .figure-card .name { font-size: 17px; }
  .figure-card .desc { font-size: 12px; }
  .immerse-bg { padding: 80px 20px; }
  .immerse-sub { font-size: 15px; }
  .cta { font-size: 12px; letter-spacing: 3px; padding: 14px 28px; }
  .close-card .ri-name { font-size: 12px; letter-spacing: 6px; }
}

/* ============ SUPPORT CARD (FA donate) ============ */
.support-card {
  background: linear-gradient(180deg, #0d0d0d 0%, #000 100%);
  border: 1px solid var(--crimson);
  padding: 48px 40px;
  max-width: 680px;
  margin: 24px auto 0;
  text-align: center;
}
.support-card .fa-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 16px;
}
.support-card h3 {
  font-family: 'VTC Du Bois', 'Libre Caslon Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 16px;
}
.support-card h3 .accent { color: var(--crimson); }
.support-card .support-desc {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: #aaa;
  max-width: 520px;
  margin: 0 auto 28px;
}
.support-card .tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 28px;
  text-align: center;
}
.support-card .tier {
  padding: 16px 8px;
  border: 1px solid var(--line);
  background: rgba(255,215,0,0.03);
}
.support-card .tier .amount {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 4px;
}
.support-card .tier .tier-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 12px;
  color: #888;
  line-height: 1.3;
}
.support-card .fa-note {
  font-size: 11px;
  color: #555;
  font-style: italic;
  letter-spacing: 1px;
  margin-top: 16px;
}
@media (max-width: 640px) {
  .support-card { padding: 32px 20px; }
  .support-card .tiers { grid-template-columns: 1fr; }
}

/* ============ REAPPRAISAL PLATE CELLS (portrait in landscape grid) ============ */
#scene-reappraisal .media-cell {
  aspect-ratio: 3/4;
  background: #0a0a0a;
}
#scene-reappraisal .media-cell img {
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
#scene-reappraisal .media-cell:hover img {
  transform: scale(1.03);
}

/* ============ FIGURE CARD POSTERS ============ */
.figure-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.figure-card .poster {
  aspect-ratio: 3/4;
  background: #0a0a0a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.figure-card .poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.figure-card:hover .poster img {
  transform: scale(1.04);
}
.figure-card .poster.empty {
  color: #333;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  text-align: center;
  padding: 16px;
  letter-spacing: 1px;
}
.figure-card .card-text {
  padding: 20px 16px 22px;
  text-align: center;
}

/* ============ BRAND MARK — corner overlay ============ */
.cold-open .brand-mark,
.immerse-bg .brand-mark {
  position: absolute;
  bottom: clamp(20px, 3vh, 36px);
  right: clamp(20px, 3vw, 36px);
  width: clamp(44px, 5vw, 72px);
  height: auto;
  z-index: 3;
  opacity: 0.85;
  pointer-events: none;
}
.immerse-bg { position: relative; }
@media (max-width: 640px) {
  .cold-open .brand-mark,
  .immerse-bg .brand-mark { bottom: 16px; right: 16px; width: 40px; }
}
