
/* ============================================================ TOKENS */
:root {
  --paper:        oklch(0.972 0.012 80);
  --paper-2:      oklch(0.945 0.014 80);
  --paper-3:      oklch(0.92  0.014 80);
  --ink:          oklch(0.18  0.012 60);
  --ink-2:        oklch(0.30  0.012 60);
  --muted:        oklch(0.50  0.012 60);
  --rule:         oklch(0.86  0.012 60);
  --rule-2:       oklch(0.78  0.012 60);

  --accent:       oklch(0.45 0.16 25);
  --accent-2:     oklch(0.55 0.14 25);
  --accent-soft:  oklch(0.93 0.045 25);

  --serif:  "Spectral", "Cormorant Garamond", Georgia, serif;
  --sans:   "IBM Plex Sans", -apple-system, system-ui, sans-serif;
  --mono:   "IBM Plex Mono", ui-monospace, monospace;

  --wrap:   1320px;

  --rad:    2px;
  --rad-l:  4px;
}

:root[data-serif="cormorant"] { --serif: "Cormorant Garamond", "Spectral", Georgia, serif; }

:root[data-accent="navy"] {
  --accent:      oklch(0.34 0.12 255);
  --accent-2:    oklch(0.44 0.12 255);
  --accent-soft: oklch(0.93 0.035 255);
}
:root[data-accent="forest"] {
  --accent:      oklch(0.40 0.09 150);
  --accent-2:    oklch(0.50 0.09 150);
  --accent-soft: oklch(0.93 0.03 150);
}

:root[data-paper="cool"] {
  --paper:   oklch(0.972 0.008 240);
  --paper-2: oklch(0.945 0.012 240);
  --paper-3: oklch(0.92  0.014 240);
  --rule:    oklch(0.86  0.01  240);
}
:root[data-paper="ink"] {
  --paper:   oklch(0.18 0.012 60);
  --paper-2: oklch(0.22 0.012 60);
  --paper-3: oklch(0.26 0.012 60);
  --ink:     oklch(0.95 0.012 80);
  --ink-2:   oklch(0.86 0.012 80);
  --muted:   oklch(0.66 0.012 80);
  --rule:    oklch(0.36 0.012 60);
  --rule-2:  oklch(0.46 0.012 60);
  --accent-soft: oklch(0.30 0.10 25);
}
:root[data-paper="ink"][data-accent="navy"]   { --accent-soft: oklch(0.30 0.08 255); }
:root[data-paper="ink"][data-accent="forest"] { --accent-soft: oklch(0.30 0.07 150); }

:root[data-rules="off"] .strip,
:root[data-rules="off"] .foot__rule,
:root[data-rules="off"] .card__rule,
:root[data-rules="off"] .cover__rule { opacity: 0.15; }

/* ============================================================ BASE */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01" 1, "kern" 1;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
input { font: inherit; color: inherit; }

::selection { background: var(--accent); color: var(--paper); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

/* ============================================================ TYPE PRIMITIVES */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.eyebrow--light { color: var(--accent-soft); }
:root[data-paper="ink"] .eyebrow--light { color: oklch(0.85 0.06 25); }

.micro {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}
.micro--strong { color: var(--ink); font-weight: 500; }

.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 16px 0 0;
  text-wrap: balance;
}
.h-display em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.h-display--light { color: var(--paper); }
.h-display--light em { color: oklch(0.85 0.10 25); }
:root[data-accent="navy"]   .h-display--light em { color: oklch(0.78 0.10 255); }
:root[data-accent="forest"] .h-display--light em { color: oklch(0.82 0.08 150); }

.lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 24px 0 0;
  font-weight: 350;
}
.lede--light { color: oklch(0.86 0.012 80); }

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--rad);
  border: 1px solid var(--ink);
  transition: background 120ms ease, color 120ms ease, transform 120ms ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn--lg { height: 52px; padding: 0 28px; font-size: 15px; }
.btn--sm { height: 36px; padding: 0 16px; font-size: 13px; }
.btn--full { width: 100%; justify-content: center; }
.btn--primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--rule-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-light { color: var(--paper); border-color: oklch(0.6 0.012 60); }
.btn--ghost-light:hover { border-color: var(--paper); }

.linkbtn {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.iconbtn {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--rule-2);
  border-radius: var(--rad);
  color: var(--ink-2);
  transition: border-color 120ms, color 120ms;
}
.iconbtn:hover { border-color: var(--ink); color: var(--ink); }

