/* ============================================================
   CINEMANIACS SHORT FILM FESTIVAL
   Design system: olive + black + cream, pixel motif
   Display: Bricolage Grotesque | Body: Newsreader | Data: Space Mono
   ============================================================ */

:root {
  --olive: #4F5D2F;
  --olive-deep: #37431E;
  --olive-light: #83914E;
  --olive-pale: #DBE0C0;
  --olive-wash: #EEF0E0;
  --black: #16160E;
  --ink: #2A2A1E;
  --cream: #F5F2E5;
  --cream-dark: #E9E5D2;
  --white: #FEFEFA;
  --grey: #6C6B57;
  --grey-light: #9B9A84;
  --border: #D6D2BC;

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Newsreader', Georgia, serif;
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --shadow-sm: 0 2px 8px rgba(22,22,14,0.06);
  --shadow-md: 0 10px 30px rgba(22,22,14,0.10);
  --shadow-lg: 0 24px 60px rgba(22,22,14,0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1200px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.075rem;
  font-weight: 400;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.02; color: var(--black); letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 700; }
p { margin-bottom: 1.1rem; }
a { color: var(--olive-deep); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--olive); }
img { max-width: 100%; display: block; }
::selection { background: var(--olive); color: var(--cream); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
.serif-italic { font-family: var(--font-body); font-style: italic; font-weight: 500; letter-spacing: 0; }

/* ---------- MONO EYEBROW + PIXEL MOTIF (signature) ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: '';
  width: 20px; height: 8px;
  background-image:
    linear-gradient(90deg, var(--olive) 40%, transparent 40%),
    linear-gradient(90deg, var(--olive) 40%, transparent 40%);
  background-size: 5px 4px;
  background-position: 0 0, 2px 4px;
  background-repeat: repeat-x;
  opacity: 0.9;
}
.eyebrow.on-dark { color: var(--olive-pale); }
.eyebrow.plain::before { display: none; }

/* pixel divider: a row of little squares */
.pixel-row { display: flex; gap: 4px; }
.pixel-row i { width: 8px; height: 8px; background: var(--olive); display: block; }
.pixel-row i:nth-child(2) { background: var(--olive-light); }
.pixel-row i:nth-child(4) { background: var(--olive-light); }
.pixel-row i:nth-child(5) { opacity: 0.4; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85rem 1.5rem; border: 2px solid transparent; cursor: pointer;
  transition: all 0.25s var(--ease); border-radius: 2px; white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--olive); color: var(--cream); border-color: var(--olive); }
.btn-primary:hover { background: var(--olive-deep); border-color: var(--olive-deep); color: var(--white); transform: translateY(-2px); }
.btn-dark { background: var(--black); color: var(--cream); border-color: var(--black); }
.btn-dark:hover { background: var(--olive-deep); border-color: var(--olive-deep); color: var(--white); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--olive-deep); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--olive); color: var(--olive); background: var(--olive-wash); }
.btn-ghost-light { background: transparent; color: var(--cream); border-color: rgba(245,242,229,0.4); }
.btn-ghost-light:hover { border-color: var(--cream); background: rgba(245,242,229,0.1); color: var(--white); }
.btn-lg { font-size: 0.9rem; padding: 1.05rem 2rem; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245,242,229,0.92); backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--black);
  transition: transform 0.4s var(--ease);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand {
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  color: var(--black); letter-spacing: -0.03em; line-height: 1; display: flex; align-items: center; gap: 0.5rem;
}
.brand .cam { width: 26px; height: 26px; flex-shrink: 0; }
.brand span { color: var(--olive); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.6rem; }
.nav-links a:not(.btn) {
  font-family: var(--font-mono); font-size: 0.76rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); position: relative; padding: 0.3rem 0;
}
.nav-links a:not(.btn):hover { color: var(--olive); }
.nav-links a.active { color: var(--olive); font-weight: 700; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 3px; background: var(--olive);
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 2px; background: var(--black); transition: all 0.3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative; padding: 11rem 0 5rem; overflow: hidden;
  background: var(--cream);
  border-bottom: 2px solid var(--black);
}
.hero-grid { position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 44px 44px; mask-image: radial-gradient(ellipse 80% 60% at 80% 0%, #000 0%, transparent 70%); }
.hero .container { position: relative; z-index: 2; }
.hero-tag { margin-bottom: 1.75rem; }
.hero h1 { max-width: 15ch; margin-bottom: 1.5rem; }
.hero h1 em { font-family: var(--font-body); font-style: italic; font-weight: 500; color: var(--olive); letter-spacing: -0.01em; }
.hero-lead { font-size: 1.3rem; max-width: 44ch; color: var(--ink); margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* deadline terminal */
.deadline-box {
  margin-top: 3rem; display: inline-flex; flex-direction: column; gap: 0.75rem;
  background: var(--black); color: var(--cream); padding: 1.4rem 1.8rem; border-radius: 3px;
  font-family: var(--font-mono); max-width: 100%;
}
.deadline-box .dl-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--olive-light); }
.deadline-box .dl-clock { display: flex; gap: 1.1rem; }
.deadline-box .dl-unit { text-align: center; }
.deadline-box .dl-unit b { font-family: var(--font-display); font-size: 2rem; font-weight: 800; display: block; line-height: 1; color: var(--white); }
.deadline-box .dl-unit span { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive-pale); margin-top: 0.4rem; display: block; }
.deadline-box .dl-sep { font-family: var(--font-display); font-size: 2rem; color: var(--olive-light); align-self: flex-start; }

