/* ============================================================
   AVANTURAFF — Redizajn (po uzoru na TFF strukturu)
   Smaragdno-zelena paleta, moderniji/čistiji ton
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* emerald scale */
  --em-950: #022c22;
  --em-900: #064e3b;
  --em-800: #065f46;   /* PRIMARY */
  --em-700: #047857;
  --em-600: #059669;
  --em-500: #10b981;
  --em-400: #34d399;
  --em-300: #6ee7b7;
  --em-100: #d1fae5;
  --em-50:  #ecfdf5;

  /* warm accent (nagrade / CTA naglasak) */
  --gold-600: #c08a2d;
  --gold-500: #d8a544;
  --gold-300: #f0cf8a;

  /* neutrals */
  --ink:    #0d1512;
  --ink-70: #3a4a44;
  --ink-50: #6b7d76;
  --line:   #e3e9e6;
  --paper:  #ffffff;
  --paper-2:#f4f7f5;
  --paper-3:#eaf1ed;

  --font-display: 'Oswald', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --maxw: 1240px;
  --gap: 28px;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 8px rgba(6,40,30,.06);
  --shadow-md: 0 14px 38px -18px rgba(6,40,30,.32);
  --shadow-lg: 0 30px 70px -28px rgba(6,40,30,.45);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

.wrap { width: min(var(--maxw), 92vw); margin-inline: auto; }

/* reveal-on-scroll */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }

/* mobile menu caret */
.mobile-menu .mm-group .caret { float: right; width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: 6px; transition: transform .25s; }
.mobile-menu li.open .mm-group .caret { transform: rotate(225deg); }
.mobile-menu .mm-sub { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.mobile-menu li.open .mm-sub { max-height: 520px; }

/* Section rhythm */
.section { padding: 78px 0; }
.section--tight { padding: 56px 0; }

/* ---------- Section heading (festival label) ---------- */
.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.shead__l { display: flex; align-items: center; gap: 14px; }
.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 13px;
  color: var(--em-700);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); display: inline-block; }
.shead h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .01em;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.02;
  color: var(--ink);
}
.shead h2 em { color: var(--em-700); font-style: normal; }
.shead__link {
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .12em; font-size: 13px; font-weight: 600;
  color: var(--em-800);
  display: inline-flex; align-items: center; gap: 8px;
  padding-bottom: 4px; border-bottom: 2px solid var(--em-200, #a7e3cc);
  transition: gap .25s var(--ease), color .25s;
}
.shead__link:hover { gap: 14px; color: var(--em-600); }

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: var(--em-950);
  color: var(--em-100);
  font-size: 12.5px;
  letter-spacing: .02em;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.topbar__dates { display: inline-flex; align-items: center; gap: 9px; font-weight: 500; }
.topbar__dates .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--em-400); box-shadow: 0 0 0 4px rgba(52,211,153,.18); }
.topbar__right { display: flex; align-items: center; gap: 18px; }
.topbar__socials { display: flex; gap: 12px; }
.topbar__socials a { opacity: .85; transition: opacity .2s, transform .2s; }
.topbar__socials a:hover { opacity: 1; transform: translateY(-1px); }
.topbar__lang { display: flex; gap: 6px; align-items: center; }
.topbar__lang button { color: var(--em-300); font-weight: 600; font-size: 11.5px; letter-spacing: .08em; padding: 3px 6px; border-radius: 5px; }
.topbar__lang button.is-on { background: var(--em-700); color: #fff; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s;
}
.header.is-stuck { box-shadow: var(--shadow-sm); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 18px; }

.brand { display: flex; align-items: center; gap: 13px; }
.brand--logo { display: inline-flex; flex: none; gap: 0; }
.brand__logo {
  display: block;
  width: clamp(205px, 18vw, 260px);
  height: auto;
  max-height: 56px;
  object-fit: contain;
}
.brand__mark {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: linear-gradient(145deg, var(--em-700), var(--em-900));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -.02em;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.brand__mark::after { content:""; position:absolute; inset:0; background: radial-gradient(120% 80% at 20% 0%, rgba(255,255,255,.28), transparent 60%); }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__txt b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 18px; color: var(--ink); }
.brand__txt span { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--em-700); font-weight: 600; margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__item { position: relative; }
.nav__link {
  font-family: var(--font-display);
  text-transform: uppercase; letter-spacing: .08em; font-size: 14px; font-weight: 500;
  color: var(--ink-70); padding: 12px 14px; border-radius: 9px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s, background .2s;
}
.nav__link:hover, .nav__item.is-open .nav__link { color: var(--em-800); background: var(--em-50); }
.nav__link.is-active { color: var(--em-800); }
.nav__link .caret { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .25s; }
.nav__item.is-open .nav__link .caret { transform: rotate(225deg) translateY(0); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 248px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all .22s var(--ease); z-index: 20;
}
.nav__item.is-open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px; color: var(--ink-70);
  font-weight: 500; transition: background .18s, color .18s; position: relative;
}
.dropdown a:hover { background: var(--em-50); color: var(--em-800); padding-left: 18px; }

