@font-face{font-family:'Archivo';font-style:normal;font-weight:400 700;font-display:swap;src:url('../fonts/Archivo-normal.woff2') format('woff2')}
@font-face{font-family:'Bodoni Moda';font-style:italic;font-weight:400 900;font-display:swap;src:url('../fonts/BodoniModa-italic.woff2') format('woff2')}
@font-face{font-family:'Bodoni Moda';font-style:normal;font-weight:400 900;font-display:swap;src:url('../fonts/BodoniModa-normal.woff2') format('woff2')}
@font-face{font-family:'Source Serif 4';font-style:italic;font-weight:400 700;font-display:swap;src:url('../fonts/SourceSerif4-italic.woff2') format('woff2')}
@font-face{font-family:'Source Serif 4';font-style:normal;font-weight:400 700;font-display:swap;src:url('../fonts/SourceSerif4-normal.woff2') format('woff2')}
@font-face{font-family:'Space Mono';font-style:normal;font-weight:400;font-display:swap;src:url('../fonts/SpaceMono-400.woff2') format('woff2')}
@font-face{font-family:'Space Mono';font-style:normal;font-weight:700;font-display:swap;src:url('../fonts/SpaceMono-700.woff2') format('woff2')}

/* ==========================================================================
   Marquee — League of Filmmakers
   Tokens
   ========================================================================== */
:root {
  --ink:          #0c0b0a;
  --panel:        #131210;
  --paper:        #f2efe6;
  --paper-ink:    #0c0b0a;
  --paper-rule:   #d5cfbf;
  --paper-muted:  #6f6a5c;
  --paper-body:   #3d382c;

  --ink-body:     #eae5d9;
  --ink-dek:      #ded8c9;
  --ink-soft:     #b5af9e;
  --ink-nav:      #cfc9ba;
  --ink-muted:    #8f8878;

  /* Single accent. Follows the Ghost Admin accent colour so Portal matches; falls back to the design orange. */
  --accent:       var(--ghost-accent-color, #d94f2b);
  --accent-ink:   #0c0b0a;

  --rule:         rgba(242,239,230,0.16);
  --rule-strong:  rgba(242,239,230,0.20);
  --rule-heavy:   var(--paper);

  --display: "Bodoni Moda", "Didot", Georgia, serif;
  --serif:   "Source Serif 4", Georgia, serif;
  --sans:    "Archivo", Helvetica, Arial, sans-serif;
  --mono:    "Space Mono", "SFMono-Regular", Menlo, monospace;

  --s-1: 6px;  --s-2: 10px; --s-3: 14px; --s-4: 18px;
  --s-5: 26px; --s-6: 36px; --s-7: 52px; --s-8: 72px;

  --gutter: 36px;
  --max-read: 68ch;
  --rail: 320px;
  --t-fast: 120ms ease;

  --img-filter: grayscale(0.2);
  --img-filter-hero: grayscale(0.3) contrast(1.06);
  --img-filter-feature: grayscale(0.15);
}
html.is-fullcolor { --img-filter: none; --img-filter-hero: none; --img-filter-feature: none; }

/* --------------------------------------------------------------------------
   Reset + base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; color-scheme: dark; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent); }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; }

.skip { position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--accent-ink); padding: 10px 14px; z-index: 1000; }
.skip:focus { left: 8px; top: 8px; }

/* Utilities ---------------------------------------------------------------- */
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.kicker--muted { color: var(--ink-muted); }
.kicker--tag { background: var(--accent); color: var(--accent-ink); font-weight: 700; padding: 5px 10px; }
.kicker--tag:hover { color: var(--accent-ink); filter: brightness(1.08); }

.meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex; flex-wrap: wrap; gap: 16px; align-items: center;
}
.meta strong { color: var(--paper); font-weight: 600; }

.band { padding: var(--s-7) var(--gutter); }
.band--panel  { background: var(--panel); border-top: 1px solid var(--rule); }
.band--paper  { background: var(--paper); color: var(--paper-ink); }
.band--divide { border-top: 1px solid var(--rule); }