/* ============================================================ RIBBON / HEADER */
.ribbon {
  background: var(--ink);
  color: oklch(0.78 0.012 80);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ribbon__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 36px;
  gap: 24px;
}
.ribbon__date { text-align: left; }
.ribbon__center { color: var(--paper); }
.ribbon__right { display: flex; align-items: center; gap: 20px; justify-content: flex-end; }
.ribbon__lang a { color: oklch(0.6 0.012 80); }
.ribbon__lang a.on { color: var(--paper); }
.ribbon__sub { color: var(--paper); }
.ribbon__sub:hover { color: oklch(0.85 0.10 25); }
:root[data-accent="navy"] .ribbon__sub:hover { color: oklch(0.78 0.10 255); }

.head {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: color-mix(in oklab, var(--paper) 92%, transparent);
}
.head__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 76px;
  gap: 48px;
}
.logo {
  font-family: var(--serif);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.logo__big { font-size: 26px; font-weight: 500; letter-spacing: -0.01em; }
.logo__sm  { font-size: 21px; font-weight: 400; font-style: italic; color: var(--accent); }
.logo__est {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-left: 1px solid var(--rule-2);
  padding-left: 10px;
  margin-left: 4px;
}
.nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  justify-content: center;
}
.nav a {
  color: var(--ink-2);
  position: relative;
  padding: 8px 0;
  transition: color 120ms;
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
}
.head__right { display: flex; gap: 12px; align-items: center; }

/* ============================================================ HERO */
.hero {
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--rule);
}
.hero__grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: auto auto;
  gap: 48px 64px;
}
.hero__side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 6px;
  border-right: 1px dashed var(--rule);
  padding-right: 32px;
}
.hero__side-block { display: flex; flex-direction: column; gap: 6px; }
.hero__side-rule { height: 1px; background: var(--rule); }
.hero__side-list { display: flex; flex-direction: column; gap: 4px; font-family: var(--serif); font-size: 15px; color: var(--ink); font-style: italic; }

.hero__main { max-width: 880px; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__kicker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); display: inline-block; }

.hero__h {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(56px, 8.4vw, 124px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 20px 0 0;
  text-wrap: balance;
}
.hero__h em {
  font-style: italic;
  font-weight: 350;
  color: var(--accent);
}
.hero__lede {
  font-family: var(--serif);
  font-weight: 350;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 62ch;
  margin: 32px 0 0;
}
.hero__lede--center { margin-left: auto; margin-right: auto; text-align: center; }

.hero__cta { display: flex; gap: 14px; margin-top: 38px; flex-wrap: wrap; }
.hero__cta--center { justify-content: center; }

.hero__foot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero__foot-item {
  padding: 18px 16px 16px;
  border-right: 1px solid var(--rule);
}
.hero__foot-item:last-child { border-right: 0; }
.hero__foot-n {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: oldstyle-nums;
}
.hero__foot-l {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 8px;
}

.hero__pull {
  grid-column: 2;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
  max-width: 720px;
}
.pull { display: grid; grid-template-columns: 40px 1fr; gap: 16px; padding-top: 18px; }
.pull__mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  font-style: italic;
}
.pull__t {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 350;
}
.pull__a {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 10px;
}

/* Centered hero variant */
.hero--centered { padding: 96px 0; text-align: center; }
.hero--centered .hero__eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}
.hero--centered .hero__h { margin: 0 auto; }

/* ============================================================ TRUST STRIP */
.strip { border-bottom: 1px solid var(--rule); background: var(--paper-2); }
.strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}
.strip__cell {
  padding: 22px 16px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 6px;
}
.strip__cell:last-child { border-right: 0; }
.strip__n {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: oldstyle-nums;
}
.strip__l {
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

/* ============================================================ SECTION HEAD */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-top: 96px;
  padding-bottom: 48px;
  border-top: 1px solid var(--rule);
  margin-top: 96px;
}
.section-head:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.section-head__p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 350;
  max-width: 52ch;
  margin: 0;
}
.section-head__meta {
  display: flex;
  gap: 28px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-head__meta strong { color: var(--ink); font-weight: 500; }

/* ============================================================ HALL OF FAME */
.hof { padding-bottom: 96px; }

.hof__controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  margin-bottom: 24px;
}
.hof__search {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--rule-2);
  border-radius: var(--rad);
  padding: 0 16px;
  height: 52px;
  transition: border-color 120ms;
  background: var(--paper);
}
.hof__search:focus-within { border-color: var(--ink); }
.hof__search svg { color: var(--muted); flex-shrink: 0; }
.hof__search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-size: 15px; height: 100%;
}
.hof__search input::placeholder { color: var(--muted); }
.hof__clear { color: var(--muted); font-size: 22px; line-height: 1; padding: 0 4px; }

