:root{
  --bg:#f5f3ee;
  --fg:#1c1c1c;
  --muted:rgba(28,28,28,.65);
  --line:rgba(28,28,28,.12);
  --card:#ffffff;

  --max:1080px;
  --pad:24px;
  --navh:64px;
  --radius:18px;

  --font: Inter, system-ui, -apple-system, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--fg);
  line-height:1.55;
  letter-spacing:.1px;
}

a{
  color:var(--fg);
  text-decoration:none;
}

a:hover{
  opacity:.75;
}

.link{
  color:var(--fg);
  text-decoration:none;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}

/* =========================
   NAVIGATION
   ========================= */

.nav{
  position:sticky;
  top:0;
  z-index:1000;
  min-height:64px;
  background:rgba(28,28,28,.80);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

.nav-inner{
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand-title{
  color:#ffffff;
  font-size:14px;
  font-weight:500;
  letter-spacing:.3px;
}

.menu{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
}

.menu a{
  color:#ffffff;
  font-size:13px;
  text-decoration:none;
  white-space:nowrap;
}

.menu a:hover{
  opacity:.75;
}

.lang{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
}

.lang a{
  color:#ffffff;
  text-decoration:none;
  opacity:.6;
}

.lang a.active{
  opacity:1;
  font-weight:500;
}

.lang-divider{
  color:#ffffff;
  opacity:.4;
}

/* =========================
   GLOBAL SECTIONS
   ========================= */

section{
  padding:64px 0;
  scroll-margin-top:calc(var(--navh) + 20px);
}

.kicker{
  text-transform:uppercase;
  letter-spacing:1.8px;
  font-size:11px;
  color:var(--muted);
  margin:0 0 14px 0;
}

h1{
  font-size:42px;
  line-height:1.05;
  margin:0 0 18px 0;
  font-weight:500;
  color:var(--fg);
}

h2{
  font-size:26px;
  line-height:1.2;
  margin:0 0 14px 0;
  font-weight:500;
  color:var(--fg);
}

p{
  margin:0 0 14px 0;
  color:var(--muted);
  max-width:72ch;
}

/* =========================
   LAYOUT
   ========================= */

.section-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:32px;
  align-items:start;
}

.copy{
  min-width:0;
}

.side{
  min-width:0;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
}

/* =========================
   FILM INFO / BUTTONS
   ========================= */

.facts{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:6px;
}

.pill{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:7px 10px;
  border-radius:999px;
}

.cta-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--fg);
  font-size:13px;
  white-space:nowrap;
}

.btn.primary{
  background:var(--fg);
  color:var(--bg);
  border-color:transparent;
  font-weight:600;
}

/* =========================
   VIDEO / CENTERED SECTIONS
   ========================= */

.video{
  margin-top:20px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:#1b1b1d;
  aspect-ratio:16/9;
  width:95vw;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}

.video iframe{
  width:100%;
  height:100%;
  display:block;
}

.trailer-center{
  text-align:center;
  max-width:100%;
  margin:auto;
}

.synopsis-center{
  text-align:center;
  max-width:720px;
  margin:auto;
}

.quote-block{
  max-width:720px;
  margin:40px auto;
}

.quote-text{
  font-size:18px;
  line-height:1.6;
  color:var(--fg);
  margin-bottom:8px;
}

.quote-author{
  text-align:right;
  color:var(--muted);
  font-size:14px;
}

/* =========================
   IMAGE BLOCKS
   ========================= */

.top-image{
  padding-top:30px;
  padding-bottom:34px;
}

.between-image{
  padding-top:0;
  padding-bottom:34px;
}

.full-bleed{
  margin:0;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:#1b1b1d;
}

.full-bleed img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

/* =========================
   TERMINE TABLE
   ========================= */

.mini-table{
  margin-top:14px;
   text-align: right;
  align-items: center;
}

.mini-table .row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  border-bottom:1px solid var(--line);
  padding:10px 0;
  color:var(--muted);
  font-size:14px;
 
}

.mini-table .row span:first-child{
  color:var(--fg);
}


.press-wide-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;

  margin-top:32px;        /* gleicher Abstand wie Grid */
  max-width:1040px;       /* etwas schmäler als wrap (1080px) */
  margin-left:auto;
  margin-right:auto;
}

.press-head{
  max-width:820px;
  margin:0 auto 28px auto;
  text-align:center;
}

.press-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.press-thumb{
  display:block;
  border-radius:14px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#f0ede6;
}

.press-thumb img{
  display:block;
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  transition:transform .2s ease, opacity .2s ease;
}

.press-thumb:hover img{
  transform:scale(1.02);
  opacity:.96;
}

@media (max-width:900px){
  .press-gallery{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:600px){
  .press-wide-card{
    padding:20px;
  }

  .press-gallery{
    grid-template-columns:1fr;
  }
}

/* =========================
   CREDITS
   ========================= */

#credits{
  padding-top:80px;
  padding-bottom:80px;
}

.credits-center{
  text-align:center;
}

.credits-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px 40px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

.credit{
  text-align:center;
}

.credit-role{
  font-weight:600;
  margin-bottom:6px;
  color:var(--fg);
}

.credit-name{
  color:var(--muted);
  line-height:1.6;
}

.cast-block{
  margin-top:60px;
  text-align:center;
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

.cast-block .credit-role{
  font-weight:600;
  color:var(--fg);
}

.cast-block .credit-name{
  margin-top:30px;
  line-height:1.7;
  color:var(--muted);
}

/* =========================
   FOOTER
   ========================= */

footer{
  padding:26px 0 50px 0;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.footer-right{
  opacity:.9;
}






/* =========================
   RESPONSIVE
   ========================= */

@media (max-width:900px){
  .nav{
    min-height:88px;
  }

  .nav-inner{
    min-height:88px;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:10px 0;
  }

  .brand{
    display:none;
  }

  .menu{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
  }

  .menu a{
    font-size:13px;
    line-height:1.2;
  }

  .lang{
    display:flex;
    justify-content:center;
    width:100%;
    font-size:13px;
  }

  h1{
    font-size:34px;
  }

  section{
    padding:52px 0;
  }

  .section-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:700px){
  .credits-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .video{
    width:94vw;
  }

  .menu{
    gap:10px;
  }

  .menu a{
    font-size:12px;
  }
}

/* Mobile top navigation buttons */

.mobile-top-nav{
  display:none;
}

@media (max-width:900px){
  .mobile-top-nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    padding-top:16px;
    padding-bottom:8px;
  }

  .mobile-top-nav .btn{
    position:relative;
    top:3px;
  }
}