/* ═══════════════════════════════════════════════════════════
   NITRATE ONLINE — Shared Design System
   Art-deco film criticism archive, Est. 1996
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --black:      #0a0a0a;
  --charcoal:   #111111;
  --dark:       #1a1a1a;
  --mid:        #2a2a2a;
  --gold:       #c9a84c;
  --gold-light: #e8d5a3;
  --gold-dim:   #7a6428;
  --cream:      #f5eed8;
  --teal-light: #00a8a8;
  --text:       #e0d9c8;
  --text-muted: #a09888;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Raleway', Arial, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; }
body { background: var(--black); color: var(--text); font-family: var(--font-body); line-height: 1.7; }
a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
img { display: block; max-width: 100%; height: auto; }

/* ── MASTHEAD ── */
.masthead {
  background: var(--charcoal);
  border-bottom: 1px solid var(--gold-dim);
  position: sticky; top: 0; z-index: 100;
}
.masthead-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 62px;
}
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 42px; width: auto; }

.primary-nav { display: flex; align-items: center; gap: .15rem; list-style: none; }
.primary-nav a {
  font-family: var(--font-ui); font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-muted); padding: .5rem .7rem;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.primary-nav a:hover,
.primary-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-search {
  background: none; border: 1px solid var(--gold-dim);
  color: var(--text-muted); font-family: var(--font-ui);
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .32rem .75rem; display: inline-block; transition: all .2s;
}
.nav-search:hover { border-color: var(--gold); color: var(--gold); }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--charcoal); border-bottom: 1px solid #1c1c1c; }
.breadcrumb-inner {
  max-width: 1200px; margin: 0 auto; padding: .55rem 2rem;
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--font-ui); font-size: .58rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold-dim); }

/* ── ART-DECO ORNAMENTS ── */
.deco-rule {
  border: none; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim) 20%, var(--gold) 50%, var(--gold-dim) 80%, transparent);
  margin-bottom: 2rem;
}
.deco-divider {
  display: flex; align-items: center; gap: 1.25rem;
  margin: 2.5rem auto; max-width: 1200px; padding: 0 2rem;
}
.deco-divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim)); }
.deco-divider-line:last-child { background: linear-gradient(90deg, var(--gold-dim), transparent); }
.deco-divider-ornament { display: flex; align-items: center; gap: .45rem; }
.d-chev { width: 0; height: 0; border-style: solid; }
.d-chev-l { border-width: 5px 7px 5px 0; border-color: transparent var(--gold-dim) transparent transparent; }
.d-chev-r { border-width: 5px 0 5px 7px; border-color: transparent transparent transparent var(--gold-dim); }
.d-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

/* ── SECTION UTILITIES ── */
.section { max-width: 1200px; margin: 0 auto; padding: 3.5rem 2rem; }
.section-tag {
  font-family: var(--font-ui); font-size: .58rem;
  letter-spacing: .3em; text-transform: uppercase; color: var(--teal-light); margin-bottom: .4rem;
}
.section-title {
  font-family: var(--font-display); font-size: 1.7rem;
  font-weight: 700; color: var(--cream); margin-bottom: 1rem;
}

/* ════════════════════════════════════════
   HOME PAGE
════════════════════════════════════════ */

/* Hero */
.hero { background: var(--black); overflow: hidden; position: relative; }
.hero::before, .hero::after {
  content: ''; position: absolute; left: 0; right: 0; height: 12px;
  background: repeating-linear-gradient(90deg,
    var(--charcoal) 0, var(--charcoal) 16px, var(--black) 16px, var(--black) 26px);
  z-index: 1;
}
.hero::before { top: 0; border-bottom: 1px solid var(--gold-dim); }
.hero::after  { bottom: 0; border-top: 1px solid var(--gold-dim); }
.hero-inner {
  max-width: 900px; margin: 0 auto; padding: 70px 2rem;
  text-align: center; position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-ui); font-size: .62rem;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--teal-light); margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.05; color: var(--cream); margin-bottom: 1rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-ornament {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center; margin: 1.5rem auto; max-width: 400px;
}
.hero-ornament-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-dim)); }
.hero-ornament-line:last-child { background: linear-gradient(90deg, var(--gold-dim), transparent); }
.hero-ornament-diamond { width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); }
.hero-ornament-chevron { width: 0; height: 0; border-style: solid; }
.hero-ornament-chevron-l { border-width: 5px 7px 5px 0; border-color: transparent var(--gold-dim) transparent transparent; }
.hero-ornament-chevron-r { border-width: 5px 0 5px 7px; border-color: transparent transparent transparent var(--gold-dim); }
.hero-desc {
  font-size: 1.1rem; font-style: italic; color: var(--text-muted);
  line-height: 1.8; max-width: 560px; margin: 0 auto 1.5rem;
}
.hero-tagline {
  font-family: var(--font-ui); font-size: .6rem;
  letter-spacing: .25em; text-transform: uppercase; color: var(--gold-dim);
}