.hof__viewtoggle { display: flex; border: 1px solid var(--rule-2); border-radius: var(--rad); height: 52px; }
.hof__viewtoggle button {
  width: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.hof__viewtoggle button + button { border-left: 1px solid var(--rule-2); }
.hof__viewtoggle button.on { color: var(--ink); background: var(--paper-2); }

.alpha {
  display: flex; flex-wrap: wrap; gap: 2px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 14px 0;
  margin-bottom: 24px;
}
.alpha__btn {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: background 120ms, color 120ms;
  border-radius: var(--rad);
}
.alpha__btn--all {
  width: auto; padding: 0 14px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted);
}
.alpha__btn:hover:not(.off) { background: var(--paper-2); color: var(--ink); }
.alpha__btn.on { background: var(--ink); color: var(--paper); }
.alpha__btn.off { color: var(--rule-2); cursor: default; }

.hof__chips {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border: 1px solid var(--rule-2);
  border-radius: 999px;
  color: var(--ink-2);
  transition: background 120ms, color 120ms, border-color 120ms;
  white-space: nowrap;
}
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip--sm { padding: 6px 10px; font-size: 10.5px; }

.hof__sort {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
}
.hof__sort button {
  color: var(--ink-2);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.hof__sort button.on { color: var(--accent); border-color: var(--accent); }

.hof__resmeta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 12px;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hof__resmeta strong { color: var(--ink); font-weight: 500; }

/* Author grid */
.hof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.card {
  padding: 24px 24px 0;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  display: flex; flex-direction: column;
  min-height: 280px;
  transition: background 160ms;
}
.card:hover { background: var(--paper-2); }
.card--featured { background: color-mix(in oklab, var(--accent-soft) 50%, var(--paper)); }
.card--featured:hover { background: var(--accent-soft); }

.card__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.card__avatar {
  width: 44px; height: 44px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.card--featured .card__avatar { border-color: var(--accent); color: var(--accent); }
.card__id { line-height: 1.3; }
.card__years {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--ink);
  font-variant-numeric: oldstyle-nums;
}
.card__role {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.card__num {
  font-family: var(--mono); font-size: 10px;
  color: var(--muted); letter-spacing: 0.1em;
}
.card__name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.card__rule { height: 1px; background: var(--rule-2); margin: 14px 0; }
.card__note {
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  font-weight: 350;
  flex: 1;
}
.card__foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px;
  padding-bottom: 4px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.card__period { color: var(--accent); }
.card__bar {
  margin: 0 -24px;
  padding: 14px 24px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.card__works { color: var(--ink); }
.card__arrow { color: var(--accent); font-size: 18px; }
.card:hover .card__arrow { transform: translateX(4px); transition: transform 160ms; }
.card__featured {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--mono); font-size: 9.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  padding: 4px 8px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--paper);
}

/* List view */
.hof__list {
  border-top: 1px solid var(--rule);
}
.hof__list-head, .row {
  display: grid;
  grid-template-columns: 2.6fr 1.4fr 1.2fr 1fr 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.hof__list-head {
  font-family: var(--mono); font-size: 10.5px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted);
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
}
.hof__list-head .num, .row .num { text-align: right; }
.row { transition: background 120ms; }
.row:hover { background: var(--paper-2); }
.row__main { display: flex; gap: 18px; align-items: baseline; }
.row__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
  min-width: 36px;
}
.row__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.row__note {
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--ink-2);
  font-weight: 350;
  margin-top: 2px;
  font-style: italic;
}
.row__cell {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-2);
}
.row__sub { color: var(--muted); }
.row__cell strong { color: var(--ink); font-weight: 500; font-size: 14px; }

.hof__empty {
  text-align: center;
  padding: 96px 24px;
  border: 1px dashed var(--rule);
}
.hof__empty-h { font-family: var(--serif); font-size: 28px; }
.hof__empty-p { font-family: var(--serif); font-style: italic; color: var(--muted); margin-top: 8px; }

.hof__foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ============================================================ FEED */
.feed { padding-bottom: 96px; }
.feed__filters { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 22px; }

