/* ============================================================
   ComboPilot — style.css  (v2 — difference pass)
   Polish poster school × Swiss typography × air.
   White as material. No boxes: hairlines, hanging titles,
   staggered grid, one red poster band. The poster is the only
   colour field on the page — it burns on white like an affiche
   on a gallery wall.
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul[class], ol[class] { list-style: none; }
[hidden] { display: none !important; }

/* === VARIABLES === */
:root {
  --paper: #f4f2ec;   /* newsprint, not gallery white */
  --ink: #141414;
  --muted: #6d6a63;
  --hairline: #e3dfd5;
  --accent: #d5341f;
  --accent-hover: #b02513;
  --accent-2: #2743c7;
  --cream: #f0e7d3;
  --ink-bg: #171512;
  --ink-text: #f0e9da;
  --font-heading: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --max-width: 1240px;
  --transition: 0.25s ease;
}

/* === BASE === */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.3rem; line-height: 1.25; }
p { max-width: 66ch; }
a { color: inherit; text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--paper); padding: 10px 18px;
}
.skip-link:focus { left: 0; }

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

/* === KICKER / LABELS === */
.kicker {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 22px;
}
.kicker-light { color: var(--ink-text); opacity: 0.75; }

/* === BUTTONS === */
.btn {
  display: inline-block; padding: 14px 30px; min-height: 48px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 2px solid var(--ink); transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.btn-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn-light:hover { background: transparent; color: var(--paper); }
.link-button {
  text-decoration: underline; text-decoration-color: var(--accent);
  text-decoration-thickness: 2px; text-underline-offset: 3px; padding: 0;
}
.link-button:hover { color: var(--accent); }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}
.header-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { color: inherit; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-word {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; letter-spacing: -0.02em;
}
.brand-word em { font-style: normal; color: var(--accent); }
.brand { --accent: #d5341f; --paper: #f4f2ec;   /* newsprint, not gallery white */ }

.site-nav ul { display: flex; gap: 6px; }
.site-nav a {
  display: block; padding: 10px 14px; text-decoration: none;
  font-weight: 500; font-size: 1rem; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.search-toggle { width: 44px; height: 44px; display: grid; place-items: center; }
.search-toggle svg { width: 20px; height: 20px; }
.search-toggle:hover { color: var(--accent); }
.header-cta { padding: 10px 20px; min-height: 44px; }

.menu-toggle { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.menu-toggle span { display: block; width: 24px; height: 2.5px; background: var(--ink); transition: transform var(--transition), opacity var(--transition); }
.menu-toggle.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* search panel */
.search-panel { border-top: 2px solid var(--ink); background: var(--paper); }
.search-panel-inner { max-width: 720px; margin: 0 auto; padding: 30px 28px; }
.search-panel input {
  width: 100%; padding: 14px 16px; font-size: 1.1rem;
  background: var(--paper); border: 2px solid var(--ink);
}
.search-results { margin-top: 14px; }
.search-results li { border-bottom: 1px solid var(--hairline); }
.search-results a {
  display: flex; gap: 12px; align-items: baseline; padding: 10px 4px; text-decoration: none;
}
.search-results a:hover { color: var(--accent); }
.search-results .sr-type {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); flex: none; width: 64px;
}
.search-results .sr-none { padding: 10px 4px; color: var(--muted); }

/* === HERO === */
.hero { padding: clamp(64px, 11vh, 150px) 0 clamp(56px, 9vh, 120px); }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(40px, 7vw, 110px);
  align-items: start;
}
.hero h1 { margin-bottom: 30px; max-width: 14ch; }
.hero-sub { font-size: 1.2rem; color: var(--muted); margin-bottom: 40px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-facts { display: flex; gap: 40px; flex-wrap: wrap; border-top: 1px solid var(--hairline); padding-top: 26px; }
.hero-facts li { font-size: 0.92rem; color: var(--muted); }
.hero-facts strong { display: block; font-family: var(--font-heading); font-size: 1.7rem; color: var(--ink); letter-spacing: -0.02em; }

.hero-poster-frame { max-width: 440px; margin-left: auto; }
.poster { width: 100%; height: auto; aspect-ratio: 3 / 4; }
.poster-caption {
  font-size: 0.78rem; color: var(--muted); margin-top: 12px;
  letter-spacing: 0.04em;
}

/* === PHOTOS & PICTURE POSTERS === */
.poster-pic { display: block; overflow: hidden; }
.poster-pic img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame { display: block; overflow: hidden; }
.photo-frame img { width: 100%; height: auto; object-fit: cover; }
.photo-head img { aspect-ratio: 4 / 3; }
.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.photo-duo figure { margin: 0; }
.photo-duo figcaption, figure .poster-caption {
  font-size: 0.78rem; color: var(--muted); margin-top: 12px; letter-spacing: 0.04em;
}

/* === SECTIONS — air instead of boxes === */
.section { padding: clamp(72px, 11vh, 140px) 0; }
.section-alt { background: none; }
.section + .section, .section + .section-alt { padding-top: 0; }
.section-ink { background: var(--ink-bg); color: var(--ink-text); padding: clamp(72px, 11vh, 140px) 0; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 20px;
  margin-bottom: clamp(40px, 6vh, 64px); flex-wrap: wrap;
  border-top: 2px solid var(--ink); padding-top: 20px;
}
.section-ink .section-head { border-top-color: var(--ink-text); }
.section-index { color: var(--accent); margin-right: 12px; font-size: 0.65em; vertical-align: 0.3em; letter-spacing: 0.05em; }
.section-more { font-weight: 600; white-space: nowrap; }

/* === CARDS — open editorial items, no boxes === */
.card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 5vw, 64px) clamp(28px, 3.5vw, 48px);
}
.card { background: none; border: none; display: flex; flex-direction: column; height: 100%; }
.card-cover { position: relative; display: block; border: 1px solid var(--hairline); }
.card-cover .poster { aspect-ratio: 4 / 3; }
.card-score {
  position: absolute; right: 0; bottom: 0;
  background: var(--paper); color: var(--ink); border-top: 2px solid var(--ink); border-left: 2px solid var(--ink);
  font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem;
  padding: 6px 16px;
}
.card-score-lg { font-size: 1.7rem; padding: 10px 22px; }
.card-body {
  padding: 16px 0 0; margin-top: 18px; border-top: 2px solid var(--ink);
  display: flex; flex-direction: column; gap: 12px; flex: 1;
}
.card-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.badge {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
}
.badge-news { color: var(--accent-2); }
.badge-guide { color: #1f6b46; }
.card-genre { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.card-title { font-size: 1.35rem; }
.card-title a { text-decoration: none; }
.card-title a:hover { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.card-excerpt { font-size: 0.95rem; color: var(--muted); flex: 1; }
.card-foot { font-size: 0.82rem; color: var(--muted); border-top: 1px solid var(--hairline); padding-top: 12px; }
.card-cell { display: contents; }

/* staggered rhythm — desktop only */
@media (min-width: 1025px) {
  .card-grid > .card:nth-child(3n+2),
  .card-grid > .card-cell:nth-child(3n+2) > .card { margin-top: 56px; }
}

/* === FEATURE SPLIT === */
.feature-split {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.feature-cover { display: block; max-width: 480px; border: 1px solid var(--hairline); }
.feature-body { padding-top: 8px; }
.feature-body h3, .feature-title { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 16px 0; letter-spacing: -0.02em; }
.feature-body h3 a, .feature-title a { text-decoration: none; }
.feature-body h3 a:hover, .feature-title a:hover { color: var(--accent); }
.feature-body > p { color: var(--muted); margin-bottom: 16px; }
.feature-scoreline { display: flex; align-items: center; gap: 16px; margin-top: 14px; }
.score-box {
  display: inline-block; background: var(--accent); color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.7rem;
  padding: 8px 16px;
}
.score-sm { font-size: 1.05rem; padding: 6px 12px; flex: none; }
.score-lg { font-size: 2.4rem; padding: 12px 22px; }
.score-caption { font-size: 0.9rem; color: var(--muted); max-width: 220px; line-height: 1.35; }
.feature-quote {
  border-left: 3px solid var(--accent); padding: 6px 0 6px 22px;
  font-style: italic; color: var(--ink); margin: 20px 0; max-width: 54ch;
  font-size: 1.05rem;
}
.feature-body .card-foot { border: none; padding: 0; margin-bottom: 24px; }

/* === CATEGORY TILES — columns under one rule === */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(32px, 4vw, 64px); }
.cat-tile {
  border-top: 2px solid var(--ink); padding: 24px 0 0;
  text-decoration: none; display: flex; flex-direction: column; gap: 14px;
  background: none;
}
.cat-tile:hover { color: inherit; }
.cat-num {
  font-family: var(--font-heading); font-weight: 700; font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--accent); line-height: 0.9;
}
.cat-tile p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.cat-link { font-weight: 700; }
.cat-tile:hover .cat-link { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }

.genre-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: clamp(40px, 6vh, 64px); max-width: none; }
.genre-strip span {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--hairline); border-radius: 99px; padding: 6px 16px; color: var(--muted);
}

/* === TRENDING === */
.trending-list { max-width: 900px; }
.trending-list li {
  display: flex; gap: 28px; align-items: center;
  padding: 24px 4px; border-bottom: 1px solid var(--hairline);
}
.trending-rank {
  font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--accent); flex: none; width: 68px; letter-spacing: -0.02em;
}
.trending-title { font-family: var(--font-heading); font-weight: 600; font-size: 1.18rem; text-decoration: none; }
.trending-title:hover { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; }
.trending-time { margin-left: auto; color: var(--muted); font-size: 0.85rem; white-space: nowrap; }