/* Featured grid */
.featured-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5px; background: var(--gold-dim); border: 1px solid var(--gold-dim);
}
.review-card {
  background: var(--dark); overflow: hidden;
  display: flex; flex-direction: column; transition: background .25s;
}
.review-card:hover { background: var(--mid); }
.review-card:hover .card-title { color: var(--gold-light); }
.review-card.card-large { grid-row: span 2; }

.card-image { overflow: hidden; flex-shrink: 0; background: var(--mid); height: 150px; }
.card-large .card-image { height: 240px; }
.card-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.card-image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--mid) 0%, var(--charcoal) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim); font-size: 2rem;
}
.card-body { padding: 1.1rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.card-tag {
  font-family: var(--font-ui); font-size: .54rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--teal-light);
}
.card-title {
  font-family: var(--font-display); font-style: italic;
  font-size: 1.15rem; font-weight: 700; color: var(--cream); line-height: 1.2; transition: color .2s;
}
.card-large .card-title { font-size: 1.55rem; }
.card-byline { font-family: var(--font-ui); font-size: .58rem; letter-spacing: .08em; color: var(--text-muted); }
.card-excerpt {
  font-size: .9rem; line-height: 1.65; color: var(--text-muted);
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.card-large .card-excerpt { -webkit-line-clamp: 4; line-clamp: 4; }
.card-link {
  font-family: var(--font-ui); font-size: .58rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-top: auto; padding-top: .5rem;
  display: flex; align-items: center; gap: .35rem;
}
.card-link::after { content: '›'; font-size: 1rem; line-height: 0; position: relative; top: 1px; }

/* Recent / archive list section */
.recent-section { background: var(--charcoal); border-top: 1px solid var(--gold-dim); border-bottom: 1px solid var(--gold-dim); }
.recent-inner {
  max-width: 1200px; margin: 0 auto; padding: 3.5rem 2rem;
  display: grid; grid-template-columns: 1fr 310px; gap: 4rem;
}
.review-list { display: flex; flex-direction: column; }
.review-list-item {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #1e1e1e; align-items: start;
}
.review-list-item:first-child { border-top: 1px solid #1e1e1e; }
.review-list-thumb { width: 90px; height: 60px; overflow: hidden; background: var(--mid); flex-shrink: 0; }
.review-list-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.review-list-thumb-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--mid), var(--dark)); }
.review-list-tag { font-family: var(--font-ui); font-size: .54rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-light); }
.review-list-title { font-family: var(--font-display); font-style: italic; font-size: 1rem; font-weight: 700; color: var(--cream); line-height: 1.2; }
.review-list-title a:hover { color: var(--gold-light); }
.review-list-byline { font-family: var(--font-ui); font-size: .56rem; letter-spacing: .08em; color: var(--text-muted); }

/* Features strip */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { border-top: 2px solid var(--gold-dim); padding-top: 1.1rem; }
.feature-card:hover .feature-title { color: var(--gold-light); }
.feature-tag { font-family: var(--font-ui); font-size: .54rem; letter-spacing: .22em; text-transform: uppercase; color: var(--teal-light); margin-bottom: .4rem; }
.feature-title { font-family: var(--font-display); font-style: italic; font-size: 1rem; font-weight: 700; color: var(--cream); line-height: 1.25; margin-bottom: .4rem; transition: color .2s; }
.feature-byline { font-family: var(--font-ui); font-size: .57rem; letter-spacing: .08em; color: var(--text-muted); }

/* ════════════════════════════════════════
   REVIEW / ARTICLE PAGES
════════════════════════════════════════ */