.feed__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
}
.art {
  display: flex; flex-direction: column;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 32px;
  cursor: pointer;
}
.art:hover .art__h { color: var(--accent); }
.art--lg { grid-column: span 4; }
.art--md { grid-column: span 3; }
.art--sm { grid-column: span 2; }
.art--featured.art--md { grid-column: span 3; }

.art__top {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.art__kind { color: var(--accent); font-weight: 500; }
.art__date { color: var(--muted); }

.art__placeholder {
  background:
    repeating-linear-gradient(135deg,
      var(--paper-3) 0 12px,
      var(--paper-2) 12px 24px);
  border: 1px solid var(--rule);
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  display: flex; align-items: flex-end;
  padding: 16px;
  position: relative;
}
.art--lg .art__placeholder { aspect-ratio: 16 / 8; }
.art--sm .art__placeholder { aspect-ratio: 4 / 3; }
.art--featured .art__placeholder {
  background:
    repeating-linear-gradient(135deg,
      color-mix(in oklab, var(--accent) 18%, var(--paper)) 0 12px,
      color-mix(in oklab, var(--accent) 10%, var(--paper)) 12px 24px);
  border-color: var(--accent);
}
.art__phlabel {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper);
  padding: 4px 8px;
  border: 1px solid var(--ink);
}

.art__h {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
  transition: color 120ms;
}
.art--lg .art__h { font-size: 36px; }
.art--sm .art__h { font-size: 21px; }

.art__dek {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 12px 0 0;
  font-weight: 350;
}
.art--lg .art__dek { font-size: 18px; }
.art--sm .art__dek { font-size: 14px; }

.art__foot {
  margin-top: auto;
  padding-top: 16px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.art__by { color: var(--ink); }
.art__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--rule-2); }

.feed__foot {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

/* ============================================================ PRINT ALMANAC */
.print {
  border-top: 1px solid var(--rule);
  padding: 96px 0;
  background: var(--paper-2);
}
.print__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 88px;
  align-items: start;
}
.print .h-display em { display: inline; }

.tiers {
  display: flex; flex-direction: column;
  margin-top: 32px;
  border: 1px solid var(--ink);
  border-radius: var(--rad-l);
  overflow: hidden;
  background: var(--paper);
}
.tier {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border-top: 1px solid var(--rule);
  text-align: left;
  position: relative;
}
.tier:first-child { border-top: 0; }
.tier__top { display: flex; align-items: center; gap: 12px; }
.tier__label {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.tier__pill {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 999px;
}
.tier__price {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  font-variant-numeric: oldstyle-nums;
  letter-spacing: -0.01em;
}
.tier__note {
  grid-column: 1 / -1;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  font-weight: 350;
}
.tier__radio {
  width: 18px; height: 18px;
  border: 1px solid var(--rule-2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  grid-column: 3;
  grid-row: 1;
}
.tier__dot { width: 8px; height: 8px; border-radius: 50%; background: transparent; }
.tier--on .tier__radio { border-color: var(--accent); }
.tier--on .tier__dot { background: var(--accent); }
.tier--on { background: color-mix(in oklab, var(--accent-soft) 50%, var(--paper)); }

.print__cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* Cover mockup */
.print__right { position: relative; }
.cover {
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 36px 30px 28px;
  aspect-ratio: 3 / 4;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow:
    1px 1px 0 var(--ink),
    2px 2px 0 var(--ink-2),
    24px 24px 56px -16px rgba(0,0,0,0.18);
}
.cover__chip {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 5px 10px;
}
.cover__rule { height: 1px; background: var(--ink); margin: 18px 0; }
.cover__rule--thin { height: 0; border-top: 0.5px solid var(--ink-2); margin: 14px 0 22px; }
.cover__title {
  font-family: var(--serif);
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.88;
  font-weight: 500;
  letter-spacing: -0.025em;
  font-style: italic;
  color: var(--ink);
}
.cover__meta {
  display: grid; grid-template-columns: 1fr auto;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  align-items: end;
  margin-bottom: 24px;
}
.cover__bar { width: 56px; height: 6px; background: var(--accent); }
.cover__name {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 0.96;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.015em;
  margin-top: auto;
}
.cover__base {
  display: flex; justify-content: space-between; align-items: end;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
}
.cover__price { color: var(--ink); }

.back-issues {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--rule);
}
.back-issues li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.back-issues__n { color: var(--ink); font-weight: 500; }
.back-issues__season { color: var(--ink-2); }
.back-issues__cover { color: var(--accent); }

/* ============================================================ B2B */
.b2b {
  background: var(--ink);
  color: oklch(0.92 0.012 80);
  padding: 96px 0 64px;
}
:root[data-paper="ink"] .b2b { background: oklch(0.10 0.012 60); }
.b2b__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.b2b__copy h2 { color: var(--paper); }
.credlist {
  list-style: none; padding: 0; margin: 40px 0 0;
  border-top: 1px solid oklch(0.36 0.012 60);
}
.credlist li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid oklch(0.36 0.012 60);
  align-items: baseline;
}
.credlist__k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
:root[data-accent="navy"] .credlist__k   { color: oklch(0.78 0.10 255); }
:root[data-accent="forest"] .credlist__k { color: oklch(0.82 0.08 150); }
.credlist__v {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 350;
  color: oklch(0.92 0.012 80);
  line-height: 1.45;
}