/* === PLATFORMS — open rows === */
.platform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(32px, 4vw, 64px); }
.platform { padding: 24px 0 28px; border-top: 1px solid var(--hairline); background: none; }
.platform h3 { margin-bottom: 10px; }
.platform p { font-size: 0.92rem; color: var(--muted); }

/* === ABOUT TEASER (ink band) === */
.about-teaser {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(40px, 6vw, 96px); align-items: center;
}
.about-teaser h2 { margin-bottom: 22px; }
.about-teaser p { color: var(--ink-text); opacity: 0.85; margin-bottom: 32px; }
.about-teaser-art { max-width: 360px; margin-left: auto; }

/* === NEWSLETTER — open, under one heavy rule === */
.newsletter-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px);
  align-items: start; border-top: 2px solid var(--ink); padding-top: clamp(28px, 4vh, 44px);
  background: none;
}
.newsletter-copy h2 { margin-bottom: 14px; }
.newsletter-copy p { color: var(--muted); }
.field-row { display: flex; gap: 12px; margin-bottom: 16px; }
.field-row input { flex: 1; padding: 13px 16px; border: 2px solid var(--ink); background: var(--paper); min-width: 0; }
.check-label { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); cursor: pointer; }
.check-label input { margin-top: 4px; width: 16px; height: 16px; accent-color: var(--accent); flex: none; }