.header__cta { display: flex; align-items: center; gap: 10px; }
.btn {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; font-size: 13px;
  padding: 12px 20px; border-radius: 10px; display: inline-flex; align-items: center; gap: 9px;
  transition: transform .2s var(--ease), box-shadow .25s, background .25s, color .2s;
}
.btn--primary { background: var(--em-800); color: #fff; box-shadow: 0 10px 24px -12px rgba(6,95,70,.7); }
.btn--primary:hover { background: var(--em-700); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(6,95,70,.75); }
.btn--gold { background: var(--gold-500); color: #2c1d00; }
.btn--gold:hover { background: var(--gold-300); transform: translateY(-2px); }
.btn--ghost { border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--outline { border: 1.5px solid var(--em-800); color: var(--em-800); }
.btn--outline:hover { background: var(--em-800); color: #fff; }

.burger { display: none; width: 44px; height: 44px; border-radius: 10px; place-items: center; }
.burger span { width: 22px; height: 2px; background: var(--ink); display: block; position: relative; transition: .25s; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); transition: .25s; }
.burger span::before { top: -7px; } .burger span::after { top: 7px; }
.burger.is-on span { background: transparent; }
.burger.is-on span::before { top: 0; transform: rotate(45deg); }
.burger.is-on span::after { top: 0; transform: rotate(-45deg); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero { position: relative; height: clamp(560px, 82vh, 760px); overflow: hidden; background: var(--em-950); }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s; 
}
.hero__slide.is-active { opacity: 1; visibility: visible; }
.hero__slide image-slot { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__slide::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(2,44,34,.92) 0%, rgba(2,44,34,.62) 42%, rgba(2,44,34,.18) 78%, rgba(2,44,34,.35) 100%),
    linear-gradient(0deg, rgba(2,44,34,.7), transparent 55%);
}
.hero__inner { position: relative; z-index: 5; height: 100%; display: flex; align-items: center; }
.hero__content { max-width: 660px; color: #fff; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px;
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .22em; font-size: 13px; font-weight: 500;
  color: var(--em-300); background: rgba(16,185,129,.12); border: 1px solid rgba(52,211,153,.3);
  padding: 8px 16px; border-radius: 100px; backdrop-filter: blur(4px);
}
.hero__tag .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--em-400); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(52,211,153,.6);} 50%{ box-shadow: 0 0 0 7px rgba(52,211,153,0);} }
.hero__content h1 {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(40px, 7vw, 84px); line-height: .94; letter-spacing: -.01em; margin-bottom: 8px;
}
.hero__content h1 .ed { color: var(--em-400); }
.hero__sub { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.85); max-width: 520px; margin: 18px 0 30px; }
.hero__meta { display: flex; gap: 26px; margin-bottom: 32px; flex-wrap: wrap; }
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--font-display); font-size: 26px; font-weight: 600; color: #fff; line-height: 1; }
.hero__meta span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--em-300); margin-top: 6px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__dots { position: absolute; z-index: 6; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 11px; }
.hero__dots button { width: 30px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.32); transition: background .3s, width .3s; }
.hero__dots button.is-on { background: var(--em-400); width: 46px; }
.hero__arrows { position: absolute; z-index: 6; bottom: 28px; right: 6vw; display: flex; gap: 10px; }
.hero__arrows button { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.34); color: #fff; display: grid; place-items: center; transition: .25s; }
.hero__arrows button:hover { background: #fff; color: var(--em-900); border-color: #fff; }
.hero__count { position: absolute; z-index: 6; top: 30px; right: 6vw; font-family: var(--font-display); color: rgba(255,255,255,.6); letter-spacing: .1em; font-size: 14px; }
.hero__count b { color: #fff; font-size: 22px; }

/* ============================================================
   MARQUEE strip
   ============================================================ */
.marquee { background: var(--em-800); color: #fff; overflow: hidden; padding: 14px 0; }
.marquee__track { display: flex; gap: 40px; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: 15px; font-weight: 500; display: inline-flex; align-items: center; gap: 40px; }
.marquee__track span::after { content: "✦"; color: var(--em-400); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   FILM / TRAILERI CARDS
   ============================================================ */
.films-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.film-card { position: relative; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; display: flex; flex-direction: column; }
.film-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.film-card__media { position: relative; aspect-ratio: 855 / 530; overflow: hidden; background: var(--paper-3); }
.film-card__media image-slot, .film-card__media > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.home-film-card .film-card__media { aspect-ratio: 2/3; }
.film-card__play {
  position: absolute; inset: 0; z-index: 4; display: grid; place-items: center;
  background: linear-gradient(0deg, rgba(2,44,34,.55), rgba(2,44,34,0) 55%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.film-card:hover .film-card__play { opacity: 1; }
.film-card__play i { width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,.16); border: 1.5px solid rgba(255,255,255,.6); backdrop-filter: blur(4px); display: grid; place-items: center; transform: scale(.85); transition: transform .3s var(--ease); }
.film-card:hover .film-card__play i { transform: scale(1); }
.film-card__play i::after { content: ""; width: 0; height: 0; border-left: 15px solid #fff; border-top: 9px solid transparent; border-bottom: 9px solid transparent; margin-left: 4px; }
.film-card__cats { position: absolute; top: 12px; left: 12px; z-index: 5; display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: 11px; font-weight: 600;
  padding: 5px 11px; border-radius: 100px; background: rgba(255,255,255,.92); color: var(--em-800);
  backdrop-filter: blur(4px); box-shadow: var(--shadow-sm);
}
.chip--solid { background: var(--em-800); color: #fff; }
.film-card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.film-card__date { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-50); display: inline-flex; align-items: center; gap: 7px; }
.film-card__date::before { content: ""; width: 14px; height: 1px; background: var(--gold-500); }
.film-card__body h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; font-size: 22px; line-height: 1.05; letter-spacing: .005em; }
.film-card__body h3 a { transition: color .2s; }
.film-card:hover .film-card__body h3 a { color: var(--em-700); }
.film-card__foot { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.film-card__foot a { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 600; color: var(--em-800); display: inline-flex; align-items: center; gap: 7px; transition: gap .25s; }
.film-card__foot a:hover { gap: 12px; }

/* 2026 film selection */
.programme-summary { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin: -26px 0 38px; position: relative; z-index: 2; }
.programme-summary > div { min-height: 112px; padding: 22px 18px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: center; text-align: center; }
.programme-summary strong { font-family: var(--font-display); font-size: 34px; line-height: 1; color: var(--em-800); }
.programme-summary span { margin-top: 7px; font-size: 12px; line-height: 1.25; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-50); }
.programme-filters { margin-bottom: 54px; }
.film-selection { display: flex; flex-direction: column; gap: 76px; }
.selection-group { scroll-margin-top: 110px; }
.selection-group__head { display: flex; justify-content: space-between; align-items: end; gap: 24px; padding-bottom: 20px; margin-bottom: 28px; border-bottom: 1px solid var(--line); }
.selection-group__head h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); line-height: 1; text-transform: uppercase; }
.selection-group__head strong { width: 54px; height: 54px; border-radius: 50%; background: var(--em-800); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: 22px; }
.films-grid--posters { grid-template-columns: repeat(4, 1fr); }
.film-card--2026 { min-width: 0; }
.film-card--2026 .film-card__open { width: 100%; height: 100%; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; display: flex; flex-direction: column; cursor: pointer; font: inherit; }
.film-card--2026 .film-card__media { width: 100%; aspect-ratio: 2/3; border-radius: 0; display: block; }
.film-card--2026 .film-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(2,44,34,.42), transparent 40%); opacity: .6; transition: opacity .25s; }
.film-card--2026:hover .film-card__media::after { opacity: .15; }
.film-card--2026 .film-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s var(--ease); }
.film-card--2026:hover .film-card__media img { transform: scale(1.025); }
.film-card__number { position: absolute; z-index: 3; top: 13px; left: 13px; width: 39px; height: 39px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: rgba(2,44,34,.92); font-family: var(--font-display); font-weight: 700; font-size: 14px; box-shadow: var(--shadow-sm); }
.film-card--2026 .film-card__body { width: 100%; padding: 18px 18px 20px; gap: 8px; }
.film-card--2026 .film-card__body strong { font-family: var(--font-display); font-size: 21px; line-height: 1.06; text-transform: uppercase; }
.film-card--2026 .film-card__body small { color: var(--ink-70); line-height: 1.4; }
.film-card__details { margin-top: auto; padding-top: 9px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .09em; font-size: 12px; color: var(--em-700); }