.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  border-bottom: 2px solid var(--rule-heavy);
  padding-bottom: 12px; margin-bottom: 30px;
}
.band--paper .section-head { border-bottom-color: var(--paper-ink); }
.section-head__title { font-family: var(--display); font-weight: 500; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.05; }
.section-head__link { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); }
.band--paper .section-head__link { color: var(--paper-muted); }

.grid { display: grid; gap: 28px; }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.gh-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding: 14px var(--gutter);
  background: var(--ink);
  border-bottom: 1px solid var(--rule);
}
.gh-head__logo img { height: 38px; width: auto; filter: brightness(0) invert(1); }
.gh-head__wordmark, .gh-foot__wordmark { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: -0.01em; }

.gh-nav {
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 12.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-nav);
}
.gh-nav a.is-current { color: var(--paper); }

.gh-head__actions { display: flex; align-items: center; gap: 14px; }
.gh-head__signin, .gh-head__search {
  font-family: var(--sans); font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-nav); background: none; border: 0; padding: 0; cursor: pointer; transition: color var(--t-fast);
}
.gh-head__search:hover, .gh-head__signin:hover { color: var(--accent); }

.btn {
  display: inline-block;
  font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 16px; border: 0; cursor: pointer; line-height: 1.5;
}
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { color: var(--accent-ink); filter: brightness(1.08); }
.btn--ink { background: var(--ink); color: var(--paper); padding: 15px 22px; }
.btn--ink:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; background: var(--panel); }
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: var(--img-filter-hero); }
.hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,10,0.60) 0%, rgba(12,11,10,0.10) 34%, rgba(12,11,10,0.95) 100%); }
.hero__body { position: relative; width: 100%; padding: 56px var(--gutter) 44px; display: flex; flex-direction: column; gap: var(--s-4); }
.hero__tags { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(44px, 6.2vw, 86px); line-height: 0.96; letter-spacing: -0.02em;
  max-width: 15ch; text-wrap: pretty;
}
.hero__dek { font-family: var(--serif); font-size: 21px; line-height: 1.45; color: var(--ink-dek); max-width: 60ch; }

/* --------------------------------------------------------------------------
   Secondary row + Dispatch
   -------------------------------------------------------------------------- */
.lead-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); border-top: 1px solid var(--rule); }
.lead-row > * { padding: 28px 30px; border-right: 1px solid var(--rule); }
.lead-row > *:last-child { border-right: 0; }

.card { display: flex; flex-direction: column; gap: 13px; }
.card__img { width: 100%; height: 190px; object-fit: cover; filter: var(--img-filter); }
.card__title { font-family: var(--display); font-size: 28px; line-height: 1.08; text-wrap: pretty; font-weight: 400; }
.card__dek { font-family: var(--serif); font-size: 16px; line-height: 1.5; color: var(--ink-soft); }
.card__meta { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }

.dispatch { background: var(--panel); display: flex; flex-direction: column; gap: 16px; }
.dispatch__head { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted); border-bottom: 1px solid var(--rule); padding-bottom: 12px; }
.dispatch__list { display: flex; flex-direction: column; gap: 15px; }
.dispatch__item { display: flex; gap: 14px; }
.dispatch__date { font-family: var(--mono); font-size: 12px; color: var(--ink-muted); padding-top: 4px; flex: none; }
.dispatch__title { font-family: var(--serif); font-size: 18px; line-height: 1.3; }
.dispatch__all { font-size: 11.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }

/* --------------------------------------------------------------------------
   The Index (numbered ledger). Numbers come from a CSS counter.
   -------------------------------------------------------------------------- */
.index__rows { display: flex; flex-direction: column; counter-reset: index; }
.index__row {
  display: grid; grid-template-columns: 64px minmax(0, 1fr) auto; gap: 24px; align-items: center;
  padding: 20px 0; border-top: 1px solid var(--rule-strong);
  counter-increment: index;
}
.index__rows .index__row:last-child { border-bottom: 1px solid var(--rule-strong); }
.index__num { font-family: var(--display); font-size: 34px; line-height: 0.9; color: var(--accent); }
.index__num::before { content: counter(index, decimal-leading-zero); }
.index__title { font-family: var(--serif); font-size: clamp(21px, 2.4vw, 30px); line-height: 1.18; }
.index__meta { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); text-align: right; }
.index__more { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-top: var(--s-5); display: inline-block; }
@media (max-width: 640px) {
  .index__row { grid-template-columns: 40px minmax(0, 1fr); }
  .index__meta { grid-column: 2; text-align: left; }
}