/* === STATS BAND — the red poster field === */
.stats-band { background: var(--accent); color: #fff; padding: clamp(48px, 8vh, 88px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.stat { border-left: 3px solid var(--cream); padding-left: 22px; }
.stat-num { display: block; font-family: var(--font-heading); font-weight: 700; font-size: clamp(2.1rem, 4vw, 3.4rem); letter-spacing: -0.02em; }
.stat-label { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.85; }

/* === PAGE HEAD === */
.page-head { padding: clamp(56px, 9vh, 110px) 0 clamp(28px, 5vh, 56px); border-bottom: 2px solid var(--ink); }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); max-width: 18ch; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 26px; }
.breadcrumb span { margin: 0 6px; color: var(--hairline); }
.page-lede { font-size: 1.15rem; color: var(--muted); margin-top: 22px; max-width: 58ch; }

/* === FILTER BAR === */
.filter-bar {
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
  flex-wrap: wrap; margin-bottom: clamp(40px, 6vh, 56px);
}
.filter-group { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.03em;
  border: 1px solid var(--ink); border-radius: 99px; padding: 8px 18px;
  min-height: 40px;
  transition: background var(--transition), color var(--transition);
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent); }
.filter-chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter-search input { padding: 10px 16px; border: 2px solid var(--ink); background: var(--paper); width: 280px; max-width: 100%; }
.filter-empty { color: var(--muted); padding: 30px 0; }