/* ---------- SECTIONS ---------- */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.section-alt { background: var(--cream-dark); }
.section-wash { background: var(--olive-wash); }
.section-dark { background: var(--olive-deep); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: var(--olive-pale); }
.section-black { background: var(--black); color: var(--cream); }
.section-black h1, .section-black h2, .section-black h3 { color: var(--white); }
.section-black p { color: rgba(245,242,229,0.8); }

.section-head { max-width: 720px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 0.9rem; }
.section-head p { margin-top: 1rem; color: var(--grey); font-size: 1.15rem; }
.section-dark .section-head p, .section-black .section-head p { color: var(--olive-pale); }

/* ---------- SPLIT ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-text .eyebrow { margin-bottom: 1rem; }
.split-text h2 { margin-bottom: 1.25rem; }
.split-media { position: relative; }

/* ---------- IMAGE SLOT (olive gradient fallback) ---------- */
.img-slot {
  position: relative; background: linear-gradient(140deg, var(--olive-deep) 0%, var(--olive) 55%, var(--olive-light) 100%);
  border-radius: 3px; overflow: hidden; background-size: cover; background-position: center;
  display: flex; align-items: flex-end; min-height: 340px; border: 2px solid var(--black);
}
.img-slot .slot-label {
  position: relative; z-index: 2; padding: 1.5rem; font-family: var(--font-mono);
  font-size: 0.85rem; color: var(--olive-pale); letter-spacing: 0.04em; line-height: 1.4;
}
.img-slot .slot-label small { display: block; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(219,224,192,0.7); margin-top: 0.3rem; }
.img-slot::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,22,14,0.5), transparent 55%); z-index: 1; }
.img-slot.wide { min-height: 420px; }
.img-slot.tall { min-height: 520px; }

/* ---------- STAT STRIP ---------- */
.stat-strip { display: flex; flex-wrap: wrap; margin-top: 3rem; border: 2px solid var(--black); background: var(--white); }
.stat-strip .stat { flex: 1; min-width: 140px; padding: 1.6rem 1.4rem; border-right: 2px solid var(--black); }
.stat-strip .stat:last-child { border-right: none; }
.stat-strip .stat b { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--olive); line-height: 1; display: block; }
.stat-strip .stat span { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey); margin-top: 0.55rem; display: block; }