/* Article header */
.article-header {
  background: var(--charcoal); border-bottom: 1px solid var(--gold-dim);
  border-top: 10px solid var(--black); position: relative;
}
.article-header::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
  background: repeating-linear-gradient(90deg,
    var(--dark) 0, var(--dark) 14px, var(--black) 14px, var(--black) 22px);
}
.article-header-inner { max-width: 1200px; margin: 0 auto; padding: 2rem 2rem 1.75rem; }
.article-eyebrow {
  display: flex; align-items: center; gap: .75rem;
  font-family: var(--font-ui); font-size: .58rem; letter-spacing: .25em;
  text-transform: uppercase; color: var(--teal-light); margin-bottom: 1rem;
}
.article-eyebrow::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; font-style: italic; line-height: 1.05; color: var(--cream); margin-bottom: .3rem;
}
.article-subtitle { font-family: var(--font-display); font-size: 1rem; font-weight: 400; color: var(--text-muted); margin-bottom: 1.25rem; }
.article-meta {
  display: flex; align-items: center; flex-wrap: wrap; gap: .75rem 1.25rem;
  font-family: var(--font-ui); font-size: .62rem; letter-spacing: .08em; color: var(--text-muted);
  padding-top: 1rem; border-top: 1px solid #242424;
}
.meta-byline { color: var(--gold-light); }
.meta-byline a { color: var(--gold-light); }
.meta-sep { color: var(--gold-dim); }

/* Two-column layout */
.article-layout {
  max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 295px; gap: 3.5rem; align-items: start;
}

/* Article body */
.article-body { min-width: 0; }
.article-body > p:first-of-type::first-letter {
  font-family: var(--font-display); font-size: 4.2rem; font-weight: 900;
  line-height: .8; float: left; margin: .05em .08em 0 0; color: var(--gold);
}
.article-body p { font-size: 1.15rem; line-height: 1.88; color: var(--text); margin-bottom: 1.4rem; }
.article-body h2 {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; font-style: italic; color: var(--cream); margin: 2.5rem 0 .85rem;
}
.article-body h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--gold-light); margin: 2rem 0 .6rem;
}
.article-body a { color: var(--gold); border-bottom: 1px solid var(--gold-dim); padding-bottom: .05em; }
.article-body a:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.article-body ul, .article-body ol { margin: 0 0 1.4rem 1.5rem; }
.article-body li { font-size: 1.1rem; line-height: 1.75; color: var(--text); margin-bottom: .3rem; }

/* Inline article images */
.article-body img, .article-img {
  max-width: 100%; height: auto; margin: 1.5rem 0;
  border: 1px solid var(--gold-dim);
}
.article-body img[align="left"],  .article-img.align-left  { float: left;  margin: .25rem 1.25rem 1rem 0; max-width: 50%; }
.article-body img[align="right"], .article-img.align-right { float: right; margin: .25rem 0 1rem 1.25rem; max-width: 50%; }
.article-body p:after { content: ''; display: table; clear: both; }

/* Pull quote */
.pull-quote {
  margin: 2rem 0; padding: 1.5rem 1.75rem 1.5rem 2rem;
  border-left: 3px solid var(--gold); background: var(--dark); position: relative;
}
.pull-quote::before {
  content: '\201C'; font-family: var(--font-display); font-size: 4.5rem;
  line-height: 0; color: var(--gold-dim); position: absolute; top: 1.25rem; left: .6rem;
}
.pull-quote p { font-family: var(--font-display); font-size: 1.2rem !important; font-style: italic; line-height: 1.55 !important; color: var(--cream) !important; margin: 0 0 .4rem .9rem !important; }
.pull-quote cite { font-family: var(--font-ui); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dim); font-style: normal; margin-left: .9rem; }

/* Film still */
.film-still { margin: 2rem 0; }
.film-still-frame { border: 1px solid var(--gold-dim); overflow: hidden; position: relative; }
.film-still-frame::before, .film-still-frame::after {
  content: ''; position: absolute; width: 14px; height: 14px;
  border-color: var(--gold); border-style: solid; z-index: 2;
}
.film-still-frame::before { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.film-still-frame::after  { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.film-still-frame img { width: 100%; height: auto; display: block; }
.film-still figcaption { font-family: var(--font-ui); font-size: .58rem; letter-spacing: .08em; color: var(--text-muted); padding: .45rem 0; border-top: 1px solid #1c1c1c; }

/* Article footer */
.article-footer { margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--gold-dim); }
.article-footer-rule { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.25rem; }
.footer-rule-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--gold-dim), transparent); }
.footer-rule-line:last-child { background: linear-gradient(90deg, transparent, var(--gold-dim)); }
.footer-diamond { width: 5px; height: 5px; background: var(--gold-dim); transform: rotate(45deg); }
.article-footer-meta { font-family: var(--font-ui); font-size: .62rem; letter-spacing: .07em; color: var(--text-muted); line-height: 1.8; }