/* === SCORE LEGEND / PROMISE === */
.score-legend h2, .guides-promise h2 { border-top: 2px solid var(--ink); padding-top: 20px; }
.legend-grid, .promise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px 48px; margin: 40px 0; }
.legend-item { display: flex; gap: 18px; align-items: flex-start; }
.legend-item p, .promise-item p { font-size: 0.95rem; color: var(--muted); }
.legend-item strong, .promise-item strong { color: var(--ink); }
.legend-note { color: var(--muted); font-size: 0.92rem; }
.promise-num { font-family: var(--font-heading); font-weight: 700; font-size: 1.8rem; color: var(--accent); display: block; margin-bottom: 8px; }

/* === ARTICLE === */
.article-head { border-bottom: 2px solid var(--ink); padding: clamp(48px, 8vh, 96px) 0; }
.article-head-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.article-head h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); margin: 20px 0; }
.article-standfirst { font-size: 1.18rem; color: var(--muted); margin-bottom: 28px; }
.article-byline { display: flex; gap: 14px; align-items: center; font-size: 0.92rem; color: var(--muted); }
.byline-avatar {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  border-radius: 50%;
}
.byline-avatar-lg { width: 64px; height: 64px; font-size: 1.2rem; }
.article-head-art { position: relative; max-width: 400px; margin-left: auto; }

.article-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(40px, 6vw, 96px);
  padding-top: clamp(48px, 7vh, 80px); padding-bottom: clamp(48px, 7vh, 80px);
}
.article-layout:has(> .article-body:only-child) { grid-template-columns: minmax(0, 1fr); max-width: 920px; }
.article-body { max-width: 720px; }
.article-body p { margin-bottom: 1.35em; }
.article-body h2 {
  font-size: 1.5rem; margin: 1.9em 0 0.8em;
  padding-top: 1em; border-top: 1px solid var(--hairline);
}
.article-body strong { font-weight: 700; }
.article-body em { font-style: italic; }

.verdict-box {
  display: flex; gap: 32px; border: 2px solid var(--ink); background: var(--paper);
  padding: clamp(26px, 3.5vw, 44px); margin: 52px 0;
}
.verdict-score { text-align: center; flex: none; }
.verdict-score .score-caption { display: block; margin-top: 8px; max-width: none; }
.verdict-copy h2 { border: none; padding: 0; margin: 0 0 12px; }
.verdict-copy > p { margin-bottom: 24px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pros h3, .cons h3 {
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px;
}
.pros h3 { color: #1f6b46; }
.cons h3 { color: var(--accent); }
.pros li, .cons li {
  font-size: 0.93rem; padding: 7px 0 7px 22px; position: relative; color: var(--muted);
  border-bottom: 1px solid var(--hairline);
}
.pros li::before { content: "+"; position: absolute; left: 0; font-weight: 700; color: #1f6b46; }
.cons li::before { content: "–"; position: absolute; left: 0; font-weight: 700; color: var(--accent); }

.author-bio {
  display: flex; gap: 22px; align-items: flex-start;
  border-top: 2px solid var(--ink); padding-top: 32px; margin-top: 56px;
}
.author-bio h2 { font-size: 1.2rem; }
.author-role { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin: 4px 0 10px; }
.author-bio p:last-child { font-size: 0.95rem; color: var(--muted); }

.article-sidebar { align-self: start; position: sticky; top: 98px; }
.gameinfo { border-left: 2px solid var(--ink); padding-left: 28px; background: none; }
.gameinfo h2 { font-size: 1.05rem; margin-bottom: 18px; }
.gameinfo dl div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--hairline); }
.gameinfo dt { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); flex: none; }
.gameinfo dd { font-size: 0.9rem; text-align: right; }