.film-dialog { width: min(980px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; border: 0; border-radius: 20px; color: var(--ink); background: #fff; box-shadow: 0 30px 90px rgba(2,44,34,.35); overflow: auto; }
.film-dialog::backdrop { background: rgba(2,28,22,.72); backdrop-filter: blur(5px); }
.film-dialog__layout { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr); }
.film-dialog__poster { width: 100%; height: 100%; min-height: 620px; object-fit: cover; background: var(--paper-3); }
.film-dialog__copy { padding: clamp(34px, 5vw, 62px); }
.film-dialog__selection { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: var(--em-50); color: var(--em-800); font-family: var(--font-display); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.film-dialog h2 { margin: 18px 0 26px; font-family: var(--font-display); font-size: clamp(34px, 5vw, 52px); line-height: .98; text-transform: uppercase; }
.film-dialog h3 { margin: 30px 0 10px; font-family: var(--font-display); font-size: 16px; text-transform: uppercase; letter-spacing: .1em; color: var(--em-800); }
.film-dialog__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 22px; padding: 20px 0; border-block: 1px solid var(--line); }
.film-dialog__meta div:first-child { grid-column: 1/-1; }
.film-dialog__meta dt { margin-bottom: 3px; font-size: 11px; text-transform: uppercase; letter-spacing: .09em; color: var(--ink-50); }
.film-dialog__meta dd { font-weight: 600; }
.film-dialog__synopsis { color: var(--ink-70); font-size: 16px; line-height: 1.72; }
.film-dialog__close { position: absolute; z-index: 5; top: 14px; right: 14px; width: 42px; height: 42px; border-radius: 50%; border: 0; background: var(--em-900); color: #fff; font-size: 28px; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); }

/* Filter pills */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.filter {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: 13px; font-weight: 500;
  padding: 9px 18px; border-radius: 100px; border: 1.5px solid var(--line); color: var(--ink-70); background: #fff; transition: .2s;
}
.filter:hover { border-color: var(--em-400); color: var(--em-800); }
.filter.is-on { background: var(--em-800); border-color: var(--em-800); color: #fff; }

/* ============================================================
   VIJESTI (news)
   ============================================================ */
.news-band { background: var(--paper-2); }
.news-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.news-feature { grid-row: auto; }
.news-feature .news-card__media { aspect-ratio: 16/10; }
.news-feature h3 { font-size: 19px; }
.news-feature .news-card__body p { display: none; }
.news-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--paper-3); position: relative; }
.news-card__media image-slot, .news-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.news-card__media--poster img { object-position: center 18%; }
.news-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.news-card__meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--ink-50); letter-spacing: .04em; }
.news-card__meta .tag { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; color: var(--em-700); }
.news-card__meta .views { display: inline-flex; align-items: center; gap: 5px; }
.news-card h3 { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; line-height: 1.06; letter-spacing: .005em; font-size: 19px; }
.news-card h3 a { transition: color .2s; }
.news-card:hover h3 a { color: var(--em-700); }
.news-card p { font-size: 14.5px; color: var(--ink-70); }
.news-card__more { margin-top: auto; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; font-weight: 600; color: var(--em-800); display: inline-flex; gap: 7px; align-items: center; transition: gap .25s; padding-top: 6px; }
.news-card__more:hover { gap: 12px; }

