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

:root {
  --black:   #0A0A0A;
  --dark:    #111111;
  --white:   #F5F5F5;
  --red:     #C8191A;
  --green:   #6DB33F;
  --blue:    #2563A8;
  --gold:    #E8A020;
  --muted:   #888888;
  --card-bg: #1A1A1A;
  --border:  rgba(200,25,26,0.18);
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 46px; width: auto; }
.nav-brand { display: flex; flex-direction: column; }
.nav-brand strong { font-family: 'Cinzel', serif; font-size: 1rem; color: var(--red); letter-spacing: 0.08em; line-height: 1.2; }
.nav-brand span { font-family: 'Rajdhani', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: #AAA; text-decoration: none; font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--red); }

/* DIAMOND DIVIDER */
.diamond-strip {
  display: flex; align-items: center; width: 100%; height: 6px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--green) 33%, var(--gold) 66%, var(--red) 100%);
}

/* HERO */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26,10,10,0.98) 0%, var(--black) 70%);
}
#hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(37,99,168,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(109,179,63,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(200,25,26,0.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(232,160,32,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-eyebrow { font-family: 'Rajdhani', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--red); margin-bottom: 18px; position: relative; z-index: 1; }
.hero-eyebrow span { margin: 0 10px; opacity: 0.4; }
.hero-om { font-family: 'Cinzel', serif; font-size: 0.85rem; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 28px; position: relative; z-index: 1; }
.hero-logo-wrap { margin-bottom: 28px; position: relative; z-index: 1; }
.hero-logo-wrap img { height: 110px; width: auto; filter: drop-shadow(0 0 30px rgba(200,25,26,0.3)); }
.hero-title { font-family: 'Cinzel', serif; font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; line-height: 1.05; color: var(--white); margin-bottom: 6px; position: relative; z-index: 1; letter-spacing: 0.04em; }
.hero-title .red { color: var(--red); }
.hero-tagline { font-family: 'Rajdhani', sans-serif; font-size: clamp(0.85rem, 2vw, 1.1rem); font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); margin-bottom: 36px; position: relative; z-index: 1; }
.hero-desc { max-width: 580px; font-size: 0.98rem; color: #AAA; line-height: 1.8; margin-bottom: 48px; position: relative; z-index: 1; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; position: relative; z-index: 1; }
.badge { border: 1px solid rgba(200,25,26,0.35); color: var(--red); padding: 5px 16px; font-family: 'Rajdhani', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; background: rgba(200,25,26,0.05); }
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
.btn-primary { background: var(--red); color: var(--white); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 13px 34px; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: #e02020; transform: translateY(-2px); }
.btn-outline { border: 1px solid #666; color: #AAA; font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.92rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 13px 34px; background: transparent; cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, color 0.2s; }
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* STATS */
.hero-stats { display: flex; gap: 0; margin-top: 72px; border-top: 1px solid var(--border); position: relative; z-index: 1; flex-wrap: wrap; justify-content: center; }
.stat { padding: 26px 44px; border-right: 1px solid var(--border); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 700; color: var(--red); display: block; line-height: 1; }
.stat-label { font-size: 0.72rem; font-weight: 500; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; margin-top: 6px; display: block; }

/* SECTIONS */
section { padding: 96px 24px; }
.container { max-width: 1140px; margin: 0 auto; }
.section-label { font-family: 'Rajdhani', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section-title { font-family: 'Cinzel', serif; font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 0.97rem; color: var(--muted); max-width: 560px; line-height: 1.8; }

/* WHY US */
#why { background: #111; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2px; margin-top: 52px; border: 2px solid var(--border); }
.why-card { background: var(--card-bg); padding: 36px 28px; border: 1px solid rgba(200,25,26,0.06); position: relative; transition: border-color 0.25s, background 0.25s; }
.why-card:hover { border-color: rgba(200,25,26,0.35); background: #1f1010; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--red); transform: scaleY(0); transform-origin: top; transition: transform 0.25s; }
.why-card:hover::before { transform: scaleY(1); }
.why-icon { font-size: 1.9rem; margin-bottom: 18px; display: block; }
.why-card h3 { font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 600; color: var(--red); margin-bottom: 8px; letter-spacing: 0.04em; }
.why-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }

/* SERVICES */
#services { background: var(--black); }
.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 52px; }
.service-panel { background: var(--card-bg); overflow: hidden; }
.service-panel-header { padding: 28px 32px 22px; border-bottom: 1px solid var(--border); }
.service-panel-header.inner { background: linear-gradient(135deg, #1a0808, var(--card-bg)); }
.service-panel-header.outer { background: linear-gradient(135deg, #080f1a, var(--card-bg)); }
.panel-type { font-family: 'Rajdhani', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.service-panel-header h3 { font-family: 'Cinzel', serif; font-size: 1.45rem; font-weight: 700; color: var(--white); }
.service-panel-header p { font-size: 0.83rem; color: var(--muted); margin-top: 6px; line-height: 1.6; }
.service-list { padding: 22px 32px; list-style: none; display: flex; flex-direction: column; }
.service-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.04); transition: padding-left 0.2s; cursor: default; }
.service-item:last-child { border-bottom: none; }
.service-item:hover { padding-left: 5px; }
.service-icon { width: 36px; height: 36px; flex-shrink: 0; background: rgba(200,25,26,0.08); border: 1px solid rgba(200,25,26,0.2); display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-top: 2px; }
.service-item-title { font-family: 'Rajdhani', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: 0.03em; }
.service-item-desc { font-size: 0.78rem; color: var(--muted); margin-top: 3px; line-height: 1.5; }

/* ABOUT */
#about { background: #111; }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-logo-col { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.about-logo-col img { width: 200px; height: auto; filter: drop-shadow(0 0 40px rgba(200,25,26,0.25)); }
.about-detail { width: 100%; padding: 22px 28px; background: var(--card-bg); border-left: 4px solid var(--red); }
.about-detail-row { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; }
.about-detail-row:last-child { border-bottom: none; }
.about-detail-label { font-family: 'Rajdhani', sans-serif; font-weight: 700; color: var(--red); letter-spacing: 0.08em; min-width: 100px; font-size: 0.8rem; text-transform: uppercase; }
.about-detail-val { color: #CCC; }
.about-text h2 { font-family: 'Cinzel', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--white); margin-bottom: 20px; }
.about-text p { font-size: 0.96rem; color: #AAA; line-height: 1.85; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }

/* CONTACT */
#contact { background: var(--black); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 52px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-block { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; flex-shrink: 0; background: rgba(200,25,26,0.08); border: 1px solid rgba(200,25,26,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.contact-block h4 { font-family: 'Rajdhani', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.contact-block p, .contact-block a { font-size: 0.92rem; color: #BBB; text-decoration: none; line-height: 1.6; transition: color 0.2s; }
.contact-block a:hover { color: var(--red); }
.contact-form { background: var(--card-bg); border: 1px solid var(--border); padding: 36px; }
.contact-form h3 { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 600; color: var(--white); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: 'Rajdhani', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(200,25,26,0.18); color: var(--white); padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 0.88rem; outline: none; transition: border-color 0.2s; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); background: rgba(200,25,26,0.04); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* FOOTER */
footer { background: #050505; padding: 28px 24px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 38px; width: auto; }
.footer-brand strong { font-family: 'Cinzel', serif; font-size: 0.92rem; color: var(--red); }
.footer-brand span { display: block; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; }
.footer-copy { font-size: 0.76rem; color: var(--muted); opacity: 0.6; text-align: right; line-height: 1.6; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .services-split { grid-template-columns: 1fr; }
  .about-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat { padding: 18px 22px; }
  section { padding: 60px 20px; }
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* THEATERS */
#theaters { background: #111; }
.theaters-intro { display: flex; gap: 56px; align-items: flex-start; flex-wrap: wrap; margin-bottom: 52px; }
.theaters-intro .left { flex: 1; min-width: 260px; }
.theaters-intro .right { flex: 1; min-width: 260px; padding: 24px 28px; background: rgba(200,25,26,0.06); border: 1px solid rgba(200,25,26,0.2); border-left: 4px solid var(--red); }
.theaters-intro .right p { font-size: 0.97rem; color: #BBB; line-height: 1.8; font-style: italic; }
.theaters-intro .right cite { display: block; margin-top: 10px; font-size: 0.78rem; color: var(--red); font-style: normal; font-family: 'Rajdhani', sans-serif; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

.theaters-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.theater-card { background: var(--card-bg); border: 1px solid rgba(200,25,26,0.1); padding: 24px; position: relative; overflow: hidden; transition: border-color 0.25s, transform 0.2s; }
.theater-card:hover { border-color: rgba(200,25,26,0.4); transform: translateY(-3px); }
.theater-card.featured { border-color: rgba(200,25,26,0.35); background: linear-gradient(135deg, #1a0808 0%, var(--card-bg) 100%); }
.theater-card.featured::after { content: 'FULL RIGHTS'; position: absolute; top: 14px; right: -28px; background: var(--red); color: var(--white); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 0.62rem; letter-spacing: 0.15em; padding: 4px 38px; transform: rotate(45deg); transform-origin: center; }
.theater-brand { font-family: 'Rajdhani', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); margin-bottom: 5px; }
.theater-name { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--white); line-height: 1.3; margin-bottom: 5px; }
.theater-location { font-size: 0.8rem; color: var(--muted); display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.theater-location::before { content: '📍'; font-size: 0.72rem; }
.theater-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.tag { font-family: 'Rajdhani', sans-serif; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 9px; border: 1px solid; }
.tag.screens { border-color: rgba(150,150,170,0.3); color: #AAA; }
.tag.inner { border-color: rgba(200,25,26,0.4); color: #DD7070; background: rgba(200,25,26,0.08); }
.tag.outer { border-color: rgba(37,99,168,0.4); color: #7090CC; background: rgba(37,99,168,0.08); }

.partner-strip { background: #1A0808; padding: 16px 24px; text-align: center; border-top: 2px solid rgba(200,25,26,0.3); border-bottom: 2px solid rgba(200,25,26,0.3); }
.partner-strip p { font-family: 'Rajdhani', sans-serif; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); }
