/* =====================================================================
   ALJOVIĆ — Personal / Director & Photographer
   Static prototype. Reuses the ALV Studio design system
   (palette, typography, motion) in a calmer, editorial key.
   ===================================================================== */

:root {
  --ink:    #0A0807;
  --ink-2:  #14110F;
  --bone:   #E8DDC8;
  --bone-2: #BAA98A;
  --dim:    #8A7E66;
  --rule:   rgba(232,221,200,.10);
  --rule-2: rgba(232,221,200,.18);
  --gold:   #C9A96E;
  --blood:  #A03028;
  --serif:  'Cormorant Garamond', 'Times New Roman', serif;
  --sans:   'Inter Tight', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --mono:   'JetBrains Mono', 'Courier New', monospace;
  /* editorial rhythm — more air than the studio site */
  --gutter: 72px;
  --maxw:   1500px;
}

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

html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; display: block; }

/* ===== Utility ===== */
.serif  { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.mono   { font-family: var(--mono); font-weight: 400; letter-spacing: .14em; text-transform: uppercase; font-size: 11px; }
.gold   { color: var(--gold); }
.blood  { color: var(--blood); }
.dim    { color: var(--dim); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 var(--gutter); }

.section-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.section-tag::before { content: ""; width: 40px; height: 1px; background: var(--gold); }

section { padding: 140px 0; position: relative; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  margin-bottom: 72px; flex-wrap: wrap;
}
.section-head .title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 5.4vw, 84px); line-height: 1;
  color: var(--bone); letter-spacing: -.01em;
}
.section-head .title em { font-style: italic; color: var(--gold); font-weight: 300; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 84px; z-index: 100;
  display: flex; align-items: center;
  padding: 0 var(--gutter);
  background: rgba(10,8,7,0);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.nav.scrolled {
  background: rgba(10,8,7,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--rule);
}
.nav .logo {
  display: flex; flex-direction: column; gap: 2px; flex: 0 0 auto; line-height: 1;
}
.nav .logo .word {
  font-family: var(--serif); font-weight: 500; font-size: 26px;
  letter-spacing: .14em; color: var(--bone);
}
.nav .logo .role {
  font-family: var(--mono); font-size: 8px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--gold);
}
.nav ul {
  list-style: none; display: flex; gap: 40px; margin-left: auto;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--bone-2);
}
.nav ul a { position: relative; padding-bottom: 4px; }
.nav ul a:hover { color: var(--bone); }
.nav ul a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold); transition: right .3s ease;
}
.nav ul a:hover::after { right: 0; }
.nav .cta {
  margin-left: 44px; display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border: 1px solid var(--gold);
  font-family: var(--mono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--bone); flex: 0 0 auto; white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}
.nav .cta:hover { background: var(--gold); color: var(--ink); }
.nav .cta .ar { color: var(--gold); transition: color .25s ease; }
.nav .cta:hover .ar { color: var(--ink); }
.nav-toggle { display: none; }

@media (max-width: 1180px) {
  .nav { padding: 0 28px; height: 68px; }
  .nav ul, .nav .cta { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    margin-left: auto; padding: 8px; cursor: pointer; background: none; border: none;
  }
  .nav-toggle span { width: 24px; height: 1px; background: var(--bone); display: block; }
}

/* ===== Mobile drawer ===== */
.drawer {
  position: fixed; inset: 0; background: var(--ink); z-index: 150;
  display: none; flex-direction: column; padding: 100px 32px 40px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.drawer.open { transform: translateX(0); display: flex; }
.drawer ul { list-style: none; display: flex; flex-direction: column; gap: 28px; }
.drawer ul a { font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--bone); }
.drawer ul a.studio-link { color: var(--gold); }
.drawer-close {
  position: absolute; top: 18px; right: 24px; background: none; border: none; cursor: pointer;
  font-family: var(--mono); font-size: 11px; letter-spacing: .26em; color: var(--bone);
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 140px var(--gutter) 80px; overflow: hidden; text-align: center;
}
.hero .hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center 30%;
  filter: saturate(.82) contrast(1.02);
}
.hero .hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,8,7,.45) 0%, rgba(10,8,7,.25) 38%, rgba(10,8,7,.6) 76%, rgba(10,8,7,.97) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.91 0 0 0 0 0.86 0 0 0 0 0.78 0 0 0 0.05 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .35; mix-blend-mode: overlay;
}
.hero-inner { position: relative; z-index: 3; width: 100%; max-width: 1100px; }
.hero-pretitle {
  font-family: var(--mono); font-size: 11px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 40px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(72px, 16vw, 230px); line-height: .9; letter-spacing: .02em;
  color: var(--bone);
}
.hero .hero-sub {
  margin: 40px auto 0; max-width: 660px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(19px, 2vw, 25px); line-height: 1.45; color: var(--bone-2);
}
.hero .hero-cta { margin-top: 52px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.hero .hero-tertiary {
  margin-top: 36px; font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--dim);
}
.hero .hero-tertiary a { color: var(--bone-2); border-bottom: 1px solid var(--rule-2); padding-bottom: 2px; }
.hero .hero-tertiary a:hover { color: var(--gold); border-color: var(--gold); }