/* === ABOUT PAGE === */
.about-mission { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
.about-mission-copy h2 { margin-bottom: 24px; }
.about-mission-copy p { margin-bottom: 18px; color: var(--muted); }
.about-mission-art { max-width: 420px; margin-left: auto; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(36px, 5vw, 56px) clamp(28px, 3.5vw, 48px); }
.team-card { border-top: 2px solid var(--ink); background: none; padding: 24px 0 0; }
.team-card .byline-avatar-lg { margin-bottom: 18px; }
.team-card p:last-of-type { font-size: 0.93rem; color: var(--muted); }
.team-card-join { border-top: 2px dashed var(--hairline); display: flex; flex-direction: column; gap: 6px; }
.team-card-join .btn { margin-top: auto; align-self: flex-start; }

.timeline { max-width: 820px; }
.timeline li { display: flex; gap: 32px; padding: 22px 0; border-bottom: 1px solid var(--hairline); }
.timeline li:first-child { border-top: 2px solid var(--ink); }
.timeline-year { font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; color: var(--accent); flex: none; width: 76px; }
.timeline p { color: var(--muted); font-size: 0.98rem; }

.cta-band { text-align: center; background: var(--ink-bg); color: var(--ink-text); padding: clamp(44px, 7vw, 80px); }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p { margin: 0 auto 30px; color: var(--ink-text); opacity: 0.8; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(44px, 6vw, 100px); align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 2px solid var(--ink); background: var(--paper);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--accent-2); outline-offset: 1px; }
.field-error { border-color: var(--accent) !important; }
.form-note { font-size: 0.9rem; color: var(--accent); }
.contact-form .btn { align-self: flex-start; }

.contact-aside { display: flex; flex-direction: column; gap: clamp(32px, 5vh, 48px); }
.contact-block { border-top: 2px solid var(--ink); background: none; padding: 22px 0 0; }
.contact-block h2 { font-size: 1.1rem; margin-bottom: 14px; }
.contact-block p { font-size: 0.95rem; color: var(--muted); margin-bottom: 12px; }
.contact-fine { font-size: 0.85rem; }
.contact-tips li { font-size: 0.93rem; color: var(--muted); padding: 8px 0; border-bottom: 1px solid var(--hairline); }
.contact-tips strong { color: var(--ink); }
.contact-aside-art { max-width: 340px; margin: 0; }

/* === THANK YOU === */
.thankyou-inner { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.thankyou-art { max-width: 320px; }
.thankyou-copy h1 { margin-bottom: 22px; }
.thankyou-copy p { color: var(--muted); margin-bottom: 32px; }

/* === LEGAL === */
.legal-body { max-width: 780px; }
.legal-body p, .legal-body li { color: var(--ink); }
.legal-body > p { margin-bottom: 1.2em; }
.legal-body h2 { font-size: 1.35rem; margin: 2em 0 0.7em; padding-top: 1em; border-top: 1px solid var(--hairline); }
.legal-body h3 { margin: 1.4em 0 0.5em; }
.legal-body ul { margin: 0 0 1.2em 1.3em; }
.legal-body li { margin-bottom: 0.5em; }
.table-scroll { overflow-x: auto; margin: 1em 0 1.6em; }
.legal-body table { border-collapse: collapse; width: 100%; min-width: 480px; }
.legal-body th, .legal-body td { border: 1px solid var(--hairline); padding: 10px 14px; text-align: left; font-size: 0.93rem; }
.legal-body th { background: none; font-weight: 700; border-bottom: 2px solid var(--ink); }

/* === FOOTER === */
.site-footer { background: var(--ink-bg); color: var(--ink-text); margin-top: clamp(48px, 8vh, 80px); }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto; padding: clamp(52px, 8vh, 88px) 28px 44px;
  display: grid; grid-template-columns: 1.4fr 0.8fr 1.2fr 0.9fr; gap: 44px;
}
.brand-invert .brand-word { color: var(--ink-text); }
.footer-tagline { margin-top: 18px; font-size: 0.95rem; opacity: 0.75; }
.footer-heading { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.6; margin-bottom: 16px; }
.footer-inner ul li { margin-bottom: 9px; font-size: 0.95rem; }
.footer-inner a { text-decoration: none; opacity: 0.9; }
.footer-inner a:hover { color: var(--accent); opacity: 1; text-decoration: underline; text-decoration-thickness: 2px; }
.footer-inner .link-button { opacity: 0.9; text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(240, 233, 218, 0.18); }
.footer-bottom p { max-width: var(--max-width); margin: 0 auto; padding: 20px 28px; font-size: 0.85rem; opacity: 0.6; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 150;
  max-width: 660px; margin: 0 auto;
  background: var(--paper); border: 2px solid var(--ink);
  padding: 22px 26px; box-shadow: 8px 8px 0 rgba(20, 20, 20, 0.9);
}
.cookie-banner p { font-size: 0.93rem; margin-bottom: 16px; max-width: none; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 20px; min-height: 44px; font-size: 0.92rem; }