/* ── SIDEBAR ── */
.article-sidebar {
  position: sticky; top: 78px;
  display: flex; flex-direction: column; gap: 1.75rem;
}

/* Film info card */
.film-card { border: 1px solid var(--gold-dim); background: var(--dark); position: relative; }
.film-card::before, .film-card::after {
  content: ''; position: absolute; width: 14px; height: 14px;
  border-color: var(--gold); border-style: solid;
}
.film-card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.film-card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.film-card-poster { overflow: hidden; background: var(--mid); height: 220px; }
.film-card-poster img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.film-card-poster-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #1a1a2e 0%, #0a0a0a 60%, #1a1208 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim); font-size: 2.5rem;
}
.film-card-body { padding: 1.1rem 1.1rem .9rem; }
.film-card-title {
  font-family: var(--font-display); font-style: italic;
  font-size: 1rem; font-weight: 700; color: var(--cream);
  margin-bottom: .85rem; padding-bottom: .7rem; border-bottom: 1px solid #2a2a2a;
}
.film-credits { display: flex; flex-direction: column; gap: .42rem; }
.film-credit { display: grid; grid-template-columns: 80px 1fr; gap: .4rem; font-size: .8rem; line-height: 1.35; }
.credit-label { font-family: var(--font-ui); font-size: .52rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dim); padding-top: .1rem; }
.credit-value { color: var(--text-muted); }
.film-card-links { margin-top: 1rem; padding-top: .85rem; border-top: 1px solid #242424; display: flex; flex-direction: column; gap: .35rem; }
.film-link {
  display: flex; align-items: center; gap: .45rem;
  font-family: var(--font-ui); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); padding: .32rem 0;
  border-bottom: 1px solid #1e1e1e; transition: color .2s;
}
.film-link:last-child { border-bottom: none; }
.film-link:hover { color: var(--gold); }
.film-link::before { content: '›'; color: var(--gold-dim); font-size: 1rem; }

/* Sidebar widgets */
.sidebar-widget { border: 1px solid var(--gold-dim); position: relative; }
.sidebar-widget::before, .sidebar-widget::after {
  content: ''; position: absolute; width: 13px; height: 13px;
  border-color: var(--gold); border-style: solid;
}
.sidebar-widget::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.sidebar-widget::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.widget-header { background: var(--mid); padding: .6rem .9rem; border-bottom: 1px solid var(--gold-dim); }
.widget-title { font-family: var(--font-ui); font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); }
.widget-body { padding: .9rem; }

.related-list { list-style: none; }
.related-list li { border-bottom: 1px solid #1c1c1c; }
.related-list li:last-child { border-bottom: none; }
.related-list a { display: flex; flex-direction: column; gap: .12rem; padding: .55rem 0; font-family: var(--font-body); font-style: italic; font-size: .9rem; color: var(--text-muted); }
.related-list a:hover { color: var(--gold); }
.related-dir { font-family: var(--font-ui); font-size: .52rem; letter-spacing: .1em; color: var(--gold-dim); font-style: normal; }

.archive-tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.archive-tags a {
  font-family: var(--font-ui); font-size: .6rem; letter-spacing: .08em;
  color: var(--text-muted); border: 1px solid #2a2a2a; padding: .22rem .48rem; transition: all .2s;
}
.archive-tags a:hover { color: var(--gold); border-color: var(--gold-dim); }

.search-form { display: flex; gap: .4rem; }
.search-input {
  flex: 1; background: var(--black); border: 1px solid var(--mid);
  color: var(--text); font-family: var(--font-ui); font-size: .72rem;
  padding: .38rem .55rem; outline: none; transition: border-color .2s;
}
.search-input:focus { border-color: var(--gold-dim); }
.search-btn {
  background: var(--gold-dim); border: none; color: var(--black);
  font-family: var(--font-ui); font-size: .58rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: .38rem .6rem;
  cursor: pointer; transition: background .2s;
}
.search-btn:hover { background: var(--gold); }

/* Related articles section */
.related-section { background: var(--charcoal); border-top: 1px solid var(--gold-dim); }
.related-inner { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--gold-dim); border: 1px solid var(--gold-dim);
}
.related-card { background: var(--dark); padding: 1.35rem; transition: background .2s; }
.related-card:hover { background: var(--mid); }
.related-card-tag { font-family: var(--font-ui); font-size: .52rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-light); margin-bottom: .35rem; }
.related-card-thumb { height: 90px; overflow: hidden; background: var(--mid); margin-bottom: .85rem; }
.related-card-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.related-card-title { font-family: var(--font-display); font-size: 1rem; font-style: italic; font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: .3rem; transition: color .2s; }
.related-card:hover .related-card-title { color: var(--gold-light); }
.related-card-byline { font-family: var(--font-ui); font-size: .56rem; color: var(--text-muted); }

