:root {
  --paper:  #f6f1e3;
  --ink:    #16131f;
  --accent: #23306b;
  --accent-dk: #182350;
  --ivory:  #f4edda;
  --muted:  #6f695c;
  --line:   #ddd5bf;

  --disp:  'Fira Sans Condensed', 'Arial Narrow', sans-serif;
  --serif: 'Literata', Georgia, 'Times New Roman', serif;

  --bar-h: 64px;
  --pad-y: clamp(84px, 11vh, 138px);
  --shell: min(1120px, 90vw);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, dl { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--accent); color: var(--ivory); }

.shell { width: var(--shell); margin: 0 auto; }
.narrow { width: min(720px, 90vw); }
.section { padding: var(--pad-y) 0; }
section[id] { scroll-margin-top: calc(var(--bar-h) + 4px); }
.line-top { padding-top: 0; }
.line-top > .shell:first-of-type,
.line-top > .narrow:first-of-type { border-top: 2px solid var(--ink); padding-top: calc(var(--pad-y) - 26px); }

h1, h2 {
  font-family: var(--disp); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.015em;
  color: var(--ink);
}
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); line-height: 1.04; max-width: min(24ch, 100%); margin-bottom: 0.9em; text-wrap: balance; }
.section p { color: var(--ink); max-width: min(60ch, 100%); }
.section p + p { margin-top: 1.1em; }

.label {
  font-family: var(--disp); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.9em;
}

.btn {
  display: inline-block; font-family: var(--disp); font-weight: 600; font-size: 0.88rem;
  letter-spacing: 0.09em; text-transform: uppercase;
  padding: 14px 26px; border: 2px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-solid { background: var(--accent); border-color: var(--accent); color: var(--ivory); }
.btn-solid:hover { background: var(--accent-dk); border-color: var(--accent-dk); }
.btn-line { border-color: var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }

.reveal-ready .reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-ready .reveal.in { opacity: 1; transform: none; }

.bar {
  position: fixed; inset: 0 0 auto 0; height: var(--bar-h); z-index: 100;
  display: flex; align-items: center; border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.bar.scrolled { background: var(--paper); border-bottom-color: var(--ink); }
.bar-inner { width: var(--shell); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.wm {
  font-family: var(--disp); font-weight: 600; font-size: 0.98rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); white-space: nowrap;
}
.nav { display: flex; gap: 26px; }
.nav a {
  font-family: var(--disp); font-weight: 500; font-size: 0.88rem;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--ink); transition: color 0.15s ease;
}
.nav a:hover { color: var(--accent); }
.bar-right { display: flex; align-items: center; gap: 18px; }
.lang { display: flex; align-items: center; gap: 7px; font-family: var(--disp); font-size: 0.85rem; color: var(--muted); }
.lang .lang-btn { color: var(--muted); transition: color 0.15s ease; }
.lang .lang-btn:hover { color: var(--ink); }
.lang .lang-btn.active { color: var(--accent); font-weight: 600; }
.menu { display: none; flex-direction: column; gap: 5px; width: 24px; }
.menu span { height: 2px; width: 100%; background: var(--ink); transition: 0.25s ease; }

.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: calc(var(--bar-h) + clamp(28px, 4vh, 44px)) 0 clamp(44px, 6vh, 68px);
  background: var(--paper);
  color: var(--ink);
}
.hero-grid {
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(32px, 5.5vw, 72px); align-items: center;
  max-width: 100%;
}
.hero-text, .hero-poster { min-width: 0; }

.kicker {
  font-family: var(--disp); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.2em;
}
.title {
  font-size: clamp(2.5rem, 5.4vw, 3.9rem); line-height: 1;
  color: var(--ink); max-width: min(12ch, 100%); text-wrap: balance;
}
.title-echo { font-family: var(--serif); font-style: italic; font-size: clamp(1rem, 1.9vw, 1.2rem); color: var(--muted); margin-top: 0.6em; }
.lede { font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.22rem); line-height: 1.55; color: var(--ink); max-width: min(44ch, 100%); margin-top: 1.2em; }
.meta {
  font-family: var(--disp); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); margin-top: 1.3em;
}
.hero-links { display: flex; gap: 14px; margin-top: 1.8em; flex-wrap: wrap; }