.hero-bottom {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 36px;
  display: flex; justify-content: space-between; align-items: flex-end; z-index: 3;
  font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--dim);
}
.hero-bottom b { color: var(--bone); font-weight: 500; }
.hero-bottom .scroll { display: inline-flex; flex-direction: column; align-items: flex-end; gap: 12px; color: var(--gold); }
.hero-bottom .scroll .ar { font-size: 18px; animation: bounce 2.5s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(8px); opacity: 1; } }

@media (max-width: 720px) {
  .hero { padding: 120px 24px 64px; }
  .hero-bottom { left: 24px; right: 24px; flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* ===== Buttons ===== */
.btn-line {
  display: inline-flex; align-items: center; gap: 14px; padding: 18px 0;
  border-top: 1px solid var(--rule-2); border-bottom: 1px solid var(--rule-2);
  font-family: var(--mono); font-size: 11px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--bone); transition: color .25s ease, border-color .25s ease; cursor: pointer;
}
.btn-line .ar { color: var(--gold); transition: transform .3s ease; }
.btn-line:hover { color: var(--gold); border-color: var(--gold); }
.btn-line:hover .ar { transform: translateX(8px); }

.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 14px; padding: 20px 34px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  border: 1px solid var(--gold); cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.btn-primary { background: var(--gold); color: var(--ink); }
.btn-primary .ar { color: var(--ink); }
.btn-primary:hover { background: var(--bone); border-color: var(--bone); }
.btn-secondary { background: transparent; color: var(--bone); }
.btn-secondary .ar { color: var(--gold); }
.btn-secondary:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-secondary:hover .ar { color: var(--ink); }

/* ===== Intro / lead block ===== */
.lead-block { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.lead-block .lead-quote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(34px, 4.4vw, 60px); line-height: 1.1; color: var(--bone); letter-spacing: -.005em;
}
.lead-block .lead-quote .accent { color: var(--gold); }
.lead-block .lead-body p { font-size: 17px; line-height: 1.8; color: var(--bone-2); }
.lead-block .lead-body p + p { margin-top: 20px; }
.lead-block .lead-body strong { color: var(--bone); font-weight: 500; }
.signature { display: flex; align-items: center; gap: 24px; margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--rule-2); }
.sig-name { font-family: var(--serif); font-style: italic; font-size: 34px; color: var(--bone); }
.sig-role { font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); line-height: 1.7; }
@media (max-width: 880px) { .lead-block { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Selected Films — editorial index ===== */
.film-index { border-top: 1px solid var(--rule-2); }
.film-row {
  display: grid; grid-template-columns: 64px 1.4fr 1fr auto; gap: 36px; align-items: center;
  padding: 34px 0; border-bottom: 1px solid var(--rule);
  cursor: pointer; transition: padding-left .35s ease, background .35s ease;
}
.film-row:hover { padding-left: 16px; background: linear-gradient(90deg, rgba(201,169,110,.05), transparent 60%); }
.film-row .no { font-family: var(--mono); font-size: 11px; letter-spacing: .22em; color: var(--gold); }
.film-row .title { font-family: var(--serif); font-size: clamp(30px, 3.6vw, 50px); line-height: 1.05; color: var(--bone); }
.film-row .title em { font-style: italic; color: var(--gold); }
.film-row:hover .title { color: var(--gold); }
.film-row .desc { font-size: 14px; line-height: 1.6; color: var(--dim); }
.film-row .tags { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--bone-2); text-align: right; white-space: nowrap; }
.film-row .tags .yr { color: var(--gold); display: block; margin-bottom: 6px; }
@media (max-width: 980px) {
  .film-row { grid-template-columns: 44px 1fr; gap: 14px 18px; }
  .film-row .desc { grid-column: 2 / -1; }
  .film-row .tags { grid-column: 2 / -1; text-align: left; margin-top: 4px; }
}

/* ===== Film cards (poster grid) ===== */
.poster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.poster {
  position: relative; aspect-ratio: 2/3; overflow: hidden;
  border: 1px solid var(--rule); cursor: pointer; display: block;
}
.poster img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .4s ease; filter: saturate(.9); }
.poster:hover img { transform: scale(1.05); filter: saturate(1.05); }
.poster::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,7,0) 40%, rgba(10,8,7,.92) 100%);
}
.poster .cap { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; }
.poster .cap .ttl { font-family: var(--serif); font-size: 30px; color: var(--bone); line-height: 1; }
.poster .cap .meta { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }
@media (max-width: 980px) { .poster-grid { grid-template-columns: repeat(2,1fr); gap: 16px; } }
@media (max-width: 560px) { .poster-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .poster .cap .ttl { font-size: 22px; } }