/* Form */
.b2b__form-wrap {
  background: oklch(0.22 0.012 60);
  padding: 36px;
  border: 1px solid oklch(0.32 0.012 60);
  border-radius: var(--rad-l);
}
.b2b__form-head { margin-bottom: 24px; }
.b2b__form-h {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--paper);
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}
.b2b__form-p {
  font-family: var(--serif);
  font-size: 15px;
  color: oklch(0.78 0.012 80);
  font-weight: 350;
  margin: 0;
  font-style: italic;
}

.field { display: block; margin-bottom: 18px; }
.field__l {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: oklch(0.72 0.012 80);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  height: 44px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid oklch(0.45 0.012 60);
  color: var(--paper);
  font-size: 15px;
  font-family: var(--sans);
  padding: 0 0 6px;
  transition: border-color 120ms;
}
.field input:focus { outline: 0; border-color: var(--paper); }
.field input::placeholder { color: oklch(0.55 0.012 80); font-family: var(--serif); font-style: italic; }

.seg { display: flex; gap: 0; border: 1px solid oklch(0.42 0.012 60); border-radius: var(--rad); overflow: hidden; }
.seg__btn {
  flex: 1;
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: oklch(0.78 0.012 80);
  background: transparent;
  transition: background 120ms;
}
.seg__btn + .seg__btn { border-left: 1px solid oklch(0.42 0.012 60); }
.seg__btn:hover { background: oklch(0.30 0.012 60); }
.seg__btn--on { background: var(--paper); color: var(--ink); }

.b2b__legal {
  font-family: var(--mono);
  font-size: 10px;
  color: oklch(0.62 0.012 80);
  letter-spacing: 0.06em;
  margin-top: 14px;
  line-height: 1.5;
}

.b2b__thanks { padding: 24px 0; text-align: left; }
.b2b__thanks-mark {
  width: 48px; height: 48px;
  border: 1px solid var(--paper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--paper);
  margin-bottom: 18px;
}
.b2b__thanks-t {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--paper);
  margin-bottom: 8px;
}
.b2b__thanks-p {
  font-family: var(--serif);
  font-size: 16px;
  color: oklch(0.82 0.012 80);
  font-weight: 350;
  margin-bottom: 18px;
  line-height: 1.5;
}

.b2b__partners {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid oklch(0.32 0.012 60);
}
.b2b__partners-l {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: oklch(0.65 0.012 80);
  margin-bottom: 24px;
}
.b2b__partners-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.b2b__partners-list li {
  font-family: var(--serif);
  font-size: 15px;
  color: oklch(0.88 0.012 80);
  padding: 16px 18px 16px 0;
  border-top: 1px solid oklch(0.32 0.012 60);
  font-style: italic;
  font-weight: 350;
  line-height: 1.3;
}

/* ============================================================ FOOTER */
.foot { background: var(--paper-2); padding: 64px 0 32px; border-top: 1px solid var(--rule); }
.foot__top {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  gap: 64px;
  margin-bottom: 48px;
}
.foot__logo {
  font-family: var(--serif);
  font-size: 36px;
  letter-spacing: -0.02em;
  font-weight: 500;
}
.foot__tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
}
.foot__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.foot__nav > div { display: flex; flex-direction: column; gap: 8px; }
.foot__h {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}
.foot__nav a, .foot__nav span {
  font-size: 14px;
  color: var(--ink-2);
  font-family: var(--serif);
  font-weight: 350;
}
.foot__nav a:hover { color: var(--accent); }

.foot__rule { height: 1px; background: var(--rule); margin: 24px 0; }
.foot__bot {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
  gap: 24px;
}
.foot__links { display: flex; gap: 16px; justify-content: flex-end; flex-wrap: wrap; }
.foot__links a:hover { color: var(--ink); }

