/* ===== ROOT ===== */
:root {
  --black: #0a0707;
  --deep: #0f0b0b;
  --surface: #160f0f;
  --surface2: #1e1414;
  --red: #c0392b;
  --red-hot: #e84040;
  --red-dim: #7a1f1f;
  --red-glow: rgba(192,57,43,0.18);
  --cream: #f0e6d3;
  --cream2: #c9b89a;
  --cream3: #7a6a55;
  --border: rgba(192,57,43,0.2);
  --border2: rgba(240,230,211,0.08);
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-type: 'Special Elite', cursive;
  --font-mono: 'DM Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-type);
  overflow-x: hidden;
  cursor: crosshair;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== GRAIN CANVAS ===== */
#grain {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.045;
  mix-blend-mode: screen;
}

/* ===== SCANLINES ===== */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0,0,0,0.25) 2px,
    rgba(0,0,0,0.25) 4px
  );
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 96px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.stamp {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--red);
  border: 1.5px solid var(--red);
  padding: 4px 14px;
  transform: rotate(-1deg);
  margin-bottom: 20px;
  opacity: 0.85;
}

.stamp-white {
  color: var(--cream);
  border-color: var(--cream);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 4px;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
}

.title-rule {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 16px auto 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 3px;
  padding: 14px 32px;
  cursor: pointer;
  transition: all .2s;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--red-dim), 0 0 30px rgba(192,57,43,0.3);
}
.btn-primary:hover {
  background: var(--red-hot);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--red-dim), 0 0 50px rgba(232,64,64,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--cream2);
  border: 1.5px solid rgba(240,230,211,0.3);
}
.btn-ghost:hover {
  color: var(--cream);
  border-color: var(--cream2);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 28px;
  transition: background .4s;
}
.nav.scrolled {
  background: rgba(10,7,7,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.logo-reel {
  font-size: 20px;
  color: var(--red);
}
.logo-text {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 6px;
  color: var(--cream);
}
.logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--cream3);
}

.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--cream3);
  transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--deep);
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 3px;
  color: var(--cream2);
  padding: 16px 28px;
  border-bottom: 1px solid var(--border2);
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Ticker tapes */
.hero-tape-top,
.hero-tape-bottom {
  background: var(--red);
  padding: 9px 0;
  white-space: nowrap;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(10,7,7,0.8);
  flex-shrink: 0;
}
.hero-tape-top { margin-top: 70px; }

.hero-tape-top span,
.hero-tape-bottom span {
  display: inline-block;
  animation: tapeScroll 18s linear infinite;
}
.hero-tape-bottom span { animation-direction: reverse; }

@keyframes tapeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Hero body */
.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 56px 28px;
}

.hero-issue {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 20px;
  animation: fadeUp .8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.88;
  margin-bottom: 28px;
}
.title-line {
  display: block;
  font-size: clamp(90px, 14vw, 160px);
  letter-spacing: -2px;
  animation: fadeUp .8s ease both;
}
.t1 { color: var(--cream); animation-delay: .05s; }
.t2 { color: var(--cream2); animation-delay: .12s; -webkit-text-stroke: 1px rgba(240,230,211,0.5); color: transparent; }
.t3 { color: var(--red); animation-delay: .19s; text-shadow: 0 0 60px rgba(192,57,43,0.5); }

.hero-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--cream2);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 36px;
  animation: fadeUp .8s .25s ease both;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp .8s .33s ease both;
}

/* Film Strip */
.hero-right {
  display: flex;
  justify-content: center;
  animation: fadeUp .9s .2s ease both;
}

.film-strip {
  display: inline-flex;
  flex-direction: column;
  background: #111;
  border: 2px solid #222;
  box-shadow: 8px 8px 0 var(--red-dim), 0 0 60px rgba(0,0,0,0.8);
  transform: rotate(1.5deg);
}

.film-holes {
  display: flex;
  justify-content: space-around;
  padding: 8px 10px;
  background: #0d0d0d;
}
.film-holes span {
  width: 14px; height: 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 2px;
}

.film-frames {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 3px;
  background: #111;
}

.frame {
  width: 220px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform .3s;
}
.frame:hover { transform: scale(1.01); }
.frame.featured { border: 2px solid var(--red); box-shadow: 0 0 20px rgba(192,57,43,0.4); }

.frame-inner {
  position: relative;
}

.frame-scene {
  height: 120px;
  position: relative;
}

/* Film frame scenes using CSS */
.s1 {
  background: linear-gradient(160deg, #1a0a0a 0%, #2d1010 40%, #1a0000 100%);
}
.s1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 40% 50%, rgba(192,57,43,0.15) 0%, transparent 60%),
              repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0,0,0,0.1) 8px, rgba(0,0,0,0.1) 9px);
}
.s1::after {
  content: '✦';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: rgba(192,57,43,0.3);
}

.s2 {
  background: linear-gradient(180deg, #080808 0%, #181010 50%, #080808 100%);
}
.s2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.s2::after {
  content: '⬡';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: rgba(255,255,255,0.08);
}

.s3 {
  background: linear-gradient(135deg, #0f0c08 0%, #1a1408 50%, #0a0c14 100%);
}
.s3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(180,150,80,0.1) 0%, transparent 60%);
}
.s3::after {
  content: '◈';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: rgba(180,150,80,0.2);
}

.s4 {
  background: linear-gradient(160deg, #0a0f1a 0%, #131820 50%, #080a0f 100%);
}
.s4::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 60%, rgba(100,150,200,0.07) 0%, transparent 50%);
}
.s4::after {
  content: '◇';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  color: rgba(100,150,200,0.15);
}