/* Listing pages (/latest/, tags, authors) reuse the ledger */
.listing__intro { font-family: var(--serif); font-size: 18px; color: var(--ink-soft); max-width: 60ch; margin: -10px 0 30px; }
.pagination { display: flex; justify-content: space-between; align-items: center; margin-top: var(--s-6); font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.pagination__link { color: var(--accent); }

/* --------------------------------------------------------------------------
   Editors' Picks
   -------------------------------------------------------------------------- */
.pick { display: flex; flex-direction: column; gap: 12px; }
.pick__img { width: 100%; height: 210px; object-fit: cover; }
.pick__title { font-family: var(--display); font-size: clamp(24px, 2.6vw, 30px); line-height: 1.08; text-wrap: pretty; font-weight: 400; }
.pick__dek { font-family: var(--serif); font-size: 16px; line-height: 1.5; color: var(--paper-body); }
.pick__meta { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper-muted); }

/* --------------------------------------------------------------------------
   Feature row + stubs
   -------------------------------------------------------------------------- */
.feature {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 34px; align-items: center;
  padding-bottom: 28px; border-bottom: 1px solid var(--rule); margin-bottom: 28px;
}
.feature__img { width: 100%; height: 260px; object-fit: cover; filter: var(--img-filter-feature); }
.feature__body { display: flex; flex-direction: column; gap: 14px; }
.feature__title { font-family: var(--display); font-size: clamp(26px, 3vw, 38px); line-height: 1.08; text-wrap: pretty; font-weight: 400; }
.feature__dek { font-family: var(--serif); font-size: 18px; line-height: 1.5; color: var(--ink-soft); max-width: 52ch; }

.stub { display: flex; flex-direction: column; gap: 11px; }
.stub__title { font-family: var(--display); font-size: 24px; line-height: 1.12; font-weight: 400; }
.stub__meta { font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   Opportunities / Watch
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); border-top: 1px solid var(--rule); }
.split > * { padding: 48px var(--gutter); border-right: 1px solid var(--rule); }
.split > *:last-child { border-right: 0; }
.list-head { font-family: var(--display); font-size: 32px; font-weight: 500; margin-bottom: var(--s-5); }

.op { display: flex; flex-direction: column; gap: 7px; padding-bottom: 18px; border-bottom: 1px solid var(--rule); margin-bottom: 18px; }
.op:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.op__title { font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.24; }
.op__meta { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }

.watch { display: flex; gap: 16px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--rule); margin-bottom: 18px; }
.watch:last-child { border-bottom: 0; padding-bottom: 0; margin-bottom: 0; }
.watch__thumb { width: 132px; height: 80px; object-fit: cover; flex: none; filter: var(--img-filter); }
.watch__title { font-family: var(--serif); font-size: 19px; line-height: 1.25; }
.watch__dur { font-family: var(--mono); font-size: 11px; color: var(--ink-muted); }

/* --------------------------------------------------------------------------
   Membership CTA band (Ghost Portal handles the form)
   -------------------------------------------------------------------------- */
.cta {
  padding: 56px var(--gutter); background: var(--accent); color: var(--accent-ink);
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta__title { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4vw, 46px); line-height: 1.05; max-width: 22ch; }
.cta__form { display: flex; flex-direction: column; gap: 12px; min-width: 300px; flex: 1; }
.cta__note { font-size: 14px; line-height: 1.5; font-weight: 500; }
.cta__row { display: flex; }
.cta__input { flex: 1; min-width: 0; background: var(--ink); color: var(--paper); border: 0; padding: 15px 16px; font-family: var(--sans); font-size: 14px; }
.cta__input::placeholder { color: var(--ink-muted); }
.cta__msg { display: none; font-size: 13px; font-weight: 600; }
.cta__form[data-members-form].success .cta__msg--success { display: block; }
.cta__form[data-members-form].error .cta__msg--error { display: block; }
.cta__form[data-members-form].success .cta__row,
.cta__form[data-members-form].success .cta__note { display: none; }