/* ════════════════════════════════════════
   ARCHIVE LISTING PAGES
════════════════════════════════════════ */
.archive-header {
  background: var(--charcoal); border-bottom: 1px solid var(--gold-dim);
  border-top: 10px solid var(--black); position: relative;
}
.archive-header::before {
  content: ''; position: absolute; top: -10px; left: 0; right: 0; height: 10px;
  background: repeating-linear-gradient(90deg,
    var(--dark) 0, var(--dark) 14px, var(--black) 14px, var(--black) 22px);
}
.archive-header-inner { max-width: 1200px; margin: 0 auto; padding: 2rem 2rem 1.75rem; }

.archive-listing { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem 4rem; display: grid; grid-template-columns: 1fr 280px; gap: 3.5rem; }
.archive-grid { display: flex; flex-direction: column; gap: 0; }
.archive-item {
  display: grid; grid-template-columns: 90px 1fr;
  gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #1e1e1e; align-items: start;
}
.archive-item:first-child { border-top: 1px solid #1e1e1e; }
.archive-item-thumb { width: 90px; height: 60px; overflow: hidden; background: var(--mid); flex-shrink: 0; }
.archive-item-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.archive-item-tag { font-family: var(--font-ui); font-size: .54rem; letter-spacing: .2em; text-transform: uppercase; color: var(--teal-light); margin-bottom: .1rem; }
.archive-item-title { font-family: var(--font-display); font-style: italic; font-size: 1rem; font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: .15rem; }
.archive-item-title a:hover { color: var(--gold-light); }
.archive-item-byline { font-family: var(--font-ui); font-size: .56rem; letter-spacing: .08em; color: var(--text-muted); }

/* Archive sidebar */
.archive-sidebar { position: sticky; top: 78px; display: flex; flex-direction: column; gap: 1.75rem; }
.archive-year-list { list-style: none; }
.archive-year-list li { border-bottom: 1px solid #1e1e1e; }
.archive-year-list li:last-child { border-bottom: none; }
.archive-year-list a { display: flex; justify-content: space-between; align-items: center; padding: .48rem 0; font-family: var(--font-ui); font-size: .7rem; letter-spacing: .05em; color: var(--text-muted); }
.archive-year-list a:hover { color: var(--gold); }
.archive-year-list .count { font-size: .58rem; color: var(--gold-dim); background: var(--mid); padding: .08rem .38rem; }
.archive-year-list a.current { color: var(--gold); font-weight: 600; }

/* ════════════════════════════════════════
   SITE INFO PAGES (about, staff, links)
════════════════════════════════════════ */
.info-layout { max-width: 900px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.info-body h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; font-style: italic; color: var(--cream); margin: 2.25rem 0 .75rem; }
.info-body h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--gold-light); margin: 1.75rem 0 .6rem; }
.info-body p { font-size: 1.1rem; line-height: 1.85; color: var(--text); margin-bottom: 1.25rem; }
.info-body ul, .info-body ol { margin: 0 0 1.25rem 1.5rem; }
.info-body li { font-size: 1.05rem; line-height: 1.7; color: var(--text); margin-bottom: .3rem; }
.info-body a { color: var(--gold); border-bottom: 1px solid var(--gold-dim); padding-bottom: .05em; }
.info-body a:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin: 1.5rem 0 2rem; }
.staff-card { border: 1px solid var(--gold-dim); padding: 1.1rem; background: var(--dark); }
.staff-card h3 { font-family: var(--font-display); font-size: 1rem; font-style: italic; font-weight: 700; color: var(--cream); margin: 0 0 .3rem; }
.staff-card .staff-role { font-family: var(--font-ui); font-size: .58rem; letter-spacing: .15em; text-transform: uppercase; color: var(--teal-light); margin-bottom: .6rem; }
.staff-card p { font-size: .9rem; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* ════════════════════════════════════════
   FOOTER (all pages)
════════════════════════════════════════ */
footer { background: var(--charcoal); border-top: 1px solid var(--gold-dim); margin-top: 5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem 2rem; }
.footer-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid #1e1e1e;
}
.footer-wordmark { font-family: var(--font-display); font-size: 1.1rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.footer-tagline { font-size: .82rem; font-style: italic; color: var(--text-muted); line-height: 1.5; }
.footer-nav-col h4 { font-family: var(--font-ui); font-size: .58rem; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-dim); margin-bottom: .85rem; }
.footer-nav-col ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-nav-col a { font-family: var(--font-ui); font-size: .72rem; color: var(--text-muted); letter-spacing: .04em; }
.footer-nav-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-family: var(--font-ui); font-size: .63rem; letter-spacing: .05em; color: var(--text-muted); }
.footer-copy a { color: var(--text-muted); }
.footer-copy a:hover { color: var(--gold); }
.footer-ornament { display: flex; align-items: center; gap: .45rem; font-family: var(--font-ui); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dim); }