/* === MODAL === */
.modal { position: fixed; inset: 0; z-index: 160; display: grid; place-items: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(20, 20, 20, 0.55); }
.modal-box {
  position: relative; background: var(--paper); border: 2px solid var(--ink);
  max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto;
}
.modal-head { display: flex; justify-content: space-between; align-items: center; padding: 20px 26px; border-bottom: 2px solid var(--ink); }
.modal-head h2 { font-size: 1.2rem; }
.modal-close { font-size: 1.6rem; line-height: 1; width: 44px; height: 44px; }
.modal-close:hover { color: var(--accent); }
.modal-body { padding: 10px 26px; }
.cookie-row { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--hairline); }
.cookie-row h3 { font-size: 1rem; margin-bottom: 4px; }
.cookie-row p { font-size: 0.88rem; color: var(--muted); }
.toggle-fixed { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); flex: none; }
.toggle { position: relative; flex: none; display: inline-block; cursor: pointer; }
.toggle input { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; }
.toggle-track {
  display: block; width: 52px; height: 28px; border: 2px solid var(--ink);
  background: var(--paper); position: relative; transition: background var(--transition);
}
.toggle-track::after {
  content: ""; position: absolute; top: 2px; left: 2px; width: 20px; height: 20px;
  background: var(--ink); transition: transform var(--transition);
}
.toggle input:checked + .toggle-track { background: var(--accent); }
.toggle input:checked + .toggle-track::after { transform: translateX(24px); background: var(--paper); }
.toggle input:focus-visible + .toggle-track { outline: 3px solid var(--accent-2); outline-offset: 2px; }
.modal-foot { padding: 20px 26px; border-top: 2px solid var(--ink); }