/* ============================================================
   PRIJAVA FILMA BLOCK
   ============================================================ */
.apply { background: var(--em-900); color: #fff; position: relative; overflow: hidden; }
.apply::before { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 85% -10%, rgba(16,185,129,.28), transparent 55%); }
.apply::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 380px; height: 380px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.03); }
.apply .wrap { position: relative; z-index: 2; }
.apply__head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.apply__head .eyebrow { color: var(--em-300); }
.apply__head .eyebrow::before { background: var(--gold-500); }
.apply__head h2 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(30px, 4.5vw, 50px); line-height: 1; margin: 14px 0 14px; }
.apply__head p { color: rgba(255,255,255,.78); font-size: 17px; }
.apply__cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); max-width: 920px; margin: 0 auto; }
.apply-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius);
  padding: 34px 32px; display: flex; flex-direction: column; gap: 16px; transition: .3s var(--ease); backdrop-filter: blur(6px);
}
.apply-card:hover { background: rgba(255,255,255,.09); transform: translateY(-5px); border-color: rgba(52,211,153,.4); }
.apply-card__ico { width: 58px; height: 58px; border-radius: 14px; background: linear-gradient(145deg, var(--em-600), var(--em-800)); display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); }
.apply-card h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 24px; line-height: 1.05; }
.apply-card p { color: rgba(255,255,255,.72); font-size: 15px; flex: 1; }
.apply-card .btn { align-self: flex-start; }
.apply__deadline { text-align: center; margin-top: 34px; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: 15px; color: var(--em-300); }
.apply__deadline b { color: var(--gold-300); }

/* ============================================================
   CREATIVE TEAM / ORGANIZATORI
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.team-card { text-align: center; }
.team-card__photo { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--paper-3); margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.team-card__photo image-slot, .team-card__photo > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card:first-child .team-card__photo > img { object-fit: contain; padding: 28px; background: #fff; }
.team-card__socials { position: absolute; left: 0; right: 0; bottom: 14px; z-index: 5; display: flex; gap: 9px; justify-content: center; opacity: 0; transform: translateY(10px); transition: .3s var(--ease); }
.team-card:hover .team-card__socials { opacity: 1; transform: translateY(0); }
.team-card__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,44,34,.6), transparent 45%); opacity: 0; transition: opacity .3s; }
.team-card:hover .team-card__photo::after { opacity: 1; }
.team-card__socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--em-800); display: grid; place-items: center; transition: .2s; }
.team-card__socials a:hover { background: var(--em-700); color: #fff; transform: translateY(-3px); }
.team-card h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 21px; }
.team-card span { font-size: 13px; color: var(--em-700); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }

/* ============================================================
   SPONSORS
   ============================================================ */
.sponsors { background: var(--paper-2); }
.sponsor-group + .sponsor-group { margin-top: 48px; }
.sponsor-group__label { text-align: center; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .2em; font-size: 14px; font-weight: 600; color: var(--em-800); margin-bottom: 26px; display: flex; align-items: center; gap: 16px; justify-content: center; }
.sponsor-group__label::before, .sponsor-group__label::after { content: ""; height: 1px; width: 60px; background: var(--line); }
.sponsor-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.sponsor-grid--media { grid-template-columns: repeat(4, 1fr); max-width: 820px; margin-inline: auto; }
.sponsor {
  min-height: 180px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px; transition: .25s var(--ease); position: relative;
}
.sponsor:hover { border-color: var(--em-300); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.sponsor span { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .05em; font-size: 12px; font-weight: 600; color: var(--ink-70); text-align: center; line-height: 1.25; }
.sponsor image-slot { width: 100%; height: 100%; }
.sponsor > img { width: 100%; height: 105px; object-fit: contain; display: block; }

/* ============================================================
   POPULARNO + INSTAGRAM (two col)
   ============================================================ */
.bottom-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: start; }
.pop-list { display: flex; flex-direction: column; gap: 18px; }
.pop-item { display: flex; gap: 16px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); transition: .2s; }
.pop-item:last-child { border-bottom: none; }
.pop-item__num { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--em-100); width: 42px; flex: none; line-height: 1; transition: color .25s; }
.pop-item:hover .pop-item__num { color: var(--em-500); }
.pop-item__thumb { width: 92px; height: 70px; border-radius: 10px; overflow: hidden; flex: none; background: var(--paper-3); }
.pop-item__thumb image-slot { width: 100%; height: 100%; }
.pop-item__body h4 { font-family: var(--font-display); text-transform: uppercase; font-weight: 500; font-size: 16px; line-height: 1.15; letter-spacing: .01em; transition: color .2s; }
.pop-item:hover .pop-item__body h4 { color: var(--em-700); }
.pop-item__body span { font-size: 12px; color: var(--ink-50); letter-spacing: .04em; }