/* ════════════════════════════════════════
   MOBILE NAV TOGGLE
════════════════════════════════════════ */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: .5rem; color: var(--text-muted); transition: color .2s;
}
.nav-toggle:hover { color: var(--gold); }
.nav-toggle svg { display: block; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .review-card.card-large { grid-row: span 1; }
  .card-large .card-image { height: 150px; }
  .recent-inner, .article-layout, .archive-listing { grid-template-columns: 1fr; }
  .article-sidebar, .archive-sidebar { position: static; }
  .film-card-poster { height: 180px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  html { font-size: 17px; }
  .section { padding: 2.5rem 1.25rem; }
  .hero-inner { padding: 50px 1.25rem; }
  .deco-divider { padding: 0 1.25rem; }
  .recent-inner { padding: 2.5rem 1.25rem; }
  .article-header-inner { padding: 1.5rem 1.25rem; }
  .article-layout { padding: 2rem 1.25rem 3rem; }
  .archive-header-inner { padding: 1.5rem 1.25rem; }
  .archive-listing { padding: 2rem 1.25rem 3rem; }
  .info-layout { padding: 2rem 1.25rem 3.5rem; }
  .related-inner { padding: 2.5rem 1.25rem; }
  .footer-inner { padding: 2rem 1.25rem 1.5rem; }
  .breadcrumb-inner { padding: .55rem 1.25rem; }

  /* Article images: unfloat on narrow screens */
  .article-body img[align="left"],  .article-img.align-left,
  .article-body img[align="right"], .article-img.align-right {
    float: none; max-width: 100%; margin: 1.25rem 0;
  }
}

@media (max-width: 640px) {
  /* Mobile nav: hamburger toggle */
  .nav-toggle { display: block; }
  .primary-nav {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 62px; left: 0; right: 0;
    background: var(--charcoal); border-bottom: 1px solid var(--gold-dim);
    padding: .5rem 0; z-index: 99;
  }
  .primary-nav.open { display: flex; }
  .primary-nav li { border-bottom: 1px solid #1e1e1e; }
  .primary-nav li:last-child { border-bottom: none; }
  .primary-nav a {
    font-size: .68rem; padding: .85rem 1.25rem;
    display: block; border-bottom: none;
  }
  .primary-nav a:hover,
  .primary-nav a.active { border-bottom: none; }
  .nav-search { display: block; border: none; text-align: left; padding: .85rem 1.25rem; }

  .masthead-inner { padding: 0 1rem; }
  .masthead { position: relative; }

  /* Hero */
  .hero-inner { padding: 40px 1rem; }
  .hero-eyebrow { font-size: .55rem; margin-bottom: 1rem; }
  .hero-desc { font-size: .95rem; }

  /* Cards & grids */
  .featured-grid, .related-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .article-title { font-size: 1.9rem; }

  /* Review list items: stack on very small screens */
  .review-list-item,
  .archive-item { grid-template-columns: 70px 1fr; gap: .75rem; }
  .review-list-thumb,
  .archive-item-thumb { width: 70px; height: 47px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .staff-grid { grid-template-columns: 1fr; }

  /* Sidebar widgets get breathing room */
  .sidebar { margin-top: 2rem; }

  /* Ensure touch targets are ≥44px */
  .archive-tags a { padding: .35rem .55rem; }
  .archive-year-list a { padding: .6rem 0; }
  .footer-nav-col a { padding: .3rem 0; display: inline-block; }
}