/* ===== Video grid (music videos / commercial) ===== */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.video-card {
  position: relative; aspect-ratio: 16/9; border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center; overflow: hidden; cursor: pointer;
  background: var(--ink-2); transition: border-color .3s ease;
}
.video-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .55; transition: opacity .4s ease, transform .6s ease; }
.video-card:hover { border-color: var(--gold); }
.video-card:hover img { opacity: .8; transform: scale(1.04); }
.video-card .vc-ttl { position: relative; z-index: 2; font-family: var(--serif); font-style: italic; font-size: 24px; color: var(--bone); text-align: center; padding: 0 16px; }
.video-card .vc-play { position: absolute; z-index: 2; top: 14px; right: 16px; font-family: var(--mono); font-size: 10px; letter-spacing: .22em; color: var(--gold); }
@media (max-width: 980px) { .video-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: 1fr; } }

/* ===== Photography gallery ===== */
.photo-cat { font-family: var(--mono); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin: 0 0 28px; display: flex; align-items: center; gap: 14px; }
.photo-cat::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; grid-auto-flow: dense; margin-bottom: 96px; }
.gallery .ph { position: relative; overflow: hidden; border: 1px solid var(--rule); background: var(--ink-2); min-height: 220px; }
.gallery .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); filter: saturate(.9); }
.gallery .ph:hover img { transform: scale(1.05); }
.gallery .ph.wide { grid-column: span 8; }
.gallery .ph.tall { grid-column: span 4; grid-row: span 2; }
.gallery .ph.std  { grid-column: span 4; }
.gallery .ph.half { grid-column: span 6; }
.gallery .ph.placeholder { display: flex; align-items: center; justify-content: center; }
.gallery .ph.placeholder span { font-family: var(--mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); text-align: center; padding: 24px; }
@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .ph.wide, .gallery .ph.tall, .gallery .ph.std, .gallery .ph.half { grid-column: span 1; grid-row: auto; }
}

/* ===== Story timeline (editorial) ===== */
.timeline { position: relative; max-width: 1040px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: var(--rule-2); transform: translateX(-.5px); }
.tl-item { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 110px; align-items: center; }
.tl-item .tl-media { overflow: hidden; border: 1px solid var(--rule); aspect-ratio: 745/440; }
.tl-item .tl-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.88); transition: transform .8s ease; }
.tl-item:hover .tl-media img { transform: scale(1.04); }
.tl-item .tl-text .yr { font-family: var(--mono); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.tl-item .tl-text h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.2vw, 44px); line-height: 1.05; color: var(--bone); margin-bottom: 18px; }
.tl-item .tl-text p { font-size: 15.5px; line-height: 1.75; color: var(--bone-2); }
.tl-item:nth-child(even) .tl-media { order: 2; }
.tl-item .tl-dot { position: absolute; left: 50%; top: 50%; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); transform: translate(-50%,-50%); box-shadow: 0 0 0 6px var(--ink); }
@media (max-width: 880px) {
  .timeline::before { left: 7px; }
  .tl-item { grid-template-columns: 1fr; gap: 22px; padding-left: 36px; margin-bottom: 64px; }
  .tl-item:nth-child(even) .tl-media { order: 0; }
  .tl-item .tl-dot { left: 7px; top: 8px; transform: translate(-50%,0); }
}

/* ===== Page hero (interior pages) ===== */
.page-hero { padding: 200px var(--gutter) 80px; position: relative; border-bottom: 1px solid var(--rule); }
.page-hero .ph-pre { font-family: var(--mono); font-size: 11px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin-bottom: 28px; }
.page-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 9vw, 150px); line-height: .92; color: var(--bone); letter-spacing: -.01em; }
.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.page-hero .ph-sub { margin-top: 30px; max-width: 680px; font-family: var(--serif); font-style: italic; font-size: clamp(18px, 2vw, 24px); line-height: 1.45; color: var(--bone-2); }

/* ===== Film detail ===== */
.film-detail-hero { position: relative; min-height: 86vh; display: flex; align-items: flex-end; padding: 0 var(--gutter) 72px; overflow: hidden; }
.film-detail-hero .fd-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; filter: saturate(.85); }
.film-detail-hero .fd-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,8,7,.5) 0%, rgba(10,8,7,.2) 40%, rgba(10,8,7,.95) 100%); }
.film-detail-hero .fd-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; width: 100%; }
.film-detail-hero .fd-kicker { font-family: var(--mono); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.film-detail-hero h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 10vw, 160px); line-height: .9; color: var(--bone); }
.film-detail-hero .fd-play { margin-top: 36px; }

