/* ============================================
   FILM CON HOLLYWOOD — Static Site CSS
   Dark cinematic design · Coral accent #E8633A
============================================ */

:root {
  --bg:        #0a0a0a;
  --bg-soft:   #111111;
  --card:      #1a1a1a;
  --border:    #2a2a2a;
  --coral:     #E8633A;
  --coral-dk:  #d45528;
  --text:      #F5F5F5;
  --muted:     #888888;
  --font:      system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius:    0.5rem;
  --max:       1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: var(--bg);
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}
.navbar .inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo .film-con {
  font-size: 1.35rem; font-weight: 900; letter-spacing: -0.03em;
  font-family: Impact, 'Arial Black', sans-serif;
  color: var(--text);
}
.nav-logo .hollywood {
  font-size: 0.5rem; letter-spacing: 0.35em; color: var(--muted);
  text-transform: uppercase; margin-top: 1px;
}
.nav-logo .coral-rule { display: block; height: 1px; background: var(--coral); margin: 2px 0; }

.nav-links { display: none; gap: 2rem; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.btn-submit {
  background: var(--coral); color: #fff; font-weight: 700;
  padding: 0.5rem 1.25rem; border-radius: var(--radius);
  font-size: 0.875rem; transition: background 0.2s;
  display: none;
}
.btn-submit:hover { background: var(--coral-dk); }

.hamburger { color: var(--text); font-size: 1.5rem; line-height: 1; }

/* Mobile drawer */
.mobile-drawer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.mobile-drawer.open { max-height: 380px; }
.mobile-drawer .links {
  padding: 1rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.mobile-drawer .links a { color: var(--muted); font-size: 1rem; font-weight: 500; transition: color 0.2s; }
.mobile-drawer .links a:hover { color: var(--text); }
.mobile-drawer .btn-mobile {
  background: var(--coral); color: #fff; font-weight: 700;
  padding: 0.75rem 1.25rem; border-radius: var(--radius);
  text-align: center; margin-top: 0.5rem; display: block;
  transition: background 0.2s;
}
.mobile-drawer .btn-mobile:hover { background: var(--coral-dk); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, #0a0a0a 100%);
}
/* grain */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 3;
  max-width: var(--max); margin: 0 auto; padding: 7rem 1.5rem 10rem;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,99,58,0.15); border: 1px solid var(--coral);
  color: var(--coral); font-size: 0.7rem; font-weight: 900;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.375rem 1rem; border-radius: 9999px; margin-bottom: 2rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 1.25rem;
}
.hero h1 .coral { color: var(--coral); }
.hero h1 em { font-style: italic; }
.hero-sub { font-size: 1.125rem; color: var(--muted); margin-bottom: 2.5rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 2rem; }
.btn-coral {
  background: var(--coral); color: #fff; font-weight: 700;
  padding: 0.875rem 2rem; border-radius: var(--radius);
  font-size: 1rem; transition: background 0.2s; display: inline-block;
}
.btn-coral:hover { background: var(--coral-dk); }
.btn-outline {
  border: 2px solid var(--text); color: var(--text); font-weight: 700;
  padding: 0.875rem 2rem; border-radius: var(--radius);
  font-size: 1rem; transition: background 0.2s, color 0.2s; display: inline-block;
}
.btn-outline:hover { background: var(--text); color: var(--bg); }
.hero-proof { font-size: 0.875rem; color: var(--muted); letter-spacing: 0.04em; }

/* Ticker */
.ticker-wrap {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(0,0,0,0.6); padding: 0.75rem 0; overflow: hidden;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker-item {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--coral); padding: 0 1.25rem;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
section { padding: 6rem 0; }
.section-label {
  font-size: 0.7rem; font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--coral); display: block; margin-bottom: 0.75rem;
}
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; letter-spacing: -0.02em; margin-top: 0.5rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 0.75rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.bg-soft { background: var(--bg-soft); }
.bg-main { background: var(--bg); }