/* --------------------------------------------------------------------------
   Article
   -------------------------------------------------------------------------- */
.post-head { padding: var(--s-7) var(--gutter) 0; max-width: 1180px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.post-head__tags { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); }
.post-title { font-family: var(--display); font-weight: 700; font-size: clamp(40px, 6vw, 82px); line-height: 0.97; letter-spacing: -0.02em; max-width: 18ch; text-wrap: pretty; }
.post-dek { font-family: var(--serif); font-size: clamp(19px, 2vw, 24px); line-height: 1.45; color: var(--ink-dek); max-width: 58ch; }
.post-byline {
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center; padding: 18px 0;
  border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-muted);
}
.post-byline strong { color: var(--paper); font-weight: 600; }
.post-byline__tools { margin-left: auto; display: flex; gap: 14px; }

.post-hero { padding: 34px var(--gutter) 0; max-width: 1180px; margin: 0 auto; }
.post-hero img { width: 100%; height: clamp(280px, 42vw, 520px); object-fit: cover; }
.caption { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-muted); padding-top: 10px; }
.caption a { text-decoration: underline; }

/* Two-column body + rail. Explicit tracks on purpose. */
.post-layout {
  max-width: 1180px; margin: 0 auto; padding: 44px var(--gutter) 0;
  display: grid; grid-template-columns: minmax(0, 1.9fr) minmax(240px, 1fr); gap: 48px; align-items: start;
}
.post-layout--single { grid-template-columns: minmax(0, 1fr); }
@media (max-width: 860px) { .post-layout { grid-template-columns: minmax(0, 1fr); gap: 34px; } }

.post-content { min-width: 0; display: flex; flex-direction: column; gap: 26px; padding-bottom: var(--s-7); }

/* Ghost editor output ------------------------------------------------------ */
.gh-content { display: flex; flex-direction: column; gap: 26px; }
.gh-content > * { max-width: var(--max-read); }
.gh-content p, .gh-content li { font-family: var(--serif); font-size: 20.5px; line-height: 1.62; color: var(--ink-body); }
.gh-content ul, .gh-content ol { padding-left: 1.2em; }
.gh-content li + li { margin-top: 0.4em; }
.gh-content a { color: var(--paper); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }
.gh-content a:hover { color: var(--accent); }
.gh-content h2, .gh-content h3, .gh-content h4 { font-family: var(--display); font-weight: 500; line-height: 1.1; margin-top: 12px; }
.gh-content h2 { font-size: clamp(28px, 3vw, 38px); }
.gh-content h3 { font-size: clamp(24px, 2.4vw, 30px); }
.gh-content h4 { font-size: 22px; }
.gh-content hr { border: 0; border-top: 1px solid var(--rule-strong); width: 100%; }
.gh-content strong { color: var(--paper); }
.gh-content img { width: 100%; }
.gh-content figure { display: flex; flex-direction: column; }
.gh-content figcaption { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-muted); padding-top: 10px; }
.gh-content figcaption p { font: inherit; color: inherit; }
.gh-content .kg-width-wide, .gh-content .kg-width-full { max-width: none; }
.gh-content .kg-width-full { width: calc(100% + var(--gutter) * 2); margin-left: calc(var(--gutter) * -1); }
.gh-content .kg-image-card img { height: auto; }

/* Drop cap on the first paragraph only */
.gh-content > p:first-of-type::first-letter {
  font-family: var(--display); font-size: 64px; line-height: 0.78; float: left; padding: 6px 14px 0 0; color: var(--accent);
}

