/* ═══════════════════════════════════════════════════════════════
   CC - PICTURES | assets/css/main.css
   Full cinematic design stylesheet
═══════════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Bebas+Neue&family=DM+Sans:wght@300;400;500&family=Crimson+Text:ital,wght@0,400;1,400&display=swap');

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --black:         #000000;
  --near-black:    #080808;
  --dark:          #0d0d0d;
  --gold:          #c9a85d;
  --gold-light:    #e2c47e;
  --gold-dark:     #8a6d35;
  --beige:         #b8a890;
  --dust:          #6b5d4f;
  --jungle:        #1a2818;
  --jungle-mid:    #2d3d2a;
  --jungle-bright: #4a6b3e;
  --red-raw:       #7a1f1f;
  --white-dirty:   #e8e0d5;
  --text-muted:    #7a7060;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white-dirty);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* ─── GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.08'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
  mix-blend-mode: overlay;
}

/* ─── WP ADMIN BAR OFFSET ─── */
body.admin-bar #ccp-nav { top: 32px; }
body.admin-bar #ccp-lang-bar { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar #ccp-nav { top: 46px; }
  body.admin-bar #ccp-lang-bar { top: 46px; }
}

/* ─── LANGUAGE SELECTOR ─── */
#ccp-lang-bar {
  position: fixed;
  top: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(to left, rgba(0,0,0,0.85), transparent);
}

#lang-current {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border: 1px solid rgba(201,168,93,0.3);
  transition: all 0.3s;
  user-select: none;
}
#lang-current:hover { border-color: var(--gold); background: rgba(201,168,93,0.08); }
#lang-current .arrow { display: inline-block; transition: transform 0.3s; font-size: 0.6rem; }
#lang-current.open .arrow { transform: rotate(180deg); }

#lang-dropdown {
  position: absolute;
  top: calc(100% - 10px);
  right: 20px;
  background: rgba(8,8,8,0.97);
  border: 1px solid rgba(201,168,93,0.25);
  min-width: 165px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
#lang-dropdown.visible { display: flex; }

.lang-option {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--beige);
  padding: 9px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lang-option:last-child { border-bottom: none; }
.lang-option:hover { background: rgba(201,168,93,0.1); color: var(--gold); }
.lang-option.active { color: var(--gold); }
.lang-option .flag { font-size: 1rem; }
.lang-coming {
  font-size: 0.58rem;
  color: var(--dust);
  margin-left: auto;
  font-style: italic;
  letter-spacing: 0;
  opacity: 0.7;
}

/* ─── NAVIGATION ─── */
#ccp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.6s;
}
#ccp-nav.scrolled { background: rgba(0,0,0,0.92); backdrop-filter: blur(8px); }

.ccp-nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ccp-nav-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.ccp-nav-logo .logo-text span { color: var(--white-dirty); opacity: 0.6; }

/* WP Custom Logo */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { height: 36px; width: auto; }

/* ─── CONTAINER ─── */
.ccp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

section { position: relative; overflow: hidden; }

/* ═══════════════════════════════════════════════════════════
   HERO — VIDEO HINTERGRUND
   Verwaltet via: Customizer → CC Pictures → Hero
═══════════════════════════════════════════════════════════ */
#ccp-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.5) brightness(0.6);
  background-color: var(--jungle);
  z-index: 0;
}

/* Fallback-Bild: standardmäßig versteckt, nur sichtbar wenn kein Video */
#hero-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(0.4) brightness(0.55);
  z-index: 0;
  display: none;
}
#hero-video-fallback.hero-fallback-visible {
  display: block;
}

/*
 * ── YOUTUBE IFRAME HINTERGRUND ────────────────────────────────
 * Vollbild-Technik: iframe immer mindestens 177.78 vh breit
 * und mindestens 56.25 vw hoch — zentriert — overflow hidden.
 * pointer-events: none verhindert Klicks auf den iframe.
 */
