:root {
  --red: #b3142a;
  --red-bright: #e0273c;
  --cream: #f5ecd8;
  --paper: #fbf6e8;
  --ink: #1c1410;
  --gold: #c4a256;
  --shadow: 0 6px 28px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #1a0d0a;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
}

/* ---- Background montage (sepia film stills tiled at low opacity) ---- */
.bg-montage {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(ellipse at center, #2a1410 0%, #0e0606 75%);
}
.bg-montage .bg {
  position: absolute;
  width: 38vmin;
  height: 38vmin;
  background-size: cover;
  background-position: center;
  filter: sepia(.85) contrast(1.05) brightness(.55);
  opacity: .28;
  border-radius: 4px;
  box-shadow: 0 0 60px #000;
}
.bg1 { background-image: url('images/bg1.jpg'); top: -4vmin; left: -4vmin; transform: rotate(-6deg); }
.bg2 { background-image: url('images/bg2.jpg'); top: 8vmin; right: -6vmin; transform: rotate(5deg); }
.bg3 { background-image: url('images/bg3.jpg'); top: 38vmin; left: 10vmin; transform: rotate(3deg); }
.bg4 { background-image: url('images/bg4.jpg'); top: 60vmin; right: 6vmin; transform: rotate(-4deg); }
.bg5 { background-image: url('images/bg5.jpg'); bottom: 4vmin; left: -4vmin; transform: rotate(7deg); }
.bg6 { background-image: url('images/bg6.jpg'); bottom: -6vmin; right: 12vmin; transform: rotate(-3deg); }

.vignette {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,.75) 100%);
}

/* ---- Hero ---- */
.hero {
  text-align: center;
  padding: 6vh 1rem 2vh;
}
.title {
  font-family: "Pinyon Script", "Allura", cursive;
  font-weight: 400;
  color: var(--red-bright);
  font-size: clamp(3.2rem, 9vw, 7rem);
  margin: 0;
  line-height: .95;
  text-shadow:
    0 2px 0 #6a0010,
    0 4px 24px rgba(224, 39, 60, .45),
    0 0 60px rgba(255, 80, 100, .25);
  letter-spacing: .01em;
}
.tagline {
  color: var(--cream);
  font-style: italic;
  font-size: 1.15rem;
  margin: .5rem auto 0;
  max-width: 36rem;
  text-shadow: 0 2px 12px #000;
}

/* ---- Retro counter bar ---- */
.counter-bar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem auto 3rem;
}
.counter {
  background: #0a0a0a;
  border: 2px solid #2a2a2a;
  border-radius: 6px;
  padding: .5rem .85rem .65rem;
  box-shadow: inset 0 0 18px rgba(0,0,0,.85), 0 0 0 1px #000, 0 4px 14px rgba(0,0,0,.5);
  text-align: center;
  min-width: 200px;
}
.counter-label {
  display: block;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: .72rem;
  color: #b89a4e;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}
.counter-digits {
  font-family: "Courier New", monospace;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: .12em;
  color: #ffba2a;
  text-shadow: 0 0 10px rgba(255, 186, 42, .65), 0 0 2px #fff3a8;
  background: linear-gradient(180deg, #000 0%, #1a1108 50%, #000 100%);
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 3px;
}

/* ---- Film cards ---- */
.films {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}
.film {
  background: var(--paper);
  border: 1px solid #d8c79a;
  border-radius: 6px;
  padding: 1.4rem 1.4rem 1.1rem;
  box-shadow: var(--shadow);
  position: relative;
}
.film::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid #c9a85a;
  border-radius: 4px;
  pointer-events: none;
}
.film-head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  align-items: baseline;
  margin-bottom: .35rem;
}
.year {
  grid-row: 1 / span 2;
  font-family: "Special Elite", "Courier New", monospace;
  font-size: 2.2rem;
  color: var(--red);
  letter-spacing: .02em;
  align-self: center;
}
.film-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.85rem;
  color: var(--ink);
  line-height: 1.05;
}
.series {
  font-style: italic;
  font-size: .85rem;
  color: #6a4a1a;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.desc {
  margin: .55rem 0 1rem;
  color: #2a1f17;
}
.player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #000, 0 4px 16px rgba(0,0,0,.4);
}
.play-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  position: relative;
}
.poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .8;
  transition: opacity .25s, transform .35s;
}
.play-btn:hover .poster { opacity: 1; transform: scale(1.02); }
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 0 24px rgba(0,0,0,.8);
  pointer-events: none;
}
.player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.credit {
  font-size: .8rem;
  color: #6a4a1a;
  margin: .6rem 0 0;
  font-style: italic;
}
.credit a { color: var(--red); text-decoration: none; }
.credit a:hover { text-decoration: underline; }

/* ---- Upcoming / countdown ---- */
.upcoming {
  max-width: 920px;
  margin: 0 auto 4rem;
  padding: 2rem 1rem;
  color: var(--cream);
}
.upcoming-title {
  text-align: center;
  font-family: "Pinyon Script", cursive;
  color: var(--red-bright);
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin: 0 0 .5rem;
  text-shadow: 0 2px 0 #6a0010, 0 0 30px rgba(255,80,100,.3);
}
.upcoming-blurb {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
  font-style: italic;
  color: #e6dcc4;
  text-shadow: 0 1px 6px #000;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.countdown-card {
  background: rgba(10, 6, 4, .78);
  border: 1px solid #6a4a1a;
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(2px);
}
.cd-year {
  font-family: "Special Elite", monospace;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .12em;
}
.cd-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--cream);
  margin: .15rem 0 .1rem;
}
.cd-studio {
  font-size: .8rem;
  font-style: italic;
  color: #b89a4e;
  margin-bottom: .6rem;
}
.cd-timer {
  font-family: "Courier New", monospace;
  font-size: 1.05rem;
  color: #ffba2a;
  text-shadow: 0 0 8px rgba(255,186,42,.5);
  letter-spacing: .05em;
}
.cd-num { font-weight: 700; }
.cd-unit { color: var(--gold); margin-right: .35rem; font-size: .8em; }
.cd-eta {
  margin-top: .4rem;
  font-size: .75rem;
  color: #9a8c66;
  font-style: italic;
}
.upcoming-footnote {
  margin-top: 1.5rem;
  font-size: .8rem;
  color: #9a8c66;
  font-style: italic;
  text-align: center;
}

/* ---- Disclaimer ---- */
.disclaimer {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
  color: var(--cream);
  text-align: center;
  font-size: .95rem;
}
.disclaimer h2 {
  font-family: "Pinyon Script", cursive;
  color: var(--red-bright);
  font-size: 2.4rem;
  margin: 0 0 .5rem;
  font-weight: 400;
}
.disclaimer a { color: var(--red-bright); }
.contact { margin-top: 1.2rem; font-size: 1rem; }
.tiny { font-size: .75rem; color: #8c7c5e; margin-top: 2rem; font-style: italic; }

@media (max-width: 600px) {
  body { font-size: 17px; }
  .film { padding: 1rem 1rem .85rem; }
  .film-head { grid-template-columns: 1fr; }
  .year { grid-row: auto; font-size: 1.6rem; }
  .counter-digits { font-size: 1.6rem; }
}