/* ---------- CARDS (films / winners) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.75rem; }
.film-card { background: var(--white); border: 2px solid var(--black); border-radius: 3px; overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); display: flex; flex-direction: column; }
.film-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.film-card .card-media { aspect-ratio: 16/10; border-bottom: 2px solid var(--black); border-radius: 0; min-height: 0; }
.film-card .card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.film-card .card-cat { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.5rem; }
.film-card h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.film-card .card-meta { font-family: var(--font-mono); font-size: 0.75rem; color: var(--grey); margin-top: auto; padding-top: 0.75rem; }
.film-card .award-tag { display: inline-block; font-family: var(--font-mono); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); background: var(--olive); padding: 0.25rem 0.6rem; border-radius: 2px; margin-bottom: 0.75rem; }

/* ---------- AWARDS ---------- */
.award-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.award-card { border: 2px solid var(--black); background: var(--white); padding: 2rem 1.6rem; border-radius: 3px; position: relative; transition: all 0.3s var(--ease); }
.award-card:hover { background: var(--olive-wash); transform: translateY(-4px); }
.award-card .aw-icon { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); margin-bottom: 1rem; }
.award-card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.award-card .aw-prize { font-family: var(--font-mono); font-weight: 700; font-size: 1.1rem; color: var(--olive-deep); margin-top: 0.75rem; }
.award-card p { font-size: 0.98rem; color: var(--grey); margin-bottom: 0; }
.award-card.dark { background: var(--black); border-color: var(--black); }
.award-card.dark h3 { color: var(--white); }
.award-card.dark .aw-icon { color: var(--olive-light); }
.award-card.dark p { color: rgba(245,242,229,0.75); }
.award-card.dark .aw-prize { color: var(--olive-light); }

/* ---------- VALUES ---------- */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.value-card { padding: 2rem 1.75rem; border-left: 3px solid var(--olive); background: var(--white); border-radius: 0 3px 3px 0; box-shadow: var(--shadow-sm); }
.value-card .v-num { font-family: var(--font-mono); font-size: 0.8rem; font-weight: 700; color: var(--olive-light); letter-spacing: 0.1em; margin-bottom: 0.85rem; }
.value-card h3 { margin-bottom: 0.6rem; }
.value-card p { font-size: 1rem; color: var(--grey); margin-bottom: 0; }

/* ---------- TIMELINE (deadlines) ---------- */
.timeline { border-top: 2px solid var(--black); }
.tl-row { display: grid; grid-template-columns: 200px 1fr auto; gap: 2rem; align-items: baseline; padding: 1.4rem 0; border-bottom: 1px solid var(--border); }
.tl-row .tl-date { font-family: var(--font-mono); font-weight: 700; font-size: 0.95rem; color: var(--olive-deep); letter-spacing: 0.02em; }
.tl-row .tl-label { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--black); }
.tl-row .tl-note { font-size: 0.95rem; color: var(--grey); }
.tl-row.highlight { background: var(--olive-wash); margin: 0 -1rem; padding: 1.4rem 1rem; border-radius: 3px; }

/* ---------- FAQ ---------- */
.faq { border-top: 2px solid var(--black); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 1.4rem 3rem 1.4rem 0; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--black); position: relative; transition: color 0.2s; }
.faq-q:hover { color: var(--olive); }
.faq-q::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--font-mono); font-size: 1.6rem; color: var(--olive); transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 0 1.4rem; color: var(--grey); margin: 0; max-width: 62ch; }

/* ---------- TEAM ---------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; }
.team-card .team-media { aspect-ratio: 4/5; min-height: 0; margin-bottom: 1.1rem; }
.team-card .role { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.4rem; }
.team-card h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.team-card p { font-size: 0.98rem; color: var(--grey); }

/* ---------- NEWSLETTER / CTA BAND ---------- */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 18ch; margin: 0.75rem auto 1.25rem; }
.cta-band p { max-width: 52ch; margin: 0 auto 2rem; }
.news-form { display: flex; gap: 0.75rem; max-width: 440px; margin: 0 auto; flex-wrap: wrap; }
.news-form input { flex: 1; min-width: 200px; padding: 0.9rem 1.1rem; border: 2px solid var(--black); background: var(--white); font-family: var(--font-mono); font-size: 0.85rem; border-radius: 2px; color: var(--ink); }
.news-form input:focus { outline: none; border-color: var(--olive); }
.news-success { display: none; font-family: var(--font-mono); font-size: 0.9rem; color: var(--olive-light); margin-top: 1rem; }
.news-success.show { display: block; }