.fd-meta-row { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule-2); border-bottom: 1px solid var(--rule-2); }
.fd-meta-row .cell { padding: 36px 28px; border-right: 1px solid var(--rule); }
.fd-meta-row .cell:last-child { border-right: 0; }
.fd-meta-row .k { font-family: var(--mono); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.fd-meta-row .v { font-family: var(--serif); font-size: 24px; color: var(--bone); line-height: 1.2; }
@media (max-width: 880px) { .fd-meta-row { grid-template-columns: 1fr 1fr; } .fd-meta-row .cell:nth-child(2n){ border-right: 0; } }

.fd-body { display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: start; }
.fd-body .synopsis p { font-size: 18px; line-height: 1.85; color: var(--bone-2); }
.fd-body .synopsis p + p { margin-top: 22px; }
.fd-body .synopsis .big { font-family: var(--serif); font-style: italic; font-size: clamp(28px,3.4vw,42px); line-height: 1.15; color: var(--bone); margin-bottom: 36px; }
.fd-credits { border-top: 1px solid var(--rule-2); }
.fd-credits .row { display: flex; justify-content: space-between; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--rule); font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.fd-credits .row .k { color: var(--dim); }
.fd-credits .row .v { color: var(--bone); text-align: right; }
.fd-awards { margin-top: 40px; }
.fd-awards .badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px solid var(--rule-2); font-family: var(--mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--bone-2); margin: 0 8px 8px 0; }
.fd-awards .badge::before { content: "★"; color: var(--gold); }
@media (max-width: 880px) { .fd-body { grid-template-columns: 1fr; gap: 40px; } }