.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.ig-cell { aspect-ratio: 1; border-radius: 10px; overflow: hidden; position: relative; background: var(--paper-3); }
.ig-cell image-slot, .ig-cell > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-cell::after { content: ""; position: absolute; inset: 0; background: var(--em-800); opacity: 0; transition: opacity .25s; }
.ig-cell:hover::after { opacity: .35; }
.ig-cta { margin-top: 22px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--em-950); color: var(--em-100); padding: 70px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand .brand__mark { width: 52px; height: 52px; }
.footer__brand .footer__brand-logo {
  max-width: 100%;
  padding: 10px 13px;
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.footer__brand .brand__logo {
  width: min(280px, 100%);
  max-height: none;
}
.footer__brand p { color: rgba(255,255,255,.62); font-size: 14.5px; margin-top: 18px; max-width: 320px; }
.footer__brand .brand__txt b { color: #fff; } .footer__brand .brand__txt span { color: var(--em-300); }
.footer h5 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: 14px; color: #fff; margin-bottom: 20px; }
.footer__col a, .footer__col li { display: block; color: rgba(255,255,255,.66); font-size: 14.5px; padding: 6px 0; transition: color .2s, padding .2s; }
.footer__col a:hover { color: var(--em-300); padding-left: 6px; }
.footer__contact li { display: flex; gap: 12px; color: rgba(255,255,255,.72); font-size: 14.5px; padding: 8px 0; align-items: flex-start; }
.footer__contact svg { flex: none; margin-top: 3px; color: var(--em-400); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; gap: 18px; flex-wrap: wrap; }
.footer__bottom p { color: rgba(255,255,255,.5); font-size: 13px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: .2s; }
.footer__socials a:hover { background: var(--em-700); border-color: var(--em-700); color: #fff; transform: translateY(-3px); }

/* ============================================================
   MOBILE
   ============================================================ */
.mobile-menu { display: none; }
@media (max-width: 1080px) {
  .films-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 860px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: grid; }
  .bottom-grid, .footer__top { grid-template-columns: 1fr; gap: 38px; }
  .apply__cards { grid-template-columns: 1fr; }
  .footer__top { gap: 34px; }
  .mobile-menu {
    display: block; position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); z-index: 80;
    background: #fff; transform: translateX(100%); transition: transform .35s var(--ease);
    padding: 26px 22px; overflow-y: auto; box-shadow: var(--shadow-lg);
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .mm-overlay { display: none; position: fixed; inset: 0; background: rgba(2,44,34,.5); z-index: 70; opacity: 0; transition: opacity .3s; }
  .mm-overlay.is-open { display: block; opacity: 1; }
  .mobile-menu a { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .06em; font-size: 17px; padding: 14px 8px; border-bottom: 1px solid var(--line); color: var(--ink); }
  .mobile-menu a.sub { font-size: 14px; padding-left: 22px; color: var(--ink-70); text-transform: none; letter-spacing: 0; }
  .mobile-menu .btn { display: inline-flex; margin-top: 18px; width: 100%; justify-content: center; }
}
@media (max-width: 620px) {
  .films-grid, .team-grid, .news-grid, .sponsor-grid, .ig-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 56px 0; }
  .hero__meta { gap: 18px; }
  .hero__arrows { display: none; }
}
@media (max-width: 440px) {
  .films-grid, .team-grid, .news-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SUBPAGE — banner / breadcrumb
   ============================================================ */
.pagehero { position: relative; background: var(--em-950); color: #fff; overflow: hidden; padding: 92px 0 64px; }
.pagehero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 120% at 85% -20%, rgba(16,185,129,.3), transparent 55%); }
.pagehero::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.03); }
.pagehero .wrap { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: 13px; letter-spacing: .04em; color: var(--em-300); margin-bottom: 16px; }
.breadcrumb a { color: var(--em-300); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.5); }
.pagehero h1 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(34px, 6vw, 60px); line-height: .98; letter-spacing: -.005em; }
.pagehero h1 em { color: var(--em-400); font-style: normal; }
.pagehero p { color: rgba(255,255,255,.8); font-size: 17px; max-width: 620px; margin-top: 16px; }

/* prose / article */
.prose-wrap { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 56px; align-items: start; }
.prose { max-width: 760px; }
.prose > * + * { margin-top: 20px; }
.prose h2 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 27px; color: var(--ink); margin-top: 40px; line-height: 1.05; }
.prose h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 20px; color: var(--em-800); margin-top: 30px; }
.prose p, .prose li { font-size: 16.5px; color: var(--ink-70); line-height: 1.75; }
.prose strong { color: var(--ink); }
.prose ul { display: flex; flex-direction: column; gap: 10px; padding-left: 0; }
.prose ul li { position: relative; padding-left: 26px; }
.prose ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 9px; height: 9px; border-radius: 2px; background: var(--em-500); transform: rotate(45deg); }
.prose .lead { font-size: 19px; color: var(--ink); line-height: 1.6; }
.prose figure { margin: 28px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.prose figure image-slot { width: 100%; aspect-ratio: 16/9; }
.prose figcaption { font-size: 13px; color: var(--ink-50); padding: 12px 16px; background: var(--paper-2); }

/* sidebar */
.sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 32px; }
.side-box { border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; background: var(--paper-2); }
.side-box h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: 13px; color: var(--em-800); margin-bottom: 18px; }
.side-pop { display: flex; flex-direction: column; gap: 14px; }
.side-pop a { display: flex; gap: 12px; align-items: center; }
.side-pop .t { width: 64px; height: 50px; border-radius: 8px; overflow: hidden; flex: none; background: var(--paper-3); }
.side-pop .t image-slot { width: 100%; height: 100%; }
.side-pop h5 { font-family: var(--font-display); text-transform: none; font-weight: 600; font-size: 14px; line-height: 1.25; color: var(--ink); transition: color .2s; }
.side-pop a:hover h5 { color: var(--em-700); }