.frame-caption {
  background: #0d0d0d;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--cream3);
  padding: 5px 8px;
  text-align: center;
}

/* ===== PICKS ===== */
.picks {
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.picks-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.pick-card {
  background: var(--surface);
  border: 1px solid var(--border2);
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.pick-card:hover {
  border-color: var(--border);
  box-shadow: 0 0 40px rgba(0,0,0,0.6), inset 0 0 0 1px var(--red-dim);
  transform: translateY(-3px);
}

.pick-large {
  grid-row: 1 / 3;
}

.pick-poster {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.pick-large .pick-poster { height: 280px; }

.p1 { background: linear-gradient(160deg, #1a0505 0%, #2d0f0f 40%, #0a0000 100%); }
.p2 { background: linear-gradient(135deg, #080c14 0%, #141a22 50%, #050810 100%); }
.p3 { background: linear-gradient(160deg, #0f1408 0%, #1a1f0f 50%, #080a05 100%); }
.p4 { background: linear-gradient(135deg, #14080a 0%, #221015 50%, #0a050810 100%); }
.p5 { background: linear-gradient(160deg, #0a080f 0%, #14101a 50%, #080610 100%); }
.p6 { background: linear-gradient(135deg, #080808 0%, #111 50%, #050505 100%); }

.p1::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 60%, rgba(192,57,43,0.25) 0%, transparent 60%); }
.p2::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 40%, rgba(100,130,180,0.12) 0%, transparent 60%); }
.p3::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 40% 50%, rgba(150,200,100,0.08) 0%, transparent 60%); }
.p4::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(192,57,43,0.1) 0%, transparent 60%); }
.p5::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(80,60,120,0.15) 0%, transparent 60%); }
.p6::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 60%); }

.pick-rating {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 12px;
  color: var(--red-hot);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(232,64,64,0.5);
}

.pick-year {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(240,230,211,0.1);
  letter-spacing: 2px;
}

.pick-info { padding: 22px; flex: 1; }

.pick-genre {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 8px;
}

.pick-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--cream);
  margin-bottom: 4px;
  line-height: 1;
}
.pick-large h3 { font-size: 30px; }

.pick-director {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--cream3);
  margin-bottom: 12px;
}

.pick-review {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--cream2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.pick-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.meta-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--cream3);
  border: 1px solid var(--border2);
  padding: 3px 8px;
}

/* ===== DIRECTORS ===== */
.directors {
  background: var(--black);
  border-top: 1px solid var(--border2);
}

.directors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border: 1px solid var(--border2);
}

.director-card {
  display: flex;
  gap: 28px;
  padding: 40px 36px;
  border: 1px solid var(--border2);
  transition: background .3s;
}
.director-card:hover {
  background: var(--surface);
}

.dir-number {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--red-dim);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
}

.dir-info h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--cream);
  margin-bottom: 6px;
}

.dir-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 14px;
}

.dir-info p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--cream2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.dir-films {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--cream3);
  line-height: 1.6;
}

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.06) 20px,
    rgba(0,0,0,0.06) 21px
  );
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.manifesto-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: 3px;
  color: var(--black);
  margin-bottom: 36px;
  line-height: 1;
}

.manifesto-text p {
  font-family: var(--font-serif);
  font-size: 16px;
  color: rgba(10,7,7,0.85);
  line-height: 1.85;
  margin-bottom: 20px;
  text-align: left;
}
.manifesto-closing {
  text-align: right !important;
  font-style: italic;
}

.manifesto-rule {
  width: 60px;
  height: 1px;
  background: rgba(10,7,7,0.3);
  margin: 36px auto;
}

.manifesto-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(10,7,7,0.7);
  line-height: 1.6;
}
.manifesto-quote span {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  font-style: normal;
  font-family: var(--font-mono);
  margin-top: 10px;
  color: rgba(10,7,7,0.5);
}

/* ===== TICKER ===== */
.ticker {
  background: var(--black);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-inner span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cream3);
  animation: tapeScroll 25s linear infinite;
}

/* ===== SUBMIT ===== */
.submit {
  background: var(--deep);
  border-top: 1px solid var(--border);
}

.submit-inner {
  max-width: 720px;
  margin: 0 auto;
}

.submit-desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--cream2);
  line-height: 1.7;
  margin-bottom: 48px;
  text-align: center;
}

.submit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--cream3);
}

.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-bottom: 2px solid var(--border);
  padding: 14px 16px;
  font-family: var(--font-type);
  font-size: 15px;
  color: var(--cream);
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream3); }
.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--red);
}

.form-success {
  display: none;
  font-family: var(--font-type);
  font-size: 16px;
  color: var(--cream);
  background: var(--surface);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  margin-top: 16px;
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border2);
  margin-bottom: 28px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 6px;
  color: var(--cream);
  margin-bottom: 16px;
}

.footer-brand p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--cream3);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 16px;
}

.footer-ssl {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--red-dim);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--cream2);
  margin-bottom: 20px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-family: var(--font-type);
  font-size: 13px;
  color: var(--cream3);
  transition: color .2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--cream3);
  opacity: 0.5;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-animate] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-body { grid-template-columns: 1fr; text-align: center; padding: 40px 20px; }
  .hero-desc { margin: 0 auto 28px; }
  .hero-btns { justify-content: center; }
  .hero-right { display: none; }
  .title-line { font-size: clamp(72px, 22vw, 120px); }

  .picks-grid { grid-template-columns: 1fr; }
  .pick-large { grid-row: auto; }

  .directors-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .picks-grid { grid-template-columns: 1fr; }
  .director-card { flex-direction: column; gap: 12px; padding: 28px 20px; }
  .dir-number { font-size: 40px; }
}