/* ── ANNOUNCEMENT BANNER ── */
.banner {
  background: var(--coral); padding: 2.5rem 1.5rem; text-align: center;
}
.banner h2 { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 900; color: #fff; margin-bottom: 1.5rem; }
.email-form { display: flex; flex-direction: column; gap: 0.75rem; max-width: 420px; margin: 0 auto 1rem; }
.email-form input {
  flex: 1; background: #fff; color: #0a0a0a;
  border: none; padding: 0.875rem 1rem; border-radius: var(--radius);
  font-size: 0.875rem; font-family: inherit;
}
.email-form input:focus { outline: 2px solid #0a0a0a; }
.email-form input::placeholder { color: #888; }
.btn-dark {
  background: #0a0a0a; color: #fff; font-weight: 700;
  padding: 0.875rem 1.5rem; border-radius: var(--radius);
  font-size: 0.875rem; white-space: nowrap; transition: background 0.2s;
}
.btn-dark:hover { background: #1a1a1a; }
.banner-note { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-top: 0.75rem; }
.confirm-msg {
  display: none; background: rgba(255,255,255,0.2);
  color: #fff; font-weight: 700; padding: 0.75rem 1.5rem;
  border-radius: var(--radius); margin-bottom: 1rem;
}
.confirm-msg.show { display: inline-block; }

/* ── ABOUT ── */
.two-col { display: flex; flex-direction: column; gap: 3rem; }
.about-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  height: 420px; border-left: 4px solid var(--coral);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}
.about-body h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.about-body .edition-pill {
  display: inline-block;
  background: rgba(232,99,58,0.12); border: 1px solid rgba(232,99,58,0.4);
  color: var(--coral); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 9999px; margin-bottom: 1.5rem;
}
.about-body p { color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.pill-tag {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); font-size: 0.875rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: 9999px;
}
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }

/* ── CARDS GRID ── */
.grid-3 { display: grid; gap: 1.25rem; }
.grid-4 { display: grid; gap: 1.25rem; }
.grid-2 { display: grid; gap: 1.25rem; }

.prog-card, .award-card {
  background: var(--card); border: 1px solid var(--border);
  border-top: 2px solid transparent; border-radius: var(--radius); padding: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.prog-card:hover, .award-card:hover {
  border-top-color: var(--coral);
  box-shadow: 0 8px 32px rgba(232,99,58,0.1);
}
.card-num {
  font-size: 0.65rem; font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 1rem;
}
.award-card { border-top-color: var(--coral); }
.award-card .award-rule { width: 24px; height: 1px; background: var(--coral); margin-bottom: 1rem; }
.award-card:hover { transform: scale(1.03); }
.prog-card h3, .award-card h3 {
  font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem;
}
.prog-card p, .award-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; font-style: italic; }

/* ── RECAP / GALLERY ── */
.gallery-grid { display: grid; gap: 1rem; margin-bottom: 3rem; }
.gallery-item {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 16/9;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}
.gallery-caption {
  position: absolute; bottom: 0.75rem; left: 1rem; z-index: 1;
  font-weight: 700; font-size: 0.875rem; letter-spacing: 0.04em; color: #fff;
}
.quotes-grid { display: grid; gap: 1.25rem; }
.quote-card {
  background: var(--card); border-radius: var(--radius);
  border-left: 4px solid var(--coral); padding: 1.25rem 1.5rem;
}
.quote-card p { color: var(--text); font-style: italic; font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.75rem; }
.quote-card cite { color: var(--muted); font-size: 0.8rem; font-weight: 700; font-style: normal; }

/* ── MATERIALS ── */
.materials-img {
  border-radius: var(--radius); overflow: hidden;
  height: 420px; box-shadow: 0 0 60px rgba(232,99,58,0.15);
}
.materials-img img { width: 100%; height: 100%; object-fit: cover; }
.materials-body h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 2rem; }
.materials-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.materials-list li { display: flex; align-items: flex-start; gap: 0.75rem; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.materials-list .bullet { color: var(--coral); font-size: 1.1rem; margin-top: 0.1rem; flex-shrink: 0; }

/* ── ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.acc-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.acc-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.125rem 1.5rem; text-align: left;
  font-size: 1rem; font-weight: 700; color: var(--text);
  transition: color 0.2s; font-family: inherit;
}
.acc-btn:hover { color: var(--coral); }
.acc-chevron {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--coral);
  transition: transform 0.3s;
}
.acc-item.open .acc-chevron { transform: rotate(180deg); }
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc-body.open { max-height: 400px; }
.acc-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem; color: var(--muted); line-height: 1.8;
}
.acc-inner ul { list-style: disc; padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; }

/* ── REVIEWS ── */
.rating-pill {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--card); border: 1px solid var(--border);
  padding: 0.625rem 1.25rem; border-radius: 9999px; margin-bottom: 3rem;
}
.rating-num { font-size: 1.25rem; font-weight: 900; color: var(--text); }
.stars { color: var(--coral); font-size: 1.1rem; letter-spacing: 0.1em; }
.rating-label { font-size: 0.75rem; color: var(--muted); }
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-left: 4px solid var(--coral);
  border-radius: var(--radius); padding: 1.5rem;
  display: flex; flex-direction: column;
}
.review-card .stars { font-size: 1rem; margin-bottom: 1rem; }
.review-card blockquote { color: var(--text); font-style: italic; font-size: 0.9rem; line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.reviewer-date { font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

/* ── VENUE ── */
.venue-map {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); height: 260px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem; gap: 0.5rem;
}
.venue-map svg { color: var(--coral); width: 28px; height: 28px; margin-bottom: 0.5rem; }
.venue-map .venue-name { font-weight: 700; font-size: 1.1rem; color: var(--coral); }
.venue-map .venue-addr { font-size: 0.875rem; color: var(--muted); }
.venue-map a { color: var(--coral); text-decoration: underline; font-size: 0.875rem; font-weight: 500; margin-top: 0.75rem; display: inline-block; }
.venue-body h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 900; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.venue-addr-text { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 1.5rem; }
.venue-body p { color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }
.venue-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.venue-tag {
  background: var(--card); border: 1px solid var(--border);
  color: var(--muted); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1rem; border-radius: 9999px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--coral); padding: 5rem 1.5rem; text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 5vw, 3rem); font-weight: 900;
  color: #fff; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-note { color: rgba(255,255,255,0.8); font-size: 0.875rem; margin-top: 1rem; margin-bottom: 1.5rem; }
