@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,700;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  --black: #080808;
  --deep: #0e0808;
  --red: #c0001a;
  --red-dim: #7a0010;
  --gold: #c9a84c;
  --gold-dim: #7a5f28;
  --cream: #e8dcc8;
  --muted: #6b6055;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--cream); font-family: 'Cormorant Garamond', Georgia, serif; overflow-x: hidden; }

/* Theater elements */
.theater-top, .theater-bottom {
  position: fixed; left: 0; right: 0; height: 4px; z-index: 999;
  background: linear-gradient(90deg, transparent, var(--red) 20%, var(--gold) 50%, var(--red) 80%, transparent);
}
.theater-top { top: 0; }
.theater-bottom { bottom: 0; opacity: 0.5; }
.curtain-l, .curtain-r {
  position: fixed; top: 0; bottom: 0; width: 50px; z-index: 50; pointer-events: none;
}
.curtain-l { left: 0; background: linear-gradient(to right, rgba(20,2,2,0.7), transparent); }
.curtain-r { right: 0; background: linear-gradient(to left, rgba(20,2,2,0.7), transparent); }

/* Nav */
nav {
  position: fixed; top: 4px; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 60px;
  background: linear-gradient(to bottom, rgba(8,3,3,0.97), transparent);
}
.nav-logo { font-family: 'Bebas Neue'; font-size: 1.8rem; letter-spacing: 0.12em; color: var(--gold); text-decoration: none; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-family: 'Cormorant Garamond'; font-size: 0.85rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); text-decoration: none; opacity: 0.65; transition: all 0.3s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--gold); }
.nav-btn { background: var(--red) !important; color: var(--cream) !important; opacity: 1 !important; padding: 9px 22px; font-family: 'Bebas Neue' !important; letter-spacing: 0.15em !important; font-size: 0.85rem !important; transition: background 0.3s !important; }
.nav-btn:hover { background: #e0001f !important; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; padding: 120px 40px 80px; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(180,15,0,0.09) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 15% 75%, rgba(201,168,76,0.05) 0%, transparent 60%),
              radial-gradient(ellipse 40% 40% at 85% 25%, rgba(201,168,76,0.04) 0%, transparent 60%), var(--deep);
}
.hero-side-l, .hero-side-r {
  position: absolute; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(to bottom, transparent, var(--red-dim), var(--red), var(--red-dim), transparent);
  opacity: 0.5;
}
.hero-side-l { left: 0; }
.hero-side-r { right: 0; }
.hero-content { position: relative; z-index: 2; max-width: 860px; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; animation: fadeUp 1s ease 0.3s both; }
.hero-title { font-family: 'Bebas Neue'; font-size: clamp(7rem, 20vw, 15rem); line-height: 0.82; letter-spacing: 0.04em; color: var(--cream); text-shadow: 0 0 100px rgba(201,168,76,0.12), 0 0 200px rgba(192,0,26,0.06); animation: fadeUp 1.2s ease 0.6s both; }
.hero-subtitle { font-family: 'Playfair Display'; font-style: italic; font-size: clamp(1rem, 2.5vw, 1.5rem); color: var(--gold); letter-spacing: 0.1em; margin-top: 14px; animation: fadeUp 1s ease 0.9s both; }
.hero-divider { width: 55px; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent); margin: 28px auto; animation: fadeUp 1s ease 1.1s both; }
.hero-tagline { font-family: 'Playfair Display'; font-style: italic; font-size: clamp(1.1rem, 2vw, 1.4rem); color: var(--cream); opacity: 0.9; margin-bottom: 8px; animation: fadeUp 1s ease 1.2s both; }
.hero-tagline-sub { font-size: 0.9rem; font-style: italic; color: var(--cream); opacity: 0.5; margin-bottom: 36px; animation: fadeUp 1s ease 1.3s both; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeUp 1s ease 1.5s both; }