/* article meta head */
.article-head { margin-bottom: 26px; }
.article-head .meta { display: flex; gap: 14px; align-items: center; font-size: 13px; color: var(--ink-50); margin-bottom: 14px; flex-wrap: wrap; }
.article-head .meta .tag { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; color: var(--em-700); }
.article-head h1 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: clamp(26px, 3.5vw, 40px); line-height: 1.05; }

/* full-width news list */
.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.news-card--latest { grid-column: span 2; }
.news-card--latest .news-card__media { aspect-ratio: 16/8; }

/* festival announcement article */
.article-page { padding: 70px 0 96px; background: var(--paper-2); }
.article-shell { max-width: 980px; }
.article-main { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 5vw, 64px); box-shadow: var(--shadow-sm); }
.article-main .breadcrumb { margin-bottom: 34px; }
.article-deck { margin-top: 18px; max-width: 760px; font-size: clamp(17px, 2vw, 21px); line-height: 1.55; color: var(--ink-70); }
.article-cover { margin: 34px 0; border-radius: var(--radius); overflow: hidden; background: var(--paper-3); }
.article-cover img { width: 100%; height: auto; display: block; }
.article-prose { max-width: 760px; margin-inline: auto; }
.article-prose blockquote { margin: 34px 0; padding: 28px 30px; border-left: 5px solid var(--em-600); background: var(--em-50); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-family: var(--font-display); font-size: clamp(21px, 3vw, 28px); font-weight: 600; line-height: 1.25; color: var(--em-900); }
.article-actions { display: flex; gap: 12px; flex-wrap: wrap; max-width: 760px; margin: 38px auto 0; padding-top: 30px; border-top: 1px solid var(--line); }

/* 2026 jury */
.jury-program__grid { display: grid; grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr); gap: clamp(36px, 6vw, 80px); align-items: start; }
.jury-program__grid--reverse .jury-poster { order: 2; }
.jury-program--tint { background: var(--paper-2); scroll-margin-top: 110px; }
.jury-poster { position: sticky; top: 100px; border-radius: 20px; overflow: hidden; background: #f5f0d8; box-shadow: var(--shadow-md); }
.jury-poster img { width: 100%; height: auto; display: block; }
.jury-copy h2 { margin: 14px 0 20px; font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px); line-height: 1; text-transform: uppercase; }
.jury-lead { font-size: 18px; line-height: 1.6; color: var(--ink-70); margin-bottom: 32px; }
.jury-bio { padding: 24px 0; border-top: 1px solid var(--line); }
.jury-bio h3 { font-family: var(--font-display); font-size: 23px; line-height: 1.1; text-transform: uppercase; }
.jury-bio span { display: block; margin: 6px 0 12px; color: var(--em-700); font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.jury-bio p { color: var(--ink-70); line-height: 1.7; }

/* gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid .g { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; background: var(--paper-3); position: relative; }
.gallery-grid .g.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-grid .g image-slot { width: 100%; height: 100%; }
.gallery-grid .g::after { content: ""; position: absolute; inset: 0; background: var(--em-900); opacity: 0; transition: opacity .25s; }
.gallery-grid .g:hover::after { opacity: .25; }
.gallery-album { margin-bottom: 50px; }
.gallery-album__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.gallery-album__head h2 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 24px; }
.gallery-album__head span { font-size: 13px; color: var(--ink-50); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 8px; }
.contact-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-item:last-child { border-bottom: none; }
.contact-item .ico { width: 48px; height: 48px; border-radius: 12px; flex: none; background: var(--em-50); color: var(--em-700); display: grid; place-items: center; }
.contact-item h4 { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: 13px; color: var(--ink-50); margin-bottom: 5px; }
.contact-item p, .contact-item a { font-size: 17px; color: var(--ink); font-weight: 500; }
.contact-item a:hover { color: var(--em-700); }
.contact-form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: var(--ink-70); font-weight: 600; }
.field input, .field textarea, .field select { font-family: var(--font-body); font-size: 15px; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--em-500); box-shadow: 0 0 0 4px var(--em-50); }
.field textarea { resize: vertical; min-height: 120px; }
.map-embed { aspect-ratio: 16/8; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 14px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* info cards / steps */
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.feature-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; transition: transform .3s var(--ease), box-shadow .3s; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-card .ico { width: 54px; height: 54px; border-radius: 13px; background: linear-gradient(145deg, var(--em-600), var(--em-800)); color: #fff; display: grid; place-items: center; }
.feature-card h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 20px; line-height: 1.1; }
.feature-card p { font-size: 15px; color: var(--ink-70); }
.feature-card .price { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--em-800); }
.feature-card .price small { font-size: 15px; color: var(--ink-50); font-weight: 500; }

.steps { display: flex; flex-direction: column; gap: 8px; counter-reset: step; }
.step { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.step:last-child { border-bottom: none; }
.step__n { font-family: var(--font-display); font-weight: 700; font-size: 22px; width: 48px; height: 48px; flex: none; border-radius: 12px; background: var(--em-50); color: var(--em-700); display: grid; place-items: center; }
.step h4 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 19px; margin-bottom: 6px; }
.step p { font-size: 15.5px; color: var(--ink-70); }