.stills { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.stills .st { overflow: hidden; border: 1px solid var(--rule); aspect-ratio: 16/9; background: var(--ink-2); }
.stills .st img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.stills .st:hover img { transform: scale(1.04); }
.stills .st.full { grid-column: 1 / -1; aspect-ratio: 21/9; }
@media (max-width: 720px){ .stills { grid-template-columns: 1fr; } }

.next-project { border-top: 1px solid var(--rule-2); padding: 80px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.next-project .np-k { font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--dim); margin-bottom: 14px; }
.next-project .np-t { font-family: var(--serif); font-size: clamp(40px,6vw,80px); line-height: 1; color: var(--bone); }
.next-project .np-t em { font-style: italic; color: var(--gold); }
.next-project:hover .np-t { color: var(--gold); }
.next-project .ar { font-size: 40px; color: var(--gold); }

/* ===== Commercial / ALV Studio bridge ===== */
.studio-bridge { background: var(--ink-2); }
.studio-bridge .sb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.studio-bridge .sb-grid .lbl { font-family: var(--serif); font-style: italic; font-size: clamp(34px,4.6vw,60px); line-height: 1.1; color: var(--bone); }
.studio-bridge .sb-grid .lbl em { color: var(--gold); }
.studio-bridge .sb-grid p { font-size: 16px; line-height: 1.8; color: var(--bone-2); margin-bottom: 32px; max-width: 520px; }
@media (max-width: 880px){ .studio-bridge .sb-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ===== Clients ===== */
.clients { background: var(--ink-2); }
.logos { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--rule); border-left: 1px solid var(--rule); }
.logo-cell { height: 132px; background: #F3ECDD; border-bottom: 1px solid rgba(10,8,7,.08); border-right: 1px solid rgba(10,8,7,.08); display: flex; align-items: center; justify-content: center; padding: 24px; transition: background .3s ease; }
.logo-cell:hover { background: #FFF8E8; }
.logo-cell img { max-width: 100%; max-height: 64px; object-fit: contain; mix-blend-mode: multiply; transition: transform .3s ease; }
.logo-cell:hover img { transform: scale(1.04); }
@media (max-width: 980px){ .logos { grid-template-columns: repeat(3,1fr);} }
@media (max-width: 600px){ .logos { grid-template-columns: repeat(2,1fr);} .logo-cell { height: 96px; } }

/* ===== Journal ===== */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.post { border-top: 1px solid var(--rule-2); padding-top: 24px; cursor: pointer; transition: transform .3s ease; }
.post:hover { transform: translateY(-4px); }
.post .img { aspect-ratio: 3/2; margin-bottom: 24px; background-size: cover; background-position: center; filter: saturate(.92); background-color: var(--ink-2); }
.post:hover .img { filter: saturate(1.05); }
.post .meta { font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.post .meta .dim { color: var(--dim); margin-left: 12px; }
.post h3 { font-family: var(--serif); font-weight: 400; font-size: 26px; line-height: 1.18; color: var(--bone); margin-bottom: 14px; }
.post:hover h3 { color: var(--gold); }
.post .lead { font-size: 14px; line-height: 1.6; color: var(--dim); margin-bottom: 20px; }
.post .read { font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--bone); display: inline-flex; gap: 10px; }
.post .read .ar { color: var(--gold); transition: transform .3s ease; }
.post:hover .read .ar { transform: translateX(6px); }
@media (max-width: 880px){ .posts { grid-template-columns: 1fr; } }

/* ===== Contact ===== */
.kontakt { background: radial-gradient(ellipse at 50% 40%, rgba(201,169,110,.10), rgba(10,8,7,0) 60%), var(--ink); text-align: center; padding: 180px 0 80px; }
.kontakt .pre { font-family: var(--mono); font-size: 12px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin-bottom: 36px; }
.kontakt h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(64px, 12vw, 200px); line-height: .95; color: var(--bone); letter-spacing: -.015em; }
.kontakt h2 em { font-style: italic; color: var(--gold); }
.kontakt .sub { margin: 32px auto 0; font-family: var(--serif); font-style: italic; font-size: clamp(19px, 2.2vw, 26px); color: var(--bone-2); max-width: 720px; line-height: 1.4; }

.contact-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 72px; text-align: left; }
.contact-card { border: 1px solid var(--rule-2); padding: 48px 44px; transition: border-color .3s ease; }
.contact-card:hover { border-color: var(--gold); }
.contact-card .cc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.contact-card h3 { font-family: var(--serif); font-size: 34px; color: var(--bone); margin-bottom: 16px; line-height: 1.1; }
.contact-card h3 em { font-style: italic; color: var(--gold); }
.contact-card p { font-size: 15px; line-height: 1.7; color: var(--bone-2); margin-bottom: 24px; }
.contact-card .ln { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: .12em; color: var(--bone); margin-bottom: 8px; }
.contact-card .ln:hover { color: var(--gold); }
@media (max-width: 880px){ .contact-split { grid-template-columns: 1fr; } }

/* ===== Contact form ===== */
.contact-form { max-width: 720px; margin: 64px auto 0; text-align: left; display: grid; gap: 22px; }
.contact-form .fields { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-form label { display: block; font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); margin-bottom: 10px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: transparent; border: 1px solid var(--rule-2); color: var(--bone);
  font-family: var(--sans); font-size: 15px; padding: 16px 18px; transition: border-color .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form .full { grid-column: 1 / -1; }
@media (max-width: 720px){ .contact-form .fields { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
footer { border-top: 1px solid var(--rule-2); padding: 64px 0 36px; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-grid h4 { font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-weight: 400; }
.footer-grid p, .footer-grid a { font-size: 14px; color: var(--bone-2); line-height: 1.7; }
.footer-grid a:hover { color: var(--gold); }
.footer-grid ul { list-style: none; }
.footer-grid .brand-name { font-family: var(--serif); font-size: 30px; letter-spacing: .12em; color: var(--bone); margin-bottom: 6px; }
.footer-grid .brand-role { font-family: var(--mono); font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-grid .brand-tag { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--bone-2); max-width: 320px; line-height: 1.4; }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); flex-wrap: wrap; gap: 16px; }
.footer-bottom a { color: var(--bone-2); }
.footer-bottom a:hover { color: var(--gold); }
@media (max-width: 880px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-grid > div:first-child { grid-column: 1 / -1; } }

/* ===== Video lightbox ===== */
.lightbox { position: fixed; inset: 0; background: rgba(10,8,7,.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); z-index: 500; display: none; align-items: center; justify-content: center; padding: 56px; opacity: 0; transition: opacity .3s ease; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox .frame { position: relative; width: 100%; max-width: 1280px; aspect-ratio: 16/9; background: #000; box-shadow: 0 30px 80px rgba(0,0,0,.6); border: 1px solid rgba(201,169,110,.24); }
.lightbox iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox .close { position: absolute; top: 24px; right: 24px; background: transparent; border: 1px solid var(--gold); color: var(--bone); font-family: var(--mono); font-size: 11px; letter-spacing: .26em; text-transform: uppercase; padding: 14px 22px; cursor: pointer; z-index: 10; transition: background .25s, color .25s; }
.lightbox .close:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 720px){ .lightbox { padding: 24px 16px; } .lightbox .close { padding: 10px 16px; top: 16px; right: 16px; } }

/* ===== Cookie bar ===== */
.cookie { position: fixed; bottom: 16px; left: 16px; right: 16px; z-index: 200; max-width: 720px; margin: 0 auto; background: rgba(20,17,15,.95); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid var(--rule-2); padding: 18px 22px; display: flex; gap: 22px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--bone-2); line-height: 1.5; transition: opacity .3s ease, transform .3s ease; }
.cookie.hide { opacity: 0; pointer-events: none; transform: translateY(40px); }
.cookie a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie .accept { margin-left: auto; font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; padding: 12px 20px; border: 1px solid var(--gold); color: var(--bone); cursor: pointer; background: transparent; transition: background .25s ease, color .25s ease; }
.cookie .accept:hover { background: var(--gold); color: var(--ink); }

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Inline showreel embed ===== */
.reel-embed {
  position: relative; max-width: 1280px; margin: 0 auto; aspect-ratio: 1280 / 540;
  background: #000; border: 1px solid rgba(201,169,110,.24);
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.reel-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel-embed[data-vimeo-facade] { cursor: pointer; background-size: cover; background-position: center; overflow: hidden; }
.reel-embed[data-vimeo-facade]::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,6,5,.18), rgba(8,6,5,.48)); transition: background .3s ease; }
.reel-embed[data-vimeo-facade]:hover::after { background: linear-gradient(180deg, rgba(8,6,5,.06), rgba(8,6,5,.32)); }
.reel-embed .reel-play {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 92px; height: 92px; border-radius: 50%; padding-left: 6px;
  background: rgba(8,6,5,.45); border: 1px solid var(--gold); color: var(--bone);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.reel-embed[data-vimeo-facade]:hover .reel-play { background: var(--gold); color: var(--ink); transform: translate(-50%,-50%) scale(1.06); }
.reel-embed.playing::after, .reel-embed.playing .reel-play { display: none; }

/* ===== Portfolio gallery (Fotografia) ===== */
.pf-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.pf-filters button {
  background: transparent; border: 1px solid var(--rule-2); color: var(--bone-2); cursor: pointer;
  font-family: var(--mono); font-size: 10px; letter-spacing: .26em; text-transform: uppercase;
  padding: 12px 22px; transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.pf-filters button:hover { border-color: var(--gold); color: var(--bone); }
.pf-filters button.active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
/* row-major masonry (pozycjonowany JS-em w site.js) */
.pf-grid { position: relative; --pf-cols: 3; --pf-gap: 22px; }
.pf-tile {
  position: relative; overflow: hidden; display: block;
  border: 1px solid var(--rule); background: var(--ink-2);
}
.pf-grid.pf-ready .pf-tile { position: absolute; top: 0; left: 0; margin: 0; }
.pf-tile img { width: 100%; height: auto; display: block; transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .4s ease; filter: saturate(.9); }
.pf-tile:hover img { transform: scale(1.05); filter: saturate(1.05); }
.pf-tile::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,8,7,0) 48%, rgba(10,8,7,.88) 100%);
}
.pf-tile .cap { position: absolute; left: 20px; right: 20px; bottom: 18px; z-index: 2; }
.pf-tile .cap .ttl { font-family: var(--serif); font-size: 26px; color: var(--bone); line-height: 1.05; display: block; }
.pf-tile .cap .meta { font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: 8px; display: block; }
.pf-tile.hidden { display: none; }
@media (max-width: 980px) { .pf-grid { --pf-cols: 2; --pf-gap: 14px; } }
@media (max-width: 560px) { .pf-grid { --pf-cols: 1; } }
/* kursor łapki na klikalnych kadrach (galeria projektu + kadry z filmu) */
[data-img] { cursor: pointer; }