/* ---------- FORM (contact) ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-detail { margin-bottom: 1.75rem; }
.contact-detail .c-label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.4rem; }
.contact-detail p { margin: 0; color: var(--ink); }
.form-field { margin-bottom: 1.25rem; }
.form-field label { display: block; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); margin-bottom: 0.4rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 0.8rem 1rem; border: 2px solid var(--border); background: var(--white);
  font-family: var(--font-body); font-size: 1rem; border-radius: 2px; color: var(--ink);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--olive); }

/* ---------- ARTICLE ---------- */
.article-hero { padding: 9rem 0 3rem; border-bottom: 2px solid var(--black); background: var(--cream); }
.article-meta-top { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); margin-bottom: 1.5rem; display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.article-meta-top .cat { color: var(--olive); font-weight: 700; }
.article-hero h1 { max-width: 20ch; margin-bottom: 1.25rem; }
.article-hero .standfirst { font-size: 1.3rem; font-style: italic; color: var(--ink); max-width: 40ch; }
.article-body { max-width: 720px; margin: 0 auto; padding: 3.5rem 2rem 2rem; }
.article-body p { font-size: 1.16rem; line-height: 1.75; margin-bottom: 1.5rem; }
.article-body h2 { font-size: 1.9rem; margin: 2.75rem 0 1.1rem; }
.article-body h3 { font-size: 1.3rem; margin: 2rem 0 0.75rem; color: var(--olive-deep); }
.article-body .dropcap::first-letter { font-family: var(--font-display); font-weight: 800; font-size: 3.6rem; float: left; line-height: 0.8; margin: 0.1em 0.12em 0 0; color: var(--olive); }
.article-body blockquote { border-left: 3px solid var(--olive); padding: 0.5rem 0 0.5rem 1.75rem; margin: 2rem 0; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--black); line-height: 1.3; letter-spacing: -0.01em; }
.article-body blockquote cite { display: block; font-family: var(--font-mono); font-weight: 400; font-style: normal; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--grey); margin-top: 0.85rem; text-transform: uppercase; }
.article-body .body-list { margin: 0 0 1.5rem 1.2rem; }
.article-body .body-list li { font-size: 1.14rem; line-height: 1.7; margin-bottom: 0.6rem; padding-left: 0.4rem; }
.article-body .body-list li::marker { color: var(--olive); content: '▪ '; }
.inline-link { color: var(--olive-deep); border-bottom: 1px solid var(--olive-light); }
.inline-link:hover { background: var(--olive-wash); }

.article-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; border-top: 2px solid var(--black); border-bottom: 1px solid var(--border); padding: 1.1rem 0; margin: 2.5rem 0; flex-wrap: wrap; }
.article-toolbar .read-time { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); }
.share-row { display: flex; gap: 0.5rem; }
.share-btn { width: 38px; height: 38px; border: 2px solid var(--border); background: var(--white); border-radius: 2px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s var(--ease); color: var(--ink); }
.share-btn:hover { border-color: var(--olive); background: var(--olive); color: var(--cream); }
.share-btn svg { width: 16px; height: 16px; }

/* related */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; }
.related-card { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.5rem; background: var(--white); border: 2px solid var(--black); border-radius: 3px; transition: all 0.3s var(--ease); }
.related-card:hover { background: var(--olive-wash); transform: translateY(-3px); }
.related-card .related-cat { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive); }
.related-card .related-title { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--black); line-height: 1.25; }

/* ---------- NEWS INDEX ---------- */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.news-card { background: var(--white); border: 2px solid var(--black); border-radius: 3px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.3s var(--ease); }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.news-card .card-media { aspect-ratio: 16/9; border-bottom: 2px solid var(--black); border-radius: 0; min-height: 0; }
.news-card .card-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.news-card .date { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive); margin-bottom: 0.75rem; }
.news-card h3 { font-size: 1.35rem; margin-bottom: 0.6rem; }
.news-card p { font-size: 0.98rem; color: var(--grey); margin-bottom: 1rem; }
.news-card .read-more { font-family: var(--font-mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--olive-deep); margin-top: auto; }