/* === MASTHEAD — the nameplate === */
.masthead { padding: clamp(36px, 6vh, 72px) 0 0; }
.masthead-meta {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 2px solid var(--ink); border-bottom: 1px solid var(--hairline);
  padding: 10px 0; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.masthead-name {
  font-size: clamp(4rem, 13vw, 9.5rem); line-height: 0.92; letter-spacing: -0.045em;
  margin: 30px 0 20px;
}
.masthead-name em { font-style: normal; color: var(--accent); }
.masthead-dot { color: var(--accent); }
.masthead-tagline { color: var(--muted); max-width: none; font-size: 0.98rem; padding-bottom: clamp(24px, 4vh, 44px); }

/* === FRONT PAGE — three densities === */
.frontpage { padding: 0 0 clamp(64px, 10vh, 128px); }
.frontpage-grid {
  display: grid; grid-template-columns: 5fr 4fr 3fr; gap: clamp(32px, 4vw, 64px);
  align-items: start; border-top: 2px solid var(--ink); padding-top: clamp(28px, 4vh, 48px);
}
.lead-title { font-size: clamp(1.9rem, 3.6vw, 3.1rem); margin: 14px 0 18px; letter-spacing: -0.02em; }
.lead-title a { text-decoration: none; }
.lead-title a:hover { color: var(--accent); }
.lead-standfirst { color: var(--muted); font-size: 1.05rem; margin: 18px 0; }
.lead-copy .card-foot { border: none; padding: 0; margin-bottom: 24px; }
.lead-poster { display: block; border: 1px solid var(--hairline); }

.headline-rail { border-left: 1px solid var(--hairline); padding-left: clamp(20px, 2.2vw, 34px); }
.rail-heading { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.headline-rail li { display: flex; gap: 14px; padding: 15px 0; border-top: 1px solid var(--hairline); }
.rail-num { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--accent); flex: none; }
.rail-type { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px; }
.headline-rail li a { text-decoration: none; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; line-height: 1.35; display: block; }
.headline-rail li a:hover { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.headline-rail .section-more { display: inline-block; margin-top: 20px; }

/* === POSTER WALL — the exhibition === */
.wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(40px, 5vh, 64px) clamp(24px, 3vw, 44px); }
.wall-item-lead { grid-column: span 2; grid-row: span 2; }
.wall-cover { display: block; position: relative; border: 1px solid var(--hairline); transition: transform var(--transition); }
.wall-cover .poster { aspect-ratio: 3 / 4; }
.wall-item:nth-child(3n+2):not(.wall-item-lead) .wall-cover { transform: rotate(1.3deg); }
.wall-item:nth-child(3n):not(.wall-item-lead) .wall-cover { transform: rotate(-1.1deg); }
.wall-item .wall-cover:hover { transform: rotate(0deg); }
.wall-caption { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.wall-caption h3 { font-size: 1.02rem; line-height: 1.3; }
.wall-item-lead .wall-caption h3 { font-size: 1.5rem; }
.wall-caption h3 a { text-decoration: none; }
.wall-caption h3 a:hover { color: var(--accent); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.wall-excerpt { color: var(--muted); font-size: 0.95rem; }
.wall-caption .card-foot { border-top: 1px solid var(--hairline); padding-top: 10px; }

/* === SECTION INDEX STRIP === */
.index-strip {
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding: clamp(24px, 4vh, 44px) 0; margin-bottom: clamp(56px, 9vh, 110px);
}
.index-strip .container { display: flex; gap: clamp(28px, 6vw, 90px); flex-wrap: wrap; align-items: baseline; }
.index-strip a {
  font-family: var(--font-heading); font-weight: 700; font-size: clamp(1.6rem, 3.8vw, 2.9rem);
  letter-spacing: -0.02em; text-decoration: none; display: flex; align-items: baseline; gap: 14px;
}
.index-strip a:hover { color: var(--accent); }
.strip-num { font-size: 0.45em; color: var(--accent); }
.strip-count {
  font-size: 0.38em; color: var(--muted); font-weight: 600;
  border: 1px solid var(--hairline); border-radius: 99px; padding: 2px 12px;
}

/* === PLATFORM STRIP === */
.platform-strip {
  padding: clamp(32px, 5vh, 56px) 0;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  margin-bottom: clamp(56px, 9vh, 110px);
}
.platform-strip p {
  max-width: none; font-family: var(--font-heading); font-weight: 500;
  font-size: clamp(1.05rem, 2vw, 1.4rem); line-height: 1.55; color: var(--muted);
}
.platform-strip strong { color: var(--ink); font-weight: 700; }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .card-grid, .cat-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .frontpage-grid { grid-template-columns: 1fr 1fr; }
  .headline-rail { grid-column: 1 / -1; border-left: none; border-top: 2px solid var(--ink); padding: 20px 0 0; }
  .headline-rail ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }
  .wall { grid-template-columns: repeat(2, 1fr); }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: minmax(0, 1fr); }
  .article-sidebar { position: static; max-width: 480px; }
  .header-cta { display: none; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 2px solid var(--ink);
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; padding: 12px 28px 20px; }
  .site-nav a { padding: 14px 4px; font-size: 1.1rem; border-bottom: 1px solid var(--hairline); }
  .site-nav a::after { display: none; }
  .site-nav a.active { color: var(--accent); }

  .hero-grid, .feature-split, .about-teaser, .newsletter-wrap,
  .about-mission, .contact-grid, .thankyou-inner, .article-head-grid { grid-template-columns: 1fr; }
  .hero-poster-frame, .about-teaser-art, .about-mission-art, .article-head-art { margin-left: 0; }
  .hero-art { order: -1; }
  .hero-art .hero-poster-frame { max-width: 300px; }
  .card-grid, .cat-grid, .team-grid, .platform-grid, .legend-grid, .promise-grid, .pros-cons, .photo-duo { grid-template-columns: 1fr; }
  .verdict-box { flex-direction: column; }
  .trending-list li { gap: 14px; }
  .trending-time { display: none; }
  .field-row { flex-direction: column; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-search input { width: 100%; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .thankyou-art { max-width: 220px; }
  .frontpage-grid { grid-template-columns: 1fr; }
  .lead-poster { max-width: 340px; }
  .headline-rail ol { grid-template-columns: 1fr; }
  .wall { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .wall-item-lead { grid-column: span 2; grid-row: auto; }
  .wall-caption h3 { font-size: 0.95rem; }
  .index-strip .container { flex-direction: column; gap: 18px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