/* ============================================================ SEARCH OVERLAY */
.search-ov {
  position: fixed; inset: 0;
  background: color-mix(in oklab, var(--ink) 60%, transparent);
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12vh;
  backdrop-filter: blur(6px);
  animation: fade 160ms ease-out;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.search-ov__box {
  background: var(--paper);
  width: min(720px, calc(100vw - 32px));
  border: 1px solid var(--ink);
  border-radius: var(--rad-l);
  box-shadow: 0 32px 80px -20px rgba(0,0,0,0.4);
  overflow: hidden;
}
.search-ov__top {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--rule);
}
.search-ov__top input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font-family: var(--serif); font-size: 22px; font-weight: 350;
}
.search-ov__top input::placeholder { color: var(--muted); font-style: italic; }
.search-ov__esc {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--rule-2); padding: 4px 8px; border-radius: var(--rad);
}
.search-ov__hints { padding: 20px 24px 28px; }
.search-ov__h {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.search-ov__hint-row { display: flex; flex-wrap: wrap; gap: 6px; }
.search-ov__results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.search-ov__sec {
  padding: 20px 24px 24px;
  border-right: 1px solid var(--rule);
}
.search-ov__sec:last-child { border-right: 0; }
.search-ov__row {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
}
.search-ov__row:hover { background: var(--paper-2); margin: 0 -8px; padding: 10px 8px; }
.search-ov__row:last-child { border-bottom: 0; }
.search-ov__row-n {
  font-family: var(--serif); font-size: 17px; font-weight: 400;
}
.search-ov__row-m {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}
.search-ov__empty {
  font-family: var(--serif); font-style: italic; color: var(--muted);
}

/* ============================================================ RESPONSIVE */
@media (max-width: 1100px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__side { display: none; }
  .hero__pull { grid-column: 1; }
  .hof__grid { grid-template-columns: repeat(2, 1fr); }
  .b2b__grid, .print__grid { grid-template-columns: 1fr; gap: 48px; }
  .b2b__partners-list { grid-template-columns: repeat(2, 1fr); }
  .feed__grid { grid-template-columns: repeat(4, 1fr); }
  .art--lg { grid-column: span 4; }
  .art--md { grid-column: span 2; }
  .art--sm { grid-column: span 2; }
  .strip__inner { grid-template-columns: repeat(3, 1fr); }
  .strip__cell:nth-child(4), .strip__cell:nth-child(5) { border-top: 1px solid var(--rule); }
  .foot__top, .foot__bot { grid-template-columns: 1fr; gap: 32px; }
  .foot__nav { grid-template-columns: repeat(2, 1fr); }
  .foot__links { justify-content: flex-start; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 20px; }
  .nav { display: none; }
  .hof__grid { grid-template-columns: 1fr; }
  .feed__grid { grid-template-columns: 1fr; }
  .art--lg, .art--md, .art--sm { grid-column: span 1; }
  .hero__foot { grid-template-columns: repeat(2, 1fr); }
  .hero__foot-item:nth-child(2) { border-right: 0; }
  .hero__foot-item:nth-child(1), .hero__foot-item:nth-child(2) { border-bottom: 1px solid var(--rule); }
  .strip__inner { grid-template-columns: repeat(2, 1fr); }
  .ribbon__center { display: none; }
  .ribbon__inner { grid-template-columns: 1fr auto; }
  .head__inner { grid-template-columns: auto 1fr; gap: 16px; }
  .head__right .btn { display: none; }
  .row { grid-template-columns: 1fr; }
  .row__cell { display: none; }
  .hof__list-head { display: none; }
  .credlist li { grid-template-columns: 1fr; gap: 6px; }
  .hof__controls { grid-template-columns: 1fr; }
  .hof__viewtoggle { width: fit-content; }
  .hof__chips { flex-direction: column; align-items: flex-start; }
}


/* ============================================================ TICKER / NARROW SLIDER */
.ticker {
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  overflow: hidden;
  position: relative;
}
.ticker__inner {
  height: 180px;
  position: relative;
}
.ticker__track {
  display: flex;
  height: 100%;
  transition: transform 700ms cubic-bezier(.7,0,.2,1);
  will-change: transform;
}
.ticker__slide {
  flex: 0 0 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 0 32px;
  max-width: var(--wrap);
  margin: 0 auto;
}
.ticker__art {
  height: 132px;
  width: 100%;
  border: 1px solid var(--ink);
  display: flex; align-items: flex-end;
  padding: 10px;
  position: relative;
}
.ticker__art-1 { background:
  repeating-linear-gradient(135deg, var(--paper-3) 0 10px, var(--paper-2) 10px 20px); }
.ticker__art-2 { background:
  repeating-linear-gradient(0deg,  var(--paper-3) 0 8px, var(--paper-2) 8px 16px); }
.ticker__art-3 { background:
  repeating-linear-gradient(45deg, color-mix(in oklab, var(--accent) 22%, var(--paper)) 0 8px,
                                    color-mix(in oklab, var(--accent) 12%, var(--paper)) 8px 16px); }
.ticker__art-4 { background:
  repeating-linear-gradient(90deg, var(--paper-3) 0 4px, var(--paper) 4px 28px); }
.ticker__art-5 { background:
  radial-gradient(circle at 30% 30%, var(--paper-3) 0 8%, transparent 9%) 0 0/24px 24px,
  var(--paper-2); }
.ticker__phlabel {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper); padding: 3px 6px;
  border: 1px solid var(--ink);
}
.ticker__copy { display: flex; flex-direction: column; gap: 8px; max-width: 640px; }
.ticker__kicker {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.ticker__h {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.ticker__h em { font-style: italic; color: var(--accent); font-weight: 400; }
.ticker__dek {
  font-family: var(--serif); font-size: 15px;
  line-height: 1.4; color: var(--ink-2);
  margin: 0; font-weight: 350;
  max-width: 56ch;
}
.ticker__cta {
  display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
  min-width: 200px;
}
.ticker__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.ticker__num strong { color: var(--accent); font-weight: 500; }
.ticker__dots {
  position: absolute; left: 50%; bottom: 14px;
  transform: translateX(-50%);
  display: flex; gap: 6px;
}
.ticker__dot {
  width: 18px; height: 2px;
  background: var(--rule-2);
  transition: background 200ms;
  cursor: pointer;
  border: 0;
}
.ticker__dot.on { background: var(--ink); }
.ticker__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  color: var(--ink);
  z-index: 2;
  cursor: pointer;
  border-radius: 50%;
}
.ticker__nav:hover { border-color: var(--ink); }
.ticker__nav--prev { left: 16px; }
.ticker__nav--next { right: 16px; }

/* ============================================================ INTERNAL PAGE LAYOUTS */
.crumbs {
  display: flex; gap: 10px;
  padding: 22px 0 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  margin-top: 0;
}
.crumbs a { color: var(--ink-2); border-bottom: 1px solid transparent; }
.crumbs a:hover { color: var(--accent); border-color: var(--accent); }
.crumbs__sep { color: var(--rule-2); }

/* About page */
.about-hero { padding: 72px 0 64px; border-bottom: 1px solid var(--rule); }
.about-hero__h {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 24px 0 0;
  text-wrap: balance;
  max-width: 18ch;
}
.about-hero__h em { font-style: italic; color: var(--accent); font-weight: 350; }
.about-hero__lede {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 350;
  max-width: 56ch;
  margin: 32px 0 0;
}

.timeline {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.timeline__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-left: 1px solid var(--rule);
}
.timeline__cell {
  padding: 22px 18px 28px;
  border-right: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  min-height: 200px;
  display: flex; flex-direction: column;
  position: relative;
}
.timeline__year {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  font-variant-numeric: oldstyle-nums;
  color: var(--accent);
  margin-bottom: 14px;
}
.timeline__t {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 8px;
}
.timeline__p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 350;
  line-height: 1.4;
}