/* Lista obsady na stronie filmu — jeden pod drugim */
.cast-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.cast-list li { font-family: var(--serif); font-size: 19px; line-height: 1.3; color: var(--bone); padding: 11px 0; border-bottom: 1px solid var(--rule); }

/* Plakat w hero strony filmu (wzorem z aktualnej aljovich.com) */
.film-detail-hero .fd-inner { display: flex; align-items: flex-end; gap: clamp(32px, 4vw, 60px); }
.fd-poster { flex: 0 0 auto; width: clamp(230px, 25vw, 350px); line-height: 0; }
.fd-poster img { width: 100%; height: auto; display: block; border: 1px solid var(--rule-2); box-shadow: 0 24px 60px rgba(0,0,0,.55); }
.fd-inner-text { min-width: 0; }
.fd-desc { max-width: 620px; margin-top: 26px; font-family: var(--serif); font-style: italic; font-size: clamp(18px, 1.9vw, 24px); line-height: 1.5; color: var(--bone); }
@media (max-width: 720px) {
  .film-detail-hero .fd-inner { gap: 22px; align-items: flex-end; flex-wrap: wrap; }
  .fd-poster { width: 150px; }
  .fd-desc { font-size: 17px; }
}

/* ===== Film slider (Fabuła & dokument) ===== */
.film-slider-wrap { position: relative; }
.film-slider {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none; padding-bottom: 8px;
}
.film-slider::-webkit-scrollbar { display: none; }
.film-slider .poster { flex: 0 0 clamp(240px, 26vw, 360px); scroll-snap-align: start; }
.slider-nav { display: flex; gap: 10px; }
.slider-nav button {
  background: transparent; border: 1px solid var(--rule-2); color: var(--gold); cursor: pointer;
  width: 52px; height: 52px; font-size: 20px; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.slider-nav button:hover { border-color: var(--gold); background: var(--gold); color: var(--ink); }

/* ===== Image lightbox mode ===== */
.lightbox .frame img#lightbox-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; display: none; }
.lightbox.img-mode .frame img#lightbox-img { display: block; }
.lightbox.img-mode .frame iframe { display: none; }
.lightbox.img-mode .frame { background: rgba(0,0,0,.4); border-color: transparent; box-shadow: none; aspect-ratio: auto; height: 100%; max-width: 1500px; }

/* ==========================================================
   DESIGN ELEVATION — v2
   Warstwa nadpisań: ten sam kierunek (ciemny, filmowy),
   ale lżejsza typografia, więcej oddechu, płynniejszy ruch.
   ========================================================== */

:root {
  --gutter: 88px;
  --maxw: 1560px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --gold: #CBA96A;
  --gold-soft: #D9BE86;
  --bone: #ECE3D2;
  --bone-2: #D3C6A9;   /* jaśniejszy tekst poboczny — lepsza czytelność */
  --dim:   #A6977D;    /* jaśniejszy tekst przygaszony */
  --ink: #080605;
  --ink-2: #100D0B;
}

body { font-size: 16.5px; letter-spacing: .002em; }

/* więcej powietrza między sekcjami */
section { padding: clamp(96px, 12.5vh, 190px) 0; }

/* delikatniejsze linie i etykiety */
.section-tag { letter-spacing: .34em; font-size: 10.5px; margin-bottom: 34px; }
.section-tag::before { width: 54px; opacity: .85; }

/* ---- Typografia display: lżejsza, dostojniejsza ---- */
.hero h1,
.section-head .title,
.page-hero h1,
.kontakt h2,
.film-detail-hero h1 { font-weight: 400; letter-spacing: -.018em; }
.section-head .title em, .page-hero h1 em { font-weight: 400; }

/* ---- HERO ---- */
.hero { text-align: left; align-items: center; justify-content: flex-start; }
.hero-inner {
  margin: 0;
  max-width: 1180px;
}
.hero-pretitle {
  display: inline-flex; align-items: center; gap: 18px;
  letter-spacing: .46em; margin-bottom: 30px;
}
.hero-pretitle::before { content: ""; width: 52px; height: 1px; background: var(--gold); opacity: .8; }
.hero h1 { font-size: clamp(46px, 8vw, 118px); line-height: .98; }
.hero .hero-sub { margin-left: 0; margin-right: 0; max-width: 640px; font-size: clamp(19px, 2vw, 26px); color: var(--bone); font-weight: 500; }
/* subtytuły podstron — czytelniejsze */
.page-hero .ph-sub, .kontakt .sub { color: var(--bone); font-weight: 500; }
.hero-cta { justify-content: flex-start; margin-top: 46px; }
.hero-tertiary { letter-spacing: .28em; }

/* subtelniejszy, głębszy overlay — bardziej kinowy */
.hero .hero-overlay {
  background:
    radial-gradient(120% 90% at 72% 32%, rgba(8,6,5,0) 0%, rgba(8,6,5,.30) 58%, rgba(8,6,5,.82) 100%),
    linear-gradient(180deg, rgba(8,6,5,.5) 0%, rgba(8,6,5,.12) 42%, rgba(8,6,5,.72) 80%, rgba(8,6,5,.99) 100%);
}
.hero .hero-bg { filter: saturate(1.08) contrast(1.03) brightness(1.05); background-position: center 58%; transform: scale(1.06); animation: heroZoom 18s ease-out both; }
@keyframes heroZoom { from { transform: scale(1.14); } to { transform: scale(1.02); } }

/* wejście strony — elementy hero wjeżdżają miękko */
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero-pretitle { animation: rise 1s var(--ease) both; }
.hero h1 { animation: rise 1.15s .12s var(--ease) both; }
.hero-sub { animation: rise 1s .3s var(--ease) both; }
.hero-cta { animation: rise 1s .44s var(--ease) both; }
.hero-tertiary { animation: rise 1s .56s var(--ease) both; }
.hero-bottom { animation: rise 1.1s .72s var(--ease) both; }

/* ---- Przyciski: cieńsze, z płynnym wypełnieniem ---- */
.btn-primary, .btn-secondary {
  padding: 20px 42px; font-size: 10.5px; letter-spacing: .36em;
  transition: color .4s var(--ease), border-color .4s var(--ease), background-color .4s var(--ease);
}
.btn-secondary { background: transparent; color: var(--bone); }
.btn-secondary:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-secondary:hover .ar { color: var(--ink); }
.btn-primary:hover { background: var(--bone); border-color: var(--bone); }

/* ---- Nav: subtelniejszy ---- */
.nav { height: 92px; }
.nav.scrolled { background: rgba(8,6,5,.7); }
.nav ul { gap: 44px; font-size: 10.5px; letter-spacing: .26em; }
.nav .cta { padding: 13px 24px; }

/* ---- Page-hero (podstrony): więcej oddechu ---- */
.page-hero { padding: clamp(150px, 22vh, 240px) var(--gutter) clamp(64px, 8vh, 100px); }
.page-hero .ph-sub { max-width: 720px; }

/* ---- Portfolio: elegantszy hover podpisów ---- */
.pf-tile .cap { transform: translateY(8px); opacity: .85; transition: transform .55s var(--ease), opacity .55s var(--ease); }
.pf-tile:hover .cap { transform: none; opacity: 1; }
.pf-tile img { transition: transform .9s var(--ease), filter .5s ease; filter: saturate(.85) brightness(.94); }
.pf-tile:hover img { transform: scale(1.045); filter: saturate(1.02) brightness(1); }
.pf-tile::after { background: linear-gradient(180deg, rgba(8,6,5,0) 60%, rgba(8,6,5,.22) 82%, rgba(8,6,5,.72) 100%); }

/* ---- Galeria projektu: miękkie kadry ---- */
.gallery .ph img { filter: saturate(.86) brightness(.95); transition: transform .9s var(--ease), filter .5s ease; }
.gallery .ph:hover img { filter: saturate(1.02) brightness(1); }

/* ---- Ruch reveal: płynniejszy, dłuższy ---- */
.reveal { transform: translateY(38px); transition: opacity 1.05s var(--ease), transform 1.05s var(--ease); }

@media (max-width: 720px) {
  .hero-inner { margin-bottom: 120px; }
  .hero-cta { justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pretitle, .hero h1, .hero-sub, .hero-cta, .hero-tertiary, .hero-bottom, .hero .hero-bg { animation: none; }
}

/* ---- Galeria projektu foto: oryginalne proporcje (masonry, bez przycinania) ---- */
.gallery { display: block; columns: 2; column-gap: 20px; grid-template-columns: none; margin-bottom: 0; }
.gallery .ph {
  display: block; break-inside: avoid; -webkit-column-break-inside: avoid;
  margin: 0 0 20px; min-height: 0; cursor: pointer;
  grid-column: auto !important; grid-row: auto !important;
}
.gallery .ph img { width: 100%; height: auto; object-fit: fill; }
@media (max-width: 560px) { .gallery { columns: 1; } }

/* ---- Portfolio filmowe: tytuły jak na stronie fotografii ---- */
.poster::after { background: linear-gradient(180deg, rgba(8,6,5,0) 42%, rgba(8,6,5,.5) 74%, rgba(8,6,5,.92) 100%); }
.poster .cap { transform: translateY(8px); opacity: .85; transition: transform .55s var(--ease), opacity .55s var(--ease); }
.poster:hover .cap { transform: none; opacity: 1; }
.poster .cap .ttl { display: block; font-family: var(--serif); font-size: 24px; line-height: 1.05; color: var(--bone); }
.poster .cap .meta { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }
.poster img { filter: saturate(.85) brightness(.94); transition: transform .9s var(--ease), filter .5s ease; }
.poster:hover img { filter: saturate(1.02) brightness(1); transform: scale(1.045); }

/* ---- Miniatury realizacji komercyjnych (teledyski) — podpis jak w Fotografii ---- */
.video-card { display: block; align-items: initial; justify-content: initial; }
.video-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(8,6,5,0) 46%, rgba(8,6,5,.5) 74%, rgba(8,6,5,.9) 100%);
}
.video-card img { opacity: .78; }
.video-card:hover img { opacity: .95; }
.video-card .vc-cap { position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px; top: auto; }
.video-card .vc-ttl {
  display: block; text-align: left; font-style: normal; font-size: 24px; line-height: 1.05; padding: 0;
  color: var(--bone);
}
.video-card .vc-meta { display: block; margin-top: 8px; font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.video-card .vc-play {
  top: 16px; right: 18px; bottom: auto; left: auto;
  font-family: var(--mono); font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}

/* ---- Slider Fabuła & Dokument: 4 pozycje, boczne strzałki, przeciąganie ---- */
.film-slider { cursor: grab; }
.film-slider.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.film-slider .poster { flex: 0 0 calc((100% - 3 * 24px) / 4); }
.film-slider .poster-soon { cursor: default; }
.film-slider a, .film-slider img { -webkit-user-drag: none; user-select: none; }
.film-slider-wrap { position: relative; }
.film-slider-wrap > .slider-prev,
.film-slider-wrap > .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(8,6,5,.55); border: 1px solid var(--rule-2); color: var(--bone);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; font-size: 20px; line-height: 1; cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.film-slider-wrap > .slider-prev { left: 8px; }
.film-slider-wrap > .slider-next { right: 8px; }
.film-slider-wrap > .slider-prev:hover,
.film-slider-wrap > .slider-next:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
@media (max-width: 980px) { .film-slider .poster { flex: 0 0 clamp(200px, 42vw, 300px); } }