/* jury / people grid */
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.person { text-align: center; }
.person__photo { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; background: var(--paper-3); margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.person__photo image-slot { width: 100%; height: 100%; }
.person h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 600; font-size: 18px; }
.person span { font-size: 13px; color: var(--em-700); letter-spacing: .04em; }

/* CTA band */
.cta-band { background: var(--em-800); color: #fff; border-radius: var(--radius); padding: 44px 48px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; right: -40px; top: -60px; width: 240px; height: 240px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.cta-band__t { position: relative; z-index: 2; }
.cta-band h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 700; font-size: clamp(24px, 3vw, 34px); line-height: 1.02; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: 8px; max-width: 460px; }
.cta-band .btn { position: relative; z-index: 2; flex: none; }

@media (max-width: 1080px) {
  .prose-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .side-box { flex: 1; min-width: 260px; }
  .news-list, .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .people-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .programme-summary { grid-template-columns: repeat(3, 1fr); }
  .films-grid--posters { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .news-list, .feature-cards, .people-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 32px 26px; }
  .pagehero { padding: 64px 0 48px; }
  .news-card--latest { grid-column: auto; }
  .news-card--latest .news-card__media { aspect-ratio: 16/10; }
  .article-page { padding: 28px 0 56px; }
  .article-main { border-radius: 14px; }
  .article-cover { margin-inline: -16px; border-radius: 0; }
  .jury-program__grid { grid-template-columns: 1fr; gap: 32px; }
  .jury-program__grid--reverse .jury-poster { order: 0; }
  .jury-poster { position: static; max-width: 520px; margin-inline: auto; }
  .jury-copy h2 { font-size: 34px; }
  .programme-summary { grid-template-columns: repeat(2, 1fr); margin-top: -12px; }
  .programme-summary > div:first-child { grid-column: 1/-1; }
  .programme-filters { margin-inline: -4vw; padding-inline: 4vw; }
  .films-grid--posters { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .film-card--2026 .film-card__body { padding: 14px; }
  .film-card--2026 .film-card__body strong { font-size: 17px; }
  .film-card--2026 .film-card__body small { font-size: 12px; }
  .film-dialog { width: min(100% - 16px, 620px); max-height: calc(100dvh - 16px); border-radius: 14px; }
  .film-dialog__layout { grid-template-columns: 1fr; }
  .film-dialog__poster { height: min(62vh, 560px); min-height: 0; }
  .film-dialog__copy { padding: 28px 22px 34px; }
  .film-dialog__meta { grid-template-columns: 1fr; }
  .film-dialog__meta div:first-child { grid-column: auto; }
}

@media (max-width: 430px) {
  .films-grid--posters { grid-template-columns: 1fr; }
  .film-card--2026 .film-card__media { aspect-ratio: 4/5; }
  .film-card--2026 .film-card__media img { object-position: center 20%; }
}

/* ============================================================
   ENHANCED MOBILE EXPERIENCE
   ============================================================ */
@media (max-width: 860px) {
  .header .wrap { height: 68px; }
  .mobile-menu { padding: 76px 22px 30px; }
  .burger.is-on {
    position: fixed;
    top: 14px;
    right: 18px;
    z-index: 95;
    background: var(--em-50);
    box-shadow: var(--shadow-sm);
  }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: -4vw;
    padding: 0 4vw 8px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; white-space: nowrap; scroll-snap-align: start; }
  .team-card__socials { opacity: 1; transform: none; }
  .team-card__photo::after { opacity: .32; }
}