/*
 * ── YOUTUBE IFRAME VOLLBILD-HINTERGRUND ───────────────────────
 *
 * Technik: max() wählt automatisch den größeren der beiden Werte.
 *
 *   Breite  = max(100vw, 177.78vh)
 *   Höhe    = max(100vh, 56.25vw)
 *
 * → Ist der Container breiter als 16:9: Breite = 100vw, Höhe skaliert mit
 * → Ist der Container schmaler als 16:9: Höhe = 100vh, Breite skaliert mit
 * → Das Video füllt IMMER den gesamten Hero, ohne schwarze Balken.
 *
 * Das Wrapper-div klemmt den überstehenden Bereich via overflow:hidden ab.
 */
#hero-yt-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.82;
  filter: saturate(0.6) brightness(0.9);
}
#hero-yt-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Vollbild-cover-Skalierung für 16:9-Videos */
  width:  max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

/* Admin-Hinweis wenn gar kein Video/Bild konfiguriert */
.hero-setup-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}
.hero-setup-hint a {
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-decoration: none;
  opacity: .7;
  pointer-events: all;
  border: 1px solid rgba(201,168,93,.3);
  padding: 8px 16px;
  transition: all .3s;
}
.hero-setup-hint a:hover { opacity: 1; border-color: var(--gold); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.25) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
}

#particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: ccp-float var(--dur) ease-in-out var(--delay) infinite;
}
@keyframes ccp-float {
  0%   { opacity: 0; transform: translateY(0) translateX(0); }
  20%  { opacity: 0.4; }
  80%  { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-120px) translateX(var(--dx)); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.hero-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: ccp-fadeUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.04em;
  color: var(--white-dirty);
  margin-bottom: 20px;
  opacity: 0;
  animation: ccp-fadeUp 1s ease 0.8s forwards;
}
.hero-title .line-gold { color: var(--gold); display: block; }

.hero-sub {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--beige);
  margin-bottom: 48px;
  opacity: 0;
  animation: ccp-fadeUp 1s ease 1.1s forwards;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.trailer-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: 1px solid rgba(201,168,93,0.5);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.4s;
  opacity: 0;
  animation: ccp-fadeUp 1s ease 1.4s forwards;
  position: relative;
  overflow: hidden;
}
.trailer-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.trailer-btn:hover::before { transform: scaleX(1); }
.trailer-btn:hover { color: var(--black); border-color: var(--gold); }

.play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent currentColor;
  flex-shrink: 0;
}

.scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: ccp-fadeIn 1s ease 2s forwards;
}
.scroll-hint span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--dust);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: ccp-scrollPulse 2s ease-in-out infinite;
}
@keyframes ccp-scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ─── SECTION 1 — INTRO ─── */
#ccp-intro {
  padding: 140px 0 120px;
  background: var(--dark);
}

.intro-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--white-dirty);
  max-width: 820px;
  margin: 0 auto 60px;
  text-align: center;
}
.intro-quote em { color: var(--gold); font-style: italic; }

.intro-divider {
  width: 80px; height: 1px;
  background: var(--gold);
  margin: 40px auto;
  opacity: 0.5;
}

.intro-body {
  font-family: 'Crimson Text', serif;
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--beige);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2 — DSCHUNGEL
   Bild: Customizer → CC Pictures → Dschungel → Hintergrundbild
═══════════════════════════════════════════════════════════ */
#ccp-dschungel {
  padding: 260px 0;
  position: relative;
  background-color: var(--jungle);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#ccp-dschungel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 9, 0.72),
    radial-gradient(ellipse at 20% 50%, rgba(74,107,62,0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
#ccp-dschungel .ccp-container { position: relative; z-index: 1; }

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--jungle-bright);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--white-dirty);
  margin-bottom: 48px;
}

.dschungel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.jungle-block {
  border-left: 2px solid rgba(74,107,62,0.5);
  padding-left: 28px;
}
.jungle-block h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--jungle-bright);
  margin-bottom: 12px;
}
.jungle-block p {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--beige);
  opacity: 0.9;
}

.fog-layer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(13,13,13,0.9), transparent);
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3 — MACHT & GEWALT
   Video: Customizer → CC Pictures → Macht → Hintergrundvideo
═══════════════════════════════════════════════════════════ */
#ccp-macht {
  padding: 160px 0;
  position: relative;
  background-color: var(--near-black);
}

#macht-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.2) brightness(0.5) contrast(1.2);
  z-index: 0;
}