/* Pull quotes: Ghost's alt blockquote = the design's pullquote. Regular blockquote is quieter. */
.gh-content blockquote { margin: 0; padding: 0 0 0 20px; border-left: 2px solid var(--accent); }
.gh-content blockquote p { color: var(--ink-dek); font-style: italic; }
.gh-content blockquote.kg-blockquote-alt {
  padding: 24px 0; border-left: 0; border-top: 1px solid var(--rule-strong); border-bottom: 1px solid var(--rule-strong);
  font-family: var(--display); font-style: italic; font-size: clamp(24px, 3vw, 34px); line-height: 1.22; color: var(--paper); text-align: left;
}
.gh-content blockquote.kg-blockquote-alt p { font: inherit; color: inherit; }

/* Ghost cards on the dark ground */
.gh-content .kg-callout-card { background: var(--panel); border: 1px solid var(--rule); border-radius: 0; }
.gh-content .kg-callout-card-accent { background: var(--accent); color: var(--accent-ink); }
.gh-content .kg-callout-text { font-family: var(--serif); font-size: 18px; }
.gh-content .kg-bookmark-container { background: var(--panel); border: 1px solid var(--rule); border-radius: 0; color: var(--paper); }
.gh-content .kg-bookmark-container:hover { text-decoration: none; }
.gh-content .kg-bookmark-title, .gh-content .kg-bookmark-description, .gh-content .kg-bookmark-metadata { color: inherit; }
.gh-content .kg-toggle-card { background: var(--panel); border: 1px solid var(--rule); border-radius: 0; }
.gh-content .kg-button-card .kg-btn { border-radius: 0; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.gh-content .kg-btn-accent { background: var(--accent); color: var(--accent-ink); }
.gh-content .kg-header-card, .gh-content .kg-signup-card { border-radius: 0; }
.gh-content .kg-embed-card iframe { max-width: 100%; }
.gh-content .kg-gallery-image img { height: 100%; }
.gh-content .kg-product-card-container, .gh-content .kg-file-card-container { background: var(--panel); border: 1px solid var(--rule); border-radius: 0; color: var(--paper); }
.gh-content pre { background: var(--panel); border: 1px solid var(--rule); padding: 16px; overflow-x: auto; font-family: var(--mono); font-size: 14px; }
.gh-content code { font-family: var(--mono); font-size: 0.9em; }
.gh-content table { border-collapse: collapse; width: 100%; font-family: var(--serif); font-size: 17px; }
.gh-content th, .gh-content td { border-bottom: 1px solid var(--rule); padding: 10px 12px; text-align: left; }

/* Members-only: fade the tail of the public preview and put the ask inline */
.gh-content--gated { position: relative; -webkit-mask-image: linear-gradient(180deg, #000 60%, transparent 100%); mask-image: linear-gradient(180deg, #000 60%, transparent 100%); }

.author-box { display: flex; gap: 20px; align-items: flex-start; padding: 26px; background: var(--panel); border: 1px solid var(--rule); max-width: var(--max-read); }
.author-box--page { max-width: none; margin-bottom: 36px; }
.author-box__avatar { width: 64px; height: 64px; background: #26241f; flex: none; object-fit: cover; }
.author-box__name { font-family: var(--display); font-size: 24px; font-weight: 400; }
.author-box__bio { font-family: var(--serif); font-size: 16px; line-height: 1.5; color: var(--ink-soft); }
.author-box > div { display: flex; flex-direction: column; gap: 6px; }

.post-comments { max-width: var(--max-read); }

/* Rail */
.post-rail { min-width: 0; display: flex; flex-direction: column; gap: 26px; position: sticky; top: 24px; }
.rail-card { padding: 24px; background: var(--panel); border: 1px solid var(--rule); display: flex; flex-direction: column; gap: 14px; }
.rail-card__head { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-muted); }
.rail-card__link { font-family: var(--serif); font-size: 18px; line-height: 1.3; padding-bottom: 14px; border-bottom: 1px solid var(--rule); }
.rail-card__link:last-child { padding-bottom: 0; border-bottom: 0; }

.rail-cta { padding: 24px; background: var(--accent); color: var(--accent-ink); display: flex; flex-direction: column; gap: 12px; }
.rail-cta--inline { max-width: var(--max-read); margin-top: -40px; position: relative; }
.rail-cta__title { font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1.1; }
.rail-cta__note { font-size: 13.5px; line-height: 1.5; }
.rail-cta .btn--ink { padding: 13px 18px; text-align: center; }
.rail-cta__form { display: flex; flex-direction: column; gap: 8px; }
.rail-cta__form[data-members-form].success .cta__msg--success, .rail-cta__form[data-members-form].error .cta__msg--error { display: block; }
.rail-cta__form[data-members-form].success .cta__input, .rail-cta__form[data-members-form].success .btn { display: none; }

.error-page { min-height: 50vh; display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.error-page a { color: var(--accent); }

/* --------------------------------------------------------------------------
   Footer — inverted to paper
   -------------------------------------------------------------------------- */
.gh-foot {
  padding: 48px var(--gutter); background: var(--paper); color: var(--paper-ink);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; align-items: start;
}
.gh-foot__logo img { height: 44px; width: auto; filter: brightness(0); }
.gh-foot__blurb { font-family: var(--serif); font-size: 15px; line-height: 1.5; color: var(--paper-body); max-width: 30ch; margin-top: 14px; }
.gh-foot__col { display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--paper-body); }
.gh-foot__head { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper-muted); }
.gh-copyright { padding: 18px var(--gutter); background: var(--paper); color: var(--paper-muted); font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; border-top: 1px solid var(--paper-rule); }

/* --------------------------------------------------------------------------
   Narrow screens
   -------------------------------------------------------------------------- */
@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .lead-row > *, .split > * { border-right: 0; border-bottom: 1px solid var(--rule); }
  .hero { min-height: 460px; }
  .hero__body { padding: 40px var(--gutter) 32px; }
  /* Mobile nav (not in the design): one scrolling row under the logo, no drawer. */
  .gh-head { gap: 12px; }
  .gh-nav { order: 3; width: 100%; flex-wrap: nowrap; overflow-x: auto; gap: 18px; font-size: 11.5px; padding: 6px 0 2px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .gh-nav::-webkit-scrollbar { display: none; }
  .gh-nav a { white-space: nowrap; }
  .gh-head__logo img { height: 30px; }
  .gh-head__search, .gh-head__signin { display: none; }
  .gh-head__logo { flex: 1; }
  .post-rail { position: static; }
  .cta__title { max-width: none; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; } }

/* ==========================================================================
   14. Section pages (from handoff §14). Each section has its own layout.
   ========================================================================== */
/* --- Shared section furniture ------------------------------------------- */
.sect-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  padding: 12px var(--gutter);
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sect-nav__label { color: var(--ink-muted); margin-right: 6px; }
.sect-nav__link { color: var(--ink-nav); }
.sect-nav__link.is-active { color: var(--accent); }

.sect-mast {
  padding: var(--s-7) var(--gutter) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.sect-mast__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.sect-mast__desc {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.45;
  color: var(--ink-dek);
  max-width: 58ch;
}
.sect-bar {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 0;
  margin-top: var(--s-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.pager {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-top: var(--s-6);
  padding-top: 20px;
  border-top: 2px solid var(--rule-heavy);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.pager__next { color: var(--accent); }

/* --- 14a. Featured: lead + double features ------------------------------ */
.arch-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: var(--s-6);
  align-items: center;
}
@media (max-width: 860px) { .arch-lead { grid-template-columns: minmax(0, 1fr); } }
.arch-lead__img { width: 100%; height: clamp(260px, 34vw, 420px); object-fit: cover; filter: var(--img-filter-hero); }
.arch-lead__body { display: flex; flex-direction: column; gap: var(--s-3); }
.arch-lead__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
.arch-lead__dek { font-family: var(--serif); font-size: 19px; line-height: 1.5; color: var(--ink-soft); max-width: 46ch; }

.duo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--s-6);
  padding: 30px 0;
  border-top: 1px solid var(--rule);
}
.duo:first-of-type { border-top: 0; padding-top: 0; }
.arch-item { display: flex; flex-direction: column; gap: 12px; }
.arch-item__img { width: 100%; height: 240px; object-fit: cover; filter: var(--img-filter); }
.arch-item__title { font-family: var(--display); font-size: clamp(26px, 2.8vw, 34px); line-height: 1.06; text-wrap: pretty; }
.arch-item__dek { font-family: var(--serif); font-size: 16px; line-height: 1.5; color: var(--ink-soft); max-width: 46ch; }

/* --- 14b. Interviews: portrait-led + roster ----------------------------- */
.int-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 44px; }
.int { display: flex; flex-direction: column; gap: 14px; }
.int__portrait { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: var(--img-filter); }
.int__name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.int__quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.22;
  color: var(--paper);
}
.int__sub { font-family: var(--serif); font-size: 16px; line-height: 1.5; color: var(--ink-soft); }

/* The archive as a roster of names — dense, no cards. */
.names { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.names a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* --- 14c. Opinions: argument stack, byline first ------------------------ */
.arg-stack { display: flex; flex-direction: column; }
.arg {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 2.4fr);
  gap: var(--s-6);
  padding: 34px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.arg-stack .arg:first-child { border-top: 0; padding-top: 0; }
@media (max-width: 760px) { .arg { grid-template-columns: minmax(0, 1fr); gap: var(--s-3); } }
.arg__who { display: flex; flex-direction: column; gap: 6px; }
.arg__author { font-family: var(--display); font-style: italic; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.05; }
.arg__role { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.arg__body { display: flex; flex-direction: column; gap: 12px; }
.arg__title { font-family: var(--serif); font-weight: 700; font-size: clamp(24px, 2.8vw, 36px); line-height: 1.18; text-wrap: pretty; }
.arg__dek { font-family: var(--serif); font-size: 17px; line-height: 1.5; color: var(--ink-soft); max-width: 52ch; }

/* Counterpoint: two signed pieces set against each other */
.pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.pair__side { display: flex; flex-direction: column; gap: 12px; padding: 0 var(--s-5); border-left: 1px solid var(--rule); }
.pair__side:first-child { padding-left: 0; border-left: 0; }
.pair__title { font-family: var(--serif); font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); line-height: 1.18; }

/* --- 14d. Opportunities: deadline board -------------------------------- */
.board { display: flex; flex-direction: column; gap: 40px; }
.board__head { display: flex; align-items: center; gap: 16px; margin-bottom: 4px; }
.board__rule { flex: 1; height: 1px; background: var(--rule); }

.opp-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 130px 150px 80px;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--rule);
}
.opp-date { font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.opp-main { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.opp-title { font-family: var(--serif); font-weight: 600; font-size: 21px; line-height: 1.24; }
.opp-sub { font-family: var(--serif); font-size: 15px; line-height: 1.45; color: var(--ink-muted); }
.chip {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--rule-strong);
  padding: 5px 9px;
  justify-self: start;
  color: var(--ink-soft);
}
.opp-place { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); }
.opp-apply { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); text-align: right; }