/* ---------- FOOTER ---------- */
.footer { background: var(--black); color: var(--cream); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand .brand { color: var(--cream); margin-bottom: 1rem; }
.footer-brand .brand span { color: var(--olive-light); }
.footer-brand p { color: rgba(245,242,229,0.65); font-size: 0.95rem; max-width: 34ch; }
.footer h4 { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--olive-light); margin-bottom: 1.1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a, .footer address a { color: rgba(245,242,229,0.75); font-size: 0.95rem; }
.footer ul a:hover, .footer address a:hover { color: var(--white); }
.footer address { font-style: normal; color: rgba(245,242,229,0.75); font-size: 0.95rem; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(245,242,229,0.15); padding-top: 1.75rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-family: var(--font-mono); font-size: 0.72rem; color: rgba(245,242,229,0.5); letter-spacing: 0.04em; }
.footer-social { display: flex; gap: 1.25rem; }
.footer-social a { color: rgba(245,242,229,0.6); }
.footer-social a:hover { color: var(--olive-light); }

/* ---------- COOKIE ---------- */
.cookie { position: fixed; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; max-width: 560px; margin: 0 auto; background: var(--black); color: var(--cream); padding: 1.4rem 1.6rem; border-radius: 3px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 1.5rem; z-index: 2000; transform: translateY(200%); transition: transform 0.5s var(--ease); flex-wrap: wrap; }
.cookie.show { transform: translateY(0); }
.cookie p { margin: 0; font-size: 0.85rem; color: rgba(245,242,229,0.8); flex: 1; min-width: 220px; }
.cookie p a { color: var(--olive-light); }
.cookie-actions { display: flex; gap: 0.6rem; }

/* copy toast */
.copy-toast { position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(200%); background: var(--olive); color: var(--cream); font-family: var(--font-mono); font-size: 0.8rem; padding: 0.8rem 1.4rem; border-radius: 3px; z-index: 3000; transition: transform 0.4s var(--ease); }
.copy-toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }

/* ---------- PAGE HERO (interior) ---------- */
.page-hero { padding: 10rem 0 4rem; border-bottom: 2px solid var(--black); background: var(--cream); position: relative; overflow: hidden; }
.page-hero .hero-grid { opacity: 0.4; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { margin: 1rem 0 1.25rem; max-width: 18ch; }
.page-hero p { font-size: 1.25rem; max-width: 46ch; color: var(--ink); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 940px) {
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0; flex-direction: column; align-items: flex-start;
    background: var(--cream); border-bottom: 2px solid var(--black); padding: 1.5rem 2rem; gap: 1.1rem;
    transform: translateY(-130%); transition: transform 0.4s var(--ease); max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links .btn { width: 100%; justify-content: center; }
  .hamburger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .tl-row { grid-template-columns: 1fr; gap: 0.35rem; }
  .tl-row .tl-note { grid-column: 1; }
}
@media (max-width: 560px) {
  .container, .container-narrow { padding: 0 1.25rem; }
  .hero { padding: 9rem 0 4rem; }
  .deadline-box .dl-clock { gap: 0.7rem; }
  .deadline-box .dl-unit b { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stat-strip .stat { min-width: 50%; border-bottom: 2px solid var(--black); }
  .article-body { padding-top: 2.5rem; }
}

/* ---------- PRINT ---------- */
@media print {
  .nav, .hamburger, .footer, .cookie, .article-toolbar, .hero-cta, .btn, .news-form { display: none !important; }
  body { background: #fff; color: #000; }
}

/* ---------- EDITIONS LEDGER ---------- */
.led-legend { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; padding-bottom: 1rem; border-bottom: 2px solid var(--black); }
.led-legend-note { font-family: var(--font-mono); font-size: 0.75rem; color: var(--grey); letter-spacing: 0.04em; }
.ledger { border-top: 1px solid var(--border); }
.led-entry { display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.led-head { display: flex; gap: 1.25rem; align-items: flex-start; }
.led-num { font-family: var(--font-display); font-weight: 800; font-size: 3.2rem; line-height: 0.9; color: var(--olive); letter-spacing: -0.04em; }
.led-year { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--black); }
.led-host { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--grey); margin-top: 0.35rem; text-transform: uppercase; }
.led-wins { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem 2rem; align-content: start; }
.led-win { display: grid; grid-template-columns: 110px 1fr; gap: 0.75rem; align-items: baseline; padding-bottom: 0.6rem; border-bottom: 1px dotted var(--border); }
.led-cat { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); }
.led-film { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--black); }
.led-dir { font-family: var(--font-body); font-style: italic; font-size: 0.9rem; color: var(--grey); grid-column: 2; }
@media (max-width: 860px) {
  .led-entry { grid-template-columns: 1fr; gap: 1.5rem; }
  .led-wins { grid-template-columns: 1fr; }
}