#macht-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: saturate(0.2) brightness(0.45);
  z-index: 0;
  display: none;
}

#ccp-macht::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    rgba(5, 3, 3, 0.65),
    radial-gradient(ellipse at 50% 100%, rgba(122,31,31,0.15) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
#ccp-macht .ccp-container { position: relative; z-index: 2; }

.tension-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--red-raw), transparent);
  animation: ccp-tensionPulse 3s ease-in-out infinite;
  z-index: 3;
}
@keyframes ccp-tensionPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.macht-keywords {
  display: flex;
  gap: 40px;
  margin: 48px 0;
  flex-wrap: wrap;
}
.keyword {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  letter-spacing: 0.08em;
  color: var(--red-raw);
  animation: ccp-glitch 4s infinite;
}
.keyword:nth-child(2) { animation-delay: 1.3s; color: var(--dust); }
.keyword:nth-child(3) { animation-delay: 2.6s; color: var(--gold-dark); }

@keyframes ccp-glitch {
  0%, 90%, 100% { text-shadow: none; }
  91% { text-shadow: 2px 0 var(--red-raw), -2px 0 var(--jungle-bright); }
  92% { text-shadow: -2px 0 var(--red-raw), 2px 0 var(--jungle-bright); }
  93% { text-shadow: none; }
  94% { text-shadow: 1px 0 var(--gold), -1px 0 var(--red-raw); }
  95% { text-shadow: none; }
}

.macht-text {
  font-family: 'Crimson Text', serif;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--beige);
  max-width: 600px;
  opacity: 0.85;
}

/* ─── SECTION 4 — SYSTEM OHNE REGELN ─── */
#ccp-system {
  padding: 140px 0;
  background: var(--dark);
  position: relative;
}

.broken-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: auto auto;
  gap: 40px;
  margin-top: 60px;
}

.broken-block {
  padding: 36px;
  border: 1px solid rgba(201,168,93,0.1);
  position: relative;
  transition: border-color 0.4s;
}
.broken-block:hover { border-color: rgba(201,168,93,0.3); }

.broken-block:nth-child(2) {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(201,168,93,0.03);
  border-color: rgba(201,168,93,0.15);
  margin-top: 60px;
}
.broken-block h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.broken-block p {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--beige);
  opacity: 0.75;
}
.broken-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: rgba(201,168,93,0.08);
  position: absolute;
  bottom: 10px; right: 16px;
  line-height: 1;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5 — ÄSTHETIK
   Bild: Customizer → CC Pictures → Ästhetik → Hintergrundbild
═══════════════════════════════════════════════════════════ */
#ccp-aesthetik {
  padding: 540px 0;
  position: relative;
  background-color: #0a0805;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
}
#ccp-aesthetik::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    rgba(8, 6, 3, 0.68),
    radial-gradient(ellipse at 70% 50%, rgba(201,168,93,0.08) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
#ccp-aesthetik .ccp-container { position: relative; z-index: 1; }

.aesthetik-inner { text-align: center; }

.aesthetik-word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.05;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 48px;
}

.dust-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 60px 0;
  flex-wrap: wrap;
}
.dust-item { text-align: center; }
.dust-item .icon { font-size: 1.6rem; margin-bottom: 12px; opacity: 0.7; }
.dust-item span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--dust);
}

.aesthetik-text {
  font-family: 'Crimson Text', serif;
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--beige);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* ─── SECTION 6 — FINAL IMPACT ─── */
#ccp-final {
  padding: 180px 0;
  background: var(--black);
  text-align: center;
  position: relative;
}
#ccp-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,93,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.final-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 8vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: 0.04em;
  color: var(--white-dirty);
  margin-bottom: 48px;
}
.final-big .line { display: block; }
.final-big .accent { color: var(--gold); }

.final-welcome {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* ─── FILM PROMO BLOCK ─── */
#ccp-film {
  padding: 140px 0;
  background: var(--near-black);
  position: relative;
}

.film-poster {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.poster-visual {
  position: relative;
  aspect-ratio: 2/3;
  background: var(--jungle);
  overflow: hidden;
  cursor: pointer;
}
.poster-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,168,93,0.1) 0%, transparent 50%, rgba(26,40,24,0.4) 100%);
  z-index: 1;
}
.poster-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,93,0.25);
  z-index: 2;
  transition: border-color 0.4s;
}
.poster-visual:hover::after { border-color: rgba(201,168,93,0.7); }