@media (max-width: 900px) {
  .opp-row { grid-template-columns: 92px minmax(0, 1fr); }
  .chip, .opp-place, .opp-apply { grid-column: 2; text-align: left; }
}

/* --- 14e. Watch: player-scale hero + episodes -------------------------- */
.watch-hero { position: relative; display: block; overflow: hidden; }
.watch-hero__img { width: 100%; height: clamp(300px, 46vw, 560px); object-fit: cover; }
.watch-hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(12,11,10,0.35) 0%, rgba(12,11,10,0.05) 40%, rgba(12,11,10,0.92) 100%);
}
.watch-hero__play {
  position: absolute; top: 24px; left: 24px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--paper); background: rgba(12,11,10,0.55);
  padding: 10px 16px; color: var(--paper);
}
.watch-hero__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px var(--gutter); display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.watch-hero__title { font-family: var(--display); font-weight: 700; font-size: clamp(30px, 4.4vw, 56px); line-height: 1.0; max-width: 24ch; }
.watch-hero__dek { font-family: var(--serif); font-size: 18px; line-height: 1.45; color: var(--ink-dek); max-width: 50ch; }

.ep-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.ep { display: flex; flex-direction: column; gap: 12px; }
.ep__frame { position: relative; display: block; }
.ep__frame img { width: 100%; height: 190px; object-fit: cover; }
.ep__dur {
  position: absolute; left: 12px; bottom: 12px;
  background: var(--paper); color: var(--paper-ink);
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em;
  padding: 5px 9px;
}
.ep__title { font-family: var(--display); font-size: 25px; line-height: 1.1; }