.principles {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.principle {
  border-top: 1px solid var(--ink);
  padding-top: 22px;
}
.principle__n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.principle__h {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.principle__p {
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 350;
}

.masthead {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.masthead__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
.masthead__cell {
  padding: 28px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.masthead__role {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.masthead__name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.masthead__bio {
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.45;
  color: var(--ink-2);
  font-style: italic;
  font-weight: 350;
}

/* Author page */
.author-hero {
  padding: 56px 0 64px;
  border-bottom: 1px solid var(--rule);
}
.author-hero__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.author-portrait {
  aspect-ratio: 3 / 4;
  border: 1px solid var(--ink);
  background:
    repeating-linear-gradient(135deg, var(--paper-3) 0 12px, var(--paper-2) 12px 24px);
  display: flex; align-items: flex-end; padding: 16px;
}
.author-portrait__l {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--paper); border: 1px solid var(--ink);
  padding: 4px 8px;
}
.author-hero__name {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
}
.author-hero__years {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  font-weight: 400;
  margin-top: 8px;
}
.author-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 32px 0;
}
.author-meta__cell {
  padding: 14px 16px 14px 0;
  border-right: 1px solid var(--rule);
}
.author-meta__cell:last-child { border-right: 0; }
.author-meta__k {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.author-meta__v {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

.author-body { padding: 64px 0; border-bottom: 1px solid var(--rule); }
.author-body__grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
}
.author-body__sticky { position: sticky; top: 100px; align-self: start; }
.author-body__h {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
}
.author-body__main p {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  font-weight: 350;
  margin: 0 0 22px;
  color: var(--ink-2);
  max-width: 62ch;
}
.author-body__main p strong { font-weight: 500; color: var(--ink); }
.author-body__pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.25;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding-left: 24px;
  margin: 32px 0;
  max-width: 32ch;
}

.poem {
  background: var(--paper-2);
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.poem__inner {
  max-width: 720px;
  margin: 0 auto;
}
.poem__t {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 32px;
}
.poem__lines {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.7;
  font-weight: 350;
  font-style: italic;
  text-align: center;
  color: var(--ink);
}
.poem__attr {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); text-align: center;
  margin-top: 32px;
}

.related { padding: 80px 0; border-bottom: 1px solid var(--rule); }
.related__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}

/* Article page */
.art-hero { padding: 56px 0 48px; border-bottom: 1px solid var(--rule); }
.art-hero__meta {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 32px;
}
.art-hero__kind { color: var(--accent); font-weight: 500; }
.art-hero__date { color: var(--muted); }
.art-hero__h {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 1;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
  max-width: 22ch;
}
.art-hero__h em { font-style: italic; color: var(--accent); font-weight: 350; }
.art-hero__dek {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.4;
  color: var(--ink-2);
  font-weight: 350;
  margin: 28px 0 0;
  max-width: 56ch;
}
.art-hero__byline {
  display: flex; gap: 32px; margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.art-hero__byline strong { color: var(--ink); font-weight: 500; }

.art-cover {
  height: 360px;
  background:
    repeating-linear-gradient(135deg, var(--paper-3) 0 14px, var(--paper-2) 14px 28px);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: flex-end; padding: 18px 32px;
}
.art-cover__l {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--paper); border: 1px solid var(--ink);
  padding: 4px 8px;
}

.art-body {
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
}
.art-body__inner { max-width: 680px; margin: 0 auto; }
.art-body__inner p {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 350;
  margin: 0 0 26px;
  color: var(--ink-2);
}
.art-body__inner p:first-of-type::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 80px;
  line-height: 0.85;
  font-weight: 400;
  color: var(--accent);
  padding: 6px 14px 0 0;
}
.art-body__inner p strong { color: var(--ink); font-weight: 500; }
.art-body__inner h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 48px 0 16px;
}
.art-body__pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  line-height: 1.25;
  color: var(--ink);
  margin: 48px -80px;
  padding: 0 80px;
  text-align: center;
  position: relative;
}
.art-body__pull::before, .art-body__pull::after {
  content: "";
  display: block;
  width: 60px; height: 1px;
  background: var(--accent);
  margin: 24px auto;
}

