/* ===========================================================
   Promium HD Movie — shared styles
   Palette: marquee gold on charcoal-navy, velvet red accent
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&family=Inter:wght@400;500;600&display=swap');

:root{
  --ink:        #0d0f16;
  --charcoal:   #12141c;
  --panel:      #191c27;
  --gold:       #e8b34c;
  --gold-dim:   #a9803c;
  --velvet:     #8a2c3b;
  --cream:      #f5f0e6;
  --slate:      #8891a3;
  --line:       rgba(232,179,76,0.18);

  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --serif:   'Source Serif 4', Georgia, serif;
  --body:    'Inter', -apple-system, sans-serif;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; text-decoration: none; }

img{ max-width: 100%; display:block; }

.wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* focus visibility */
a:focus-visible, button:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------------- Marquee light strip (signature element) ---------------- */
.marquee-strip{
  height: 6px;
  width: 100%;
  background:
    repeating-linear-gradient(90deg,
      var(--gold) 0 4px,
      transparent 4px 22px);
  opacity: 0.85;
  animation: chase 1.6s linear infinite;
}
@keyframes chase{
  from{ background-position-x: 0; }
  to{ background-position-x: 22px; }
}

/* ---------------- Header / Nav ---------------- */
header.site{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13,15,22,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.brand img{
  width: 38px;
  height: 38px;
}
.brand .name{
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--cream);
  white-space: nowrap;
}
.brand .name span{ color: var(--gold); }

nav.menu ul{
  list-style: none;
  display:flex;
  gap: 30px;
  margin:0; padding:0;
}
nav.menu a{
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
nav.menu a:hover,
nav.menu a[aria-current="page"]{
  color: var(--gold);
  border-color: var(--gold);
}

.nav-toggle{ display:none; }

@media (max-width: 720px){
  nav.menu ul{
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .brand .name{ font-size: 17px; }
}

/* ---------------- Hero ---------------- */
.hero{
  padding: 84px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset: -20% -10% auto -10%;
  height: 480px;
  background: radial-gradient(ellipse at 30% 0%, rgba(232,179,76,0.14), transparent 60%);
  pointer-events:none;
}
.eyebrow{
  font-family: var(--display);
  color: var(--velvet);
  background: rgba(138,44,59,0.16);
  border: 1px solid rgba(138,44,59,0.4);
  display:inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
h1.display{
  font-family: var(--display);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0 0 22px;
  color: var(--cream);
}
h1.display em{
  font-style: normal;
  color: var(--gold);
}
.lede{
  font-family: var(--serif);
  font-size: 20px;
  color: var(--slate);
  max-width: 560px;
  margin: 0 0 34px;
}
.cta-row{ display:flex; gap: 16px; flex-wrap: wrap; }

.btn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-gold{
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232,179,76,0.25);
}
.btn-outline{
  border: 1px solid var(--line);
  color: var(--cream);
}
.btn-outline:hover{
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------------- Poster strip ---------------- */
.poster-strip{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.poster{
  aspect-ratio: 2/3;
  border-radius: 6px;
  position: relative;
  overflow:hidden;
  border: 1px solid var(--line);
  display:flex;
  align-items:flex-end;
  padding: 12px;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.03em;
  color: var(--cream);
  transition: transform .25s ease;
}
.poster:hover{ transform: translateY(-6px); }
.poster::after{
  content:"HD";
  position:absolute;
  top:10px; right:10px;
  font-family: var(--body);
  font-weight:600;
  font-size: 10px;
  letter-spacing: 0.08em;
  background: rgba(13,15,22,0.65);
  color: var(--gold);
  padding: 3px 7px;
  border-radius: 3px;
}
.poster.p1{ background: linear-gradient(160deg, #3a2440, #12141c 70%); }
.poster.p2{ background: linear-gradient(160deg, #2c3a4d, #12141c 70%); }
.poster.p3{ background: linear-gradient(160deg, #4a2c2c, #12141c 70%); }
.poster.p4{ background: linear-gradient(160deg, #2c4a3a, #12141c 70%); }
.poster.p5{ background: linear-gradient(160deg, #4a3c20, #12141c 70%); }

@media (max-width: 720px){
  .poster-strip{ grid-template-columns: repeat(3, 1fr); }
}

/* ---------------- Sections ---------------- */
section{ padding: 72px 0; border-top: 1px solid var(--line); }

.section-head{ max-width: 620px; margin-bottom: 44px; }
.section-head .kicker{
  font-family: var(--display);
  color: var(--gold-dim);
  letter-spacing: 0.14em;
  font-size: 14px;
  margin-bottom: 10px;
  display:block;
}
.section-head h2{
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 44px);
  margin: 0 0 14px;
  letter-spacing: 0.01em;
}
.section-head p{
  font-family: var(--serif);
  color: var(--slate);
  font-size: 17px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
}
.card .num{
  font-family: var(--display);
  color: var(--velvet);
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display:block;
}
.card h3{
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.02em;
  margin: 0 0 10px;
  color: var(--cream);
}
.card p{ color: var(--slate); font-size: 15px; margin:0; }

@media (max-width: 860px){
  .grid-3{ grid-template-columns: 1fr; }
}

/* ---------------- Simple page hero (for interior pages) ---------------- */
.page-head{
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
}
.page-head .kicker{
  font-family: var(--display);
  color: var(--gold-dim);
  letter-spacing: 0.14em;
  font-size: 14px;
  margin-bottom: 10px;
  display:block;
}
.page-head h1{
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 58px);
  margin: 0 0 14px;
}
.page-head p{
  font-family: var(--serif);
  color: var(--slate);
  font-size: 18px;
  max-width: 640px;
}

/* ---------------- Prose (About / Privacy / Terms) ---------------- */
.prose{ max-width: 720px; padding: 56px 0; }
.prose h2{
  font-family: var(--display);
  font-size: 28px;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 40px 0 14px;
}
.prose h2:first-child{ margin-top: 0; }
.prose p{ color: var(--cream); font-size: 16px; margin: 0 0 16px; }
.prose p.muted{ color: var(--slate); font-size: 14px; }
.prose ul{ color: var(--cream); font-size: 16px; padding-left: 20px; }
.prose li{ margin-bottom: 8px; }
.prose strong{ color: var(--gold); }
.prose a{ color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover{ color: var(--cream); }

/* ---------------- Contact ---------------- */
.contact-panel{
  max-width: 560px;
  margin: 56px auto;
  text-align:center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 56px 40px;
}
.contact-panel .icon-ring{
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold);
  font-size: 26px;
}
.contact-panel h1{
  font-family: var(--display);
  font-size: 34px;
  margin: 0 0 12px;
}
.contact-panel p{
  font-family: var(--serif);
  color: var(--slate);
  margin: 0 0 30px;
}
.email-note{
  margin-top: 22px;
  font-size: 13px;
  color: var(--slate);
}
.email-note strong{ color: var(--gold); }

/* ---------------- Footer ---------------- */
footer.site{
  border-top: 1px solid var(--line);
  padding: 44px 0 36px;
}
.footer-row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--slate);
  font-size: 14px;
}
.footer-brand img{ width: 22px; height: 22px; }
.footer-links{
  list-style:none;
  display:flex;
  gap: 22px;
  margin:0; padding:0;
  font-size: 13px;
}
.footer-links a{ color: var(--slate); }
.footer-links a:hover{ color: var(--gold); }
.footer-copy{
  color: #5b6272;
  font-size: 12px;
  margin-top: 24px;
}