.series { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; margin-top: var(--s-6); padding-top: 18px; border-top: 1px solid var(--rule); }
.series a { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); }

/* --- 14f. Shorts Fest: festival programme ------------------------------ */
.prog { display: flex; flex-direction: column; gap: 44px; }
.prog__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  border-bottom: 2px solid var(--rule-heavy); padding-bottom: 12px; margin-bottom: 26px;
}
.prog__name { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 3vw, 36px); line-height: 1.05; }
.prog__time { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }

.film-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.film { display: flex; flex-direction: column; gap: 10px; }
.film__poster { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; filter: var(--img-filter-feature); }
.film__title { font-family: var(--display); font-size: 24px; line-height: 1.08; }
.film__credit { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); }
.film__run { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--accent); }

/* --- 14g. Section pages as mini homepages ------------------------------
   Every section page opens like the homepage does: a scrim hero for that
   section's top story, a two-card row with a section rail, THEN the
   section's own archetype block, a paper cross-section strip, and a CTA
   written for that section. Only the middle changes between sections.
   ---------------------------------------------------------------------- */
.hero--section { min-height: 440px; }
.hero--section .hero__title { font-size: clamp(36px, 5vw, 68px); max-width: 20ch; }
.hero--section .hero__body { padding: 44px var(--gutter) 36px; }