@media (max-width: 1100px) {
  .ticker__slide { grid-template-columns: 160px 1fr; }
  .ticker__cta { display: none; }
  .timeline__grid { grid-template-columns: repeat(3, 1fr); }
  .principles__grid { grid-template-columns: repeat(2, 1fr); }
  .masthead__grid { grid-template-columns: repeat(2, 1fr); }
  .author-hero__grid { grid-template-columns: 200px 1fr; gap: 32px; }
  .author-body__grid { grid-template-columns: 1fr; gap: 24px; }
  .author-body__sticky { position: static; }
  .art-body__pull { margin: 32px 0; padding: 0; }
  .related__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ticker__slide { grid-template-columns: 1fr; padding: 16px 20px; gap: 12px; }
  .ticker__art { display: none; }
  .ticker__inner { height: auto; }
  .ticker__track > * { padding: 20px; }
  .timeline__grid { grid-template-columns: 1fr; }
  .principles__grid { grid-template-columns: 1fr; }
  .masthead__grid { grid-template-columns: 1fr; }
  .author-hero__grid { grid-template-columns: 1fr; }
  .author-meta { grid-template-columns: repeat(2, 1fr); }
  .author-meta__cell:nth-child(2) { border-right: 0; }
  .art-body__inner p { font-size: 18px; }
}