.poster-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.35) brightness(0.7);
  transition: transform 8s ease, filter 0.6s;
}
.poster-visual:hover .poster-bg { transform: scale(1.04); filter: saturate(0.55) brightness(0.8); }

.poster-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a2818 0%, #0d0d0d 40%, #2d1a0a 100%);
}
.poster-placeholder-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-align: center;
}
.poster-placeholder-sub {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  color: var(--beige);
  opacity: 0.6;
  margin-top: 12px;
  font-size: 1rem;
  text-align: center;
}

.poster-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border: 1.5px solid rgba(201,168,93,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  backdrop-filter: blur(4px);
  background: rgba(0,0,0,0.3);
  z-index: 3;
}
.poster-visual:hover .poster-play {
  transform: translate(-50%, -50%) scale(1.1);
  border-color: var(--gold);
  background: rgba(201,168,93,0.15);
}
.poster-play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 4px;
}

.poster-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}
.poster-film-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 8px;
}
.poster-film-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white-dirty);
  line-height: 1.1;
}
.poster-film-sub {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  color: var(--beige);
  font-size: 0.95rem;
  margin-top: 4px;
}

.film-info .section-label { color: var(--gold-dark); }
.film-info .section-title { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 24px; }

.film-tagline {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 32px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.film-desc {
  font-family: 'Crimson Text', serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--beige);
  opacity: 0.8;
  margin-bottom: 40px;
}

.film-meta {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.meta-item dt {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--dust);
  margin-bottom: 4px;
}
.meta-item dd {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--white-dirty);
  font-weight: 500;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  padding: 16px 36px;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
}
.cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── FOOTER ─── */
#ccp-footer {
  padding: 60px 40px;
  background: var(--black);
  border-top: 1px solid rgba(201,168,93,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: var(--gold);
}
.footer-logo span { color: var(--white-dirty); opacity: 0.4; }

.footer-social { display: flex; gap: 24px; }
.footer-social a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--dust);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

.footer-copy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  color: var(--dust);
  opacity: 0.5;
}

/* ─── MODAL ─── */
#ccp-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
#ccp-modal.active { display: flex; }

.modal-inner {
  position: relative;
  width: 90vw;
  max-width: 900px;
  aspect-ratio: 16/9;
}
.modal-inner iframe,
.modal-inner video {
  width: 100%; height: 100%;
  border: 1px solid rgba(201,168,93,0.2);
}

.modal-placeholder {
  width: 100%; height: 100%;
  background: var(--jungle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid rgba(201,168,93,0.2);
}
.modal-placeholder p {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0.6;
}
.modal-placeholder .big-play {
  width: 80px; height: 80px;
  border: 2px solid rgba(201,168,93,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-placeholder .big-play::after {
  content: '';
  display: block;
  width: 0; height: 0;
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent var(--gold);
  margin-left: 6px;
}

.modal-close {
  position: absolute;
  top: -48px; right: 0;
  background: none;
  border: 1px solid rgba(201,168,93,0.3);
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.3s;
}
.modal-close:hover { background: rgba(201,168,93,0.1); border-color: var(--gold); }

/* ─── HR DIVIDER ─── */
.hr-gold {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.2;
  margin: 0;
  border: none;
  display: block;
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── KEYFRAMES ─── */
@keyframes ccp-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ccp-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  #ccp-nav { padding: 16px 20px; }
  .ccp-container { padding: 0 20px; }
  .dschungel-grid { grid-template-columns: 1fr; gap: 36px; }
  .broken-grid { grid-template-columns: 1fr; }
  .broken-block:nth-child(2) { margin-top: 0; grid-row: auto; }
  .film-poster { grid-template-columns: 1fr; gap: 48px; }
  .poster-visual { max-width: 360px; margin: 0 auto; }
  #ccp-footer { flex-direction: column; align-items: flex-start; padding: 40px 20px; }
  .macht-keywords { gap: 20px; }
  #ccp-dschungel, #ccp-aesthetik { background-attachment: scroll; }
  .dust-row { gap: 30px; }
}