/* Opinions has no photography by design — its hero is a quote instead. */
.quote-hero {
  padding: var(--s-7) var(--gutter);
  background: var(--panel);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: flex-start;
}
.quote-hero__quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(30px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: 34ch;
  text-wrap: pretty;
}
.quote-hero__attr { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.quote-hero__link { font-family: var(--serif); font-size: 19px; line-height: 1.4; color: var(--ink-soft); max-width: 52ch; }

/* Rail inside a section page reuses .dispatch; the left column holds a
   rank or a time instead of a date — no new component needed. */
.dispatch__date.is-rank { color: var(--accent); }

/* --- Theme additions for §14 ------------------------------------------- */
.pager__links { display: flex; gap: 22px; }
.pager__prev { color: var(--ink-muted); }
/* Double features as one grid: rules between rows come from nth-child, so any post count works. */
.duo-all { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 0 var(--s-6); }
.duo-all .arch-item { padding: 30px 0; border-top: 1px solid var(--rule); }
.duo-all .arch-item:nth-child(-n+2) { border-top: 0; padding-top: 0; }
.lead-row__stubs { display: flex; flex-direction: column; gap: 26px; }
.arch-item__title, .int__quote, .ep__title, .film__title, .pair__title, .arg__title { font-weight: 400; }
.arg__title, .pair__title { font-weight: 700; }
.int__quote { margin: 0; }
.quote-hero__quote { margin: 0; }
.opp-row .opp-apply { white-space: nowrap; }
.watch-hero__title, .watch-hero__dek, .watch-hero__body { display: block; }
.watch-hero__body { display: flex; }
.ep__frame img { filter: var(--img-filter); }
.watch-hero__img { filter: var(--img-filter-hero); }
@media (max-width: 720px) {
  .sect-nav { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
  .sect-nav::-webkit-scrollbar { display: none; }
  .sect-nav a, .sect-nav span { white-space: nowrap; }
  .pair__side { padding: 0 0 20px; border-left: 0; border-bottom: 1px solid var(--rule); margin-bottom: 20px; }
}
.dispatch__list--rank { counter-reset: rank; }
.dispatch__list--rank .dispatch__item { counter-increment: rank; }
.dispatch__list--rank .dispatch__date { color: var(--accent); }
.dispatch__list--rank .dispatch__date::before { content: counter(rank, decimal-leading-zero); }
.dispatch__list--rank .dispatch__date-txt { display: none; }
.opp-row--4 { grid-template-columns: 92px minmax(0, 1fr) 130px 80px; }
@media (max-width: 900px) { .opp-row--4 { grid-template-columns: 92px minmax(0, 1fr); } }