.hero-poster { display: flex; justify-content: center; }
.hero-poster img {
  width: auto; max-width: 100%; max-height: min(72vh, 640px); object-fit: contain;
  box-shadow: 14px 14px 0 var(--ink);
}

.statement { width: 100%; }
.statement img { width: 100%; height: clamp(320px, 56vh, 620px); object-fit: cover; }
.statement figcaption {
  width: var(--shell); margin: 14px auto 0;
  font-family: var(--disp); font-size: 0.82rem; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--muted);
}

.facts {
  margin-top: 2.6em !important; padding-top: 1.4em; border-top: 2px solid var(--ink);
  font-family: var(--disp); font-weight: 500; font-size: 0.92rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--ink); max-width: none !important;
}

.deflist { margin-top: 8px; max-width: 780px; border-top: 2px solid var(--ink); }
.deflist > div { display: grid; grid-template-columns: 200px 1fr; gap: 28px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.deflist dt {
  font-family: var(--disp); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.deflist dd { font-size: 1.08rem; color: var(--ink); }
.deflist dd a { text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--line); transition: text-decoration-color 0.15s, color 0.15s; }
.deflist dd a:hover { text-decoration-color: var(--accent); color: var(--accent); }

.sched { margin-top: 8px; max-width: 760px; border-top: 2px solid var(--ink); }
.sched li { display: grid; grid-template-columns: 168px 1fr; gap: 28px; padding: 15px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.sched .d {
  font-family: var(--disp); font-weight: 600; font-size: 1.35rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.sched .e { font-size: 1.05rem; color: var(--ink); }
.sched .feature .d, .sched .feature .e { color: var(--accent); }
.sched .feature .e { font-weight: 500; }
.sched .feature { border-bottom: 2px solid var(--accent); }
.fees { margin-top: 2em; font-size: 0.95rem; font-style: italic; color: var(--muted); max-width: min(54ch, 100%); }

.prog-intro { font-size: 1.06rem; color: var(--ink); max-width: min(60ch, 100%); }
.nights { margin-top: 0; }
.night { border-top: 2px solid var(--ink); margin-top: 54px; padding-top: 30px; }
.night:first-child { margin-top: 44px; }
.night-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.night-no { font-family: var(--disp); font-weight: 600; font-size: 1.5rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); }
.night-date { font-family: var(--disp); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); font-variant-numeric: tabular-nums; }

.event { display: grid; grid-template-columns: 290px 1fr; gap: 40px; padding: 30px 0; border-top: 1px solid var(--line); align-items: start; }
.event-media img { width: 100%; height: auto; display: block; box-shadow: 12px 12px 0 var(--ink); }
.event-media.poster { display: flex; }
.event-media.poster img { width: auto; max-width: 100%; max-height: 460px; margin: 0 auto; }
.event-body { min-width: 0; }
.event-meta { display: flex; align-items: baseline; gap: 14px; margin-bottom: 12px; }
.event-time { font-family: var(--disp); font-weight: 600; font-size: 1.2rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.event-kind { font-family: var(--disp); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.event-title { font-family: var(--disp); font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2.05rem); line-height: 1.06; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ink); }
.event .film-cred { font-family: var(--disp); font-weight: 500; font-size: 0.84rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin-top: 10px; max-width: none; }
.event .event-text { font-family: var(--serif); font-size: 1.02rem; line-height: 1.55; color: var(--ink); margin-top: 14px; max-width: 54ch; }

.shorts { padding: 30px 0 6px; border-top: 1px solid var(--line); }
.shorts .event-meta { margin-bottom: 8px; }
.shorts .shorts-intro { font-family: var(--serif); font-size: 1.02rem; line-height: 1.55; color: var(--ink); max-width: 60ch; margin-bottom: 30px; }
.shorts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 22px; }
.short { min-width: 0; }
.short-poster { aspect-ratio: 2 / 3; overflow: hidden; background: #ece2ca; }
.short-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.short-poster.placard { background: var(--accent); display: flex; align-items: center; justify-content: center; padding: 16px; }
.placard-mark { font-family: var(--disp); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory); text-align: center; line-height: 1.6; }
.placard-mark::before, .placard-mark::after { content: ''; display: block; width: 30px; height: 1px; background: rgba(244, 237, 218, 0.45); margin: 9px auto; }
.short-title { font-family: var(--disp); font-weight: 600; font-size: 1rem; line-height: 1.12; text-transform: uppercase; color: var(--ink); margin-top: 13px; }
.short-cred { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.short-tag { font-family: var(--disp); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--accent); margin-top: 6px; }