@media (max-width: 680px) {
  .wrap { width: min(92vw, 560px); }
  .section { padding: 50px 0; }
  .section--tight { padding: 44px 0; }
  .topbar .wrap { height: 38px; gap: 10px; }
  .topbar__dates {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10.5px;
  }
  .topbar__dates .dot { display: none; }
  .topbar__socials { display: none; }
  .topbar__right { gap: 8px; flex: none; }
  .topbar__lang { gap: 3px; }
  .topbar__lang button { font-size: 11px; padding: 4px 7px; }

  .brand { gap: 10px; min-width: 0; }
  .brand__mark { width: 42px; height: 42px; border-radius: 10px; }
  .brand__txt b { font-size: 16px; }
  .brand__txt span { font-size: 9px; letter-spacing: .18em; }
  .header .brand__logo { width: 205px; max-height: 50px; }

  .hero { height: auto; min-height: calc(100svh - 106px); }
  .hero__inner { min-height: calc(100svh - 106px); padding: 52px 0 84px; }
  .hero__content { max-width: 100%; }
  .hero__tag {
    max-width: 100%;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .14em;
    padding: 7px 11px;
    margin-bottom: 18px;
  }
  .hero__content h1 { font-size: clamp(43px, 14vw, 64px); line-height: .93; }
  .hero__sub { font-size: 16px; line-height: 1.55; margin: 18px 0 24px; }
  .hero__meta { gap: 22px; margin-bottom: 26px; }
  .hero__meta b { font-size: 23px; }
  .hero__meta span { font-size: 10px; }
  .hero__actions { display: grid; grid-template-columns: 1fr; gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__count { display: none; }
  .hero__dots { bottom: 28px; }
  .marquee { padding: 11px 0; }
  .marquee__track span { font-size: 13px; }

  .shead { align-items: flex-start; margin-bottom: 26px; }
  .shead h2 { font-size: 33px; }
  .shead__link { width: max-content; }
  .eyebrow { letter-spacing: .2em; }
  .films-grid, .team-grid, .news-grid, .news-list, .feature-cards, .people-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .film-card__body h3 { font-size: 21px; }
  .news-card__body { padding: 18px 18px 22px; }
  .news-card__meta { flex-wrap: wrap; gap: 8px; }
  .apply__head { margin-bottom: 30px; }
  .apply__head p { font-size: 15.5px; }
  .apply-card { padding: 26px 22px; }
  .apply-card .btn { width: 100%; justify-content: center; }
  .sponsor-grid, .sponsor-grid--media { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .sponsor { padding: 12px; }
  .bottom-grid { gap: 44px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }

  .pagehero { padding: 54px 0 42px; }
  .pagehero h1 { font-size: clamp(34px, 12vw, 48px); }
  .pagehero p { font-size: 15.5px; }
  .breadcrumb { overflow-x: auto; white-space: nowrap; padding-bottom: 4px; }
  .prose-wrap { gap: 36px; }
  .prose h2 { font-size: 24px; margin-top: 34px; }
  .prose p, .prose li { font-size: 15.5px; }
  .prose .lead { font-size: 17px; }
  .sidebar { display: block; }
  .side-box + .side-box { margin-top: 18px; }
  .feature-card { padding: 24px 22px; }
  .step { gap: 14px; padding: 18px 0; }
  .step__n { width: 42px; height: 42px; }
  .contact-grid { gap: 32px; }
  .contact-form { padding: 24px 20px; }
  .contact-item { gap: 13px; }
  .contact-item p, .contact-item a { font-size: 15px; overflow-wrap: anywhere; }
  .map-embed { aspect-ratio: 4/3; }
  .gallery-grid { gap: 8px; }
  .gallery-album__head { flex-direction: column; gap: 2px; }
  .cta-band { padding: 28px 22px; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .footer { padding: 54px 0 24px; }
  .footer__top { padding-bottom: 34px; }
}

@media (max-width: 420px) {
  .brand__txt span { display: none; }
  .header .brand__logo { width: min(188px, 60vw); }
  .hero__content h1 { font-size: 42px; }
  .hero__meta { justify-content: space-between; gap: 12px; }
  .hero__meta b { font-size: 21px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g.wide { grid-column: span 2; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
}

/* ============================================================
   2026 HERO ARTWORK
   ============================================================ */
.hero.hero--poster {
  height: auto;
  min-height: 0;
  overflow: visible;
  background: #f2ecd6;
}
.hero-poster__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f2ecd6;
}
.hero-poster__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-poster__bar {
  position: relative;
  z-index: 4;
  color: #fff;
  background: linear-gradient(110deg, var(--em-950), var(--em-800));
  border-top: 4px solid #bd4d3c;
  box-shadow: 0 -12px 36px rgba(2, 44, 34, .14);
}
.hero-poster__inner {
  min-height: 138px;
  padding-block: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}
.hero-poster__details { min-width: 0; }
.hero-poster__details > span {
  display: block;
  margin-bottom: 5px;
  color: var(--em-300);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero-poster__details strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(27px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: uppercase;
}
.hero-poster__details p {
  margin-top: 9px;
  color: rgba(255,255,255,.76);
  font-size: 14.5px;
}
.hero-poster__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.hero-poster__actions .btn { justify-content: center; }

@media (min-width: 861px) and (max-width: 1180px) {
  .nav, .header__cta .btn { display: none; }
  .burger { display: grid; }
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(380px, 86vw);
    z-index: 80;
    padding: 76px 22px 30px;
    overflow-y: auto;
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .mm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 70;
    opacity: 0;
    background: rgba(2,44,34,.5);
    transition: opacity .3s;
  }
  .mm-overlay.is-open { display: block; opacity: 1; }
  .mobile-menu a {
    display: block;
    padding: 14px 8px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 17px;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .mobile-menu a.sub { padding-left: 22px; color: var(--ink-70); font-size: 14px; letter-spacing: 0; text-transform: none; }
  .mobile-menu .btn { display: inline-flex; width: 100%; margin-top: 18px; justify-content: center; }
  .burger.is-on {
    position: fixed;
    top: 14px;
    right: 18px;
    z-index: 95;
    background: var(--em-50);
    box-shadow: var(--shadow-sm);
  }
}

@media (min-width: 1500px) {
  .hero-poster__media {
    max-height: calc(100svh - 118px);
    min-height: 640px;
  }
}

@media (max-width: 860px) {
  .hero-poster__inner { gap: 24px; }
  .hero-poster__actions { flex-direction: column; width: min(250px, 42%); }
  .hero-poster__actions .btn { width: 100%; }
}

@media (max-width: 680px) {
  .hero.hero--poster { min-height: 0; }
  .hero-poster__media { aspect-ratio: 16 / 9; }
  .hero-poster__inner {
    min-height: 0;
    padding-block: 24px 28px;
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }
  .hero-poster__details { text-align: center; }
  .hero-poster__details strong { font-size: clamp(30px, 10vw, 40px); }
  .hero-poster__details p { margin-inline: auto; max-width: 390px; line-height: 1.5; }
  .hero-poster__actions { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .hero-poster__actions .btn { min-height: 48px; padding-inline: 12px; }
}

@media (max-width: 430px) {
  .hero-poster__actions { grid-template-columns: 1fr; }
  .hero-poster__details > span { font-size: 10px; }
  .hero-poster__details strong { font-size: 31px; }
}