/* Book mockup */
.mockup-section { padding: 80px 60px; display: flex; justify-content: center; background: linear-gradient(to bottom, var(--black), #0d0707, var(--black)); }
.book-mockup-wrap { position: relative; display: inline-block; }
.book-mockup-wrap::before { content: ''; position: absolute; inset: -30px; background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
.book-3d {
  width: 220px; display: block;
  transform: perspective(1000px) rotateY(-12deg);
  box-shadow: -15px 15px 40px rgba(0,0,0,0.9), 8px 0 20px rgba(0,0,0,0.5), 0 0 80px rgba(201,168,76,0.08);
  transition: transform 0.5s ease;
  position: relative; z-index: 1;
}
.book-3d:hover { transform: perspective(1000px) rotateY(-6deg) translateY(-6px); }

/* Buttons */
.btn-primary { font-family: 'Bebas Neue'; font-size: 1rem; letter-spacing: 0.18em; padding: 15px 38px; background: var(--red); color: var(--cream); border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.3s; }
.btn-primary:hover { background: #e0001f; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(192,0,26,0.4); }
.btn-secondary { font-family: 'Bebas Neue'; font-size: 1rem; letter-spacing: 0.18em; padding: 14px 38px; background: transparent; color: var(--gold); border: 1px solid var(--gold-dim); cursor: pointer; text-decoration: none; display: inline-block; transition: all 0.3s; }
.btn-secondary:hover { background: rgba(201,168,76,0.07); border-color: var(--gold); transform: translateY(-2px); }

/* Section styles */
.section { padding: 90px 60px; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.72rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: block; }
.section-title { font-family: 'Bebas Neue'; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 0.9; color: var(--cream); margin-bottom: 10px; }
.section-subtitle { font-family: 'Playfair Display'; font-style: italic; color: var(--gold); font-size: 1.1rem; margin-bottom: 28px; }
.red-line { width: 50px; height: 2px; background: var(--red); margin-bottom: 28px; }
.body-text { font-size: 1.05rem; line-height: 1.95; color: rgba(232,220,200,0.78); margin-bottom: 24px; font-style: italic; }

/* Movie poster frame */
.poster-frame {
  border: 2px solid rgba(192,0,26,0.4);
  padding: 12px;
  background: #0a0404;
  box-shadow: 0 0 40px rgba(192,0,26,0.08), inset 0 0 30px rgba(0,0,0,0.5);
  position: relative;
  display: inline-block;
}
.poster-frame::before {
  content: '';
  position: absolute; inset: 6px;
  border: 1px solid rgba(201,168,76,0.15);
  pointer-events: none;
}
.poster-frame img { display: block; width: 100%; max-width: 260px; }

/* Two col layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.two-col-reverse { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

/* Quote band */
.quote-band {
  padding: 70px 60px; text-align: center;
  border-top: 1px solid rgba(192,0,26,0.12);
  border-bottom: 1px solid rgba(192,0,26,0.12);
  background: linear-gradient(135deg, rgba(192,0,26,0.03) 0%, transparent 50%, rgba(201,168,76,0.02) 100%);
}
.quote-mark { font-family: 'Playfair Display'; font-size: 5rem; line-height: 0.4; color: var(--red); opacity: 0.3; display: block; margin-bottom: 20px; }
.quote-text { font-family: 'Playfair Display'; font-style: italic; font-size: clamp(1.2rem, 2.5vw, 1.8rem); line-height: 1.65; color: var(--cream); max-width: 680px; margin: 0 auto 20px; }
.quote-attr { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); opacity: 0.65; }

/* Author photo */
.author-photo-wrap { position: relative; }
.author-photo-wrap::before { content: ''; position: absolute; top: 16px; left: 16px; right: -16px; bottom: -16px; border: 1px solid rgba(192,0,26,0.25); pointer-events: none; }
.author-photo { width: 100%; display: block; filter: grayscale(15%) contrast(1.05); position: relative; z-index: 1; }

/* Newsletter */
.newsletter-band { padding: 70px 60px; text-align: center; border-top: 1px solid rgba(201,168,76,0.07); }
.nl-title { font-family: 'Playfair Display'; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--cream); margin-bottom: 10px; }
.nl-sub { font-style: italic; color: rgba(232,220,200,0.55); font-size: 0.95rem; margin-bottom: 32px; }
.nl-form { display: flex; max-width: 460px; margin: 0 auto; }
.nl-input { flex: 1; padding: 15px 22px; background: rgba(255,255,255,0.04); border: 1px solid rgba(201,168,76,0.18); border-right: none; color: var(--cream); font-family: 'Cormorant Garamond'; font-size: 1rem; outline: none; transition: border-color 0.3s; }
.nl-input::placeholder { color: var(--muted); }
.nl-input:focus { border-color: rgba(201,168,76,0.45); }
.nl-btn { padding: 15px 26px; background: var(--red); color: var(--cream); border: none; font-family: 'Bebas Neue'; font-size: 0.9rem; letter-spacing: 0.15em; cursor: pointer; transition: background 0.3s; }
.nl-btn:hover { background: #e0001f; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 16px; max-width: 560px; }
.form-input, .form-textarea {
  padding: 15px 20px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15); color: var(--cream);
  font-family: 'Cormorant Garamond'; font-size: 1rem; outline: none;
  transition: border-color 0.3s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-textarea:focus { border-color: rgba(201,168,76,0.4); }
.form-textarea { height: 140px; resize: vertical; }

/* Footer */
footer {
  padding: 36px 60px; border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: 'Bebas Neue'; font-size: 1.5rem; letter-spacing: 0.12em; color: var(--gold); opacity: 0.65; }
.footer-copy { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* Page header (for inner pages) */
.page-header { padding: 160px 60px 80px; text-align: center; position: relative; overflow: hidden; }
.page-header-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(192,0,26,0.07) 0%, transparent 70%), var(--deep); }
.page-header-side-l, .page-header-side-r { position: absolute; top: 0; bottom: 0; width: 5px; background: linear-gradient(to bottom, transparent, var(--red-dim), var(--red), var(--red-dim), transparent); opacity: 0.4; }
.page-header-side-l { left: 0; } .page-header-side-r { right: 0; }
.page-header-content { position: relative; z-index: 2; }

/* Light spots */
.glow { position: absolute; border-radius: 50%; pointer-events: none; animation: glowpulse 4s ease-in-out infinite; }
.glow-1 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(201,168,76,0.055) 0%, transparent 70%); top: 8%; left: 3%; }
.glow-2 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(192,0,26,0.045) 0%, transparent 70%); top: 18%; right: 3%; animation-delay: 2s; }
.glow-3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(201,168,76,0.038) 0%, transparent 70%); bottom: 18%; left: 12%; animation-delay: 1s; }

@keyframes glowpulse { 0%,100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

/* Responsive */
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .section { padding: 60px 24px; }
  .two-col, .two-col-reverse { grid-template-columns: 1fr; gap: 36px; }
  .page-header { padding: 120px 24px 60px; }
  footer { padding: 28px 24px; flex-direction: column; text-align: center; }
  .nl-form { flex-direction: column; }
  .nl-input { border-right: 1px solid rgba(201,168,76,0.18); border-bottom: none; }
  .curtain-l, .curtain-r { width: 20px; }
  .book-3d { width: 160px; }
  .mockup-section { padding: 50px 24px; }
  .quote-band { padding: 50px 24px; }
  .newsletter-band { padding: 50px 24px; }
}