.gallery-sub { color: var(--muted); margin-top: -0.4em; font-style: italic; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 42px; }
.shot { display: block; overflow: hidden; background: #e7dfc9; }
.shot img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform 0.45s ease, filter 0.3s ease; }
.shot:hover img { transform: scale(1.04); filter: brightness(1.06); }
.gallery-grid:not(.expanded) .shot:nth-child(n+13) { display: none; }
.gallery-more { text-align: center; margin-top: 32px; }

.people { margin-top: 8px; max-width: 780px; border-top: 2px solid var(--ink); }
.people li { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.pn { font-size: 1.14rem; font-weight: 500; color: var(--ink); }
.pr {
  font-family: var(--disp); font-weight: 500; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); text-align: right;
}

.voices { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 12px; }
.voice blockquote {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.48; color: var(--ink);
}
.voice figcaption { margin-top: 18px; display: flex; flex-direction: column; gap: 2px; }
.voice figcaption span:first-child {
  font-family: var(--disp); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.vm { font-size: 0.85rem; color: var(--muted); }

.foot { border-top: 2px solid var(--ink); padding: 58px 0 70px; }
.foot-inner { display: flex; flex-direction: column; gap: 9px; }
.foot-note { font-size: 0.92rem; color: var(--ink); }
.foot-note a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line); transition: text-decoration-color 0.15s ease; }
.foot-note a:hover { text-decoration-color: var(--accent); }
.foot-src { font-size: 0.8rem; color: var(--muted); }

.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(22, 19, 31, 0.96); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lb-img { max-width: 88vw; max-height: 86vh; box-shadow: 12px 12px 0 rgba(0,0,0,0.45); }
.lb-close { position: absolute; top: 20px; right: 28px; font-size: 2.1rem; color: var(--ivory); line-height: 1; }
.lb-close:hover { opacity: 0.75; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.6rem; color: var(--ivory); padding: 10px 18px; opacity: 0.72; transition: opacity 0.2s ease; }
.lb-nav:hover { opacity: 1; }
.lb-prev { left: 8px; } .lb-next { right: 8px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.lightbox :focus-visible { outline-color: var(--ivory); }

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: var(--bar-h) 0 auto 0; background: var(--paper);
    border-bottom: 2px solid var(--ink); flex-direction: column; gap: 0; padding: 6px 5vw 18px;
    transform: translateY(-10px); opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
  .menu { display: flex; }
  .hero { min-height: 0; padding: calc(var(--bar-h) + 22px) 0 44px; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-poster { order: -1; }
  .hero-poster img { max-height: 34vh; box-shadow: 8px 8px 0 var(--ink); }
  .voices { grid-template-columns: 1fr; gap: 34px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .event { grid-template-columns: 220px 1fr; gap: 28px; }
  .event-media.poster img { max-height: 340px; }
}

@media (max-width: 620px) {
  .event { grid-template-columns: 1fr; gap: 18px; }
  .event-media { max-width: 260px; }
  .event-media img { box-shadow: 8px 8px 0 var(--ink); }
  .event-media.poster img { margin: 0; max-height: none; }
  .night-head { flex-direction: column; gap: 4px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .deflist > div { grid-template-columns: 1fr; gap: 6px; }
  .sched li { grid-template-columns: 108px 1fr; gap: 16px; }
  .sched .d { font-size: 1.15rem; }
  .people li { grid-template-columns: 1fr; gap: 3px; }
  .pr { text-align: left; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-links .btn { flex: 1 1 auto; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal-ready .reveal { opacity: 1 !important; transform: none !important; }
}