.social-icons { display: flex; justify-content: center; gap: 1.25rem; }
.social-icons a { color: #fff; opacity: 0.85; transition: opacity 0.2s; }
.social-icons a:hover { opacity: 1; }
.social-icons svg { width: 24px; height: 24px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 900; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 1rem;
}
.footer-col a { display: block; color: var(--muted); font-size: 0.875rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-col address { color: var(--muted); font-size: 0.875rem; font-style: normal; line-height: 1.7; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  font-size: 0.75rem; color: var(--muted);
}
.footer-bottom .coral-tag { color: var(--coral); font-style: italic; }

/* Footer logo */
.footer-logo { display: flex; flex-direction: column; line-height: 1; margin-bottom: 1rem; }
.footer-logo .film-con { font-size: 1.2rem; font-weight: 900; font-family: Impact, 'Arial Black', sans-serif; color: var(--text); letter-spacing: -0.02em; }
.footer-logo .coral-rule { display: block; height: 1px; background: var(--coral); width: 100%; margin: 3px 0; }
.footer-logo .hollywood { font-size: 0.45rem; letter-spacing: 0.35em; color: var(--muted); text-transform: uppercase; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 100; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.875rem; color: var(--muted);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  max-width: calc(100vw - 2rem); width: max-content;
}
.cookie-banner.hidden { display: none; }
.cookie-accept {
  background: var(--coral); color: #fff; font-weight: 700;
  padding: 0.375rem 1rem; border-radius: 9999px;
  font-size: 0.8rem; white-space: nowrap; transition: background 0.2s;
}
.cookie-accept:hover { background: var(--coral-dk); }

/* ── RESPONSIVE ── */
@media (min-width: 640px) {
  .email-form { flex-direction: row; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .quotes-grid { grid-template-columns: 1fr 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .btn-submit { display: inline-block; }
  .hamburger { display: none; }
  .mobile-drawer { display: none; }
  .two-col { flex-direction: row; align-items: center; }
  .two-col > * { flex: 1; }
  .about-img-wrap { height: 540px; }
  .materials-img { height: 500px; }
  .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
