/* Meaning, Man and Model — series page.
   Standalone warm-paper stylesheet (the series keeps its own identity, distinct
   from the portfolio's styles.css). External file so it satisfies the site CSP
   (style-src 'self'; no inline styles). */

:root { color-scheme: light; }
* { box-sizing: border-box; }
html, body { margin: 0; background: #f4f1ea; }
body {
  font-family: 'Newsreader', Georgia, serif;
  color: #2e2b27;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

/* Return to the portfolio — mono label, per the MMM system's arrow rule (←/→, never an icon font). */
.site-return {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  background: #f4f1ea;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a39a86;
}
.site-return a {
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: color 160ms ease;
}
.site-return a:hover { color: #2e2b27; }
.site-return a:hover .arrow { transform: translateX(-4px); color: #8a5a3b; }
.site-return .arrow { display: inline-block; transition: transform 160ms ease, color 160ms ease; }
.site-return a:focus-visible { outline: 2px solid #8a5a3b; outline-offset: 4px; }

.hero {
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 40px;
  text-align: center;
}
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #a39a86;
  margin-bottom: 56px;
}
.series-title {
  font-size: 66px;
  font-weight: 400;
  letter-spacing: 0.09em;
  margin: 0 0 26px;
  line-height: 1.22;
}
.series-sub {
  font-style: italic;
  font-size: 21px;
  color: #5c584f;
  letter-spacing: 0.01em;
  margin-bottom: 52px;
}
.series-mark { margin-bottom: 52px; overflow: visible; }
.series-intro {
  max-width: 592px;
  font-size: 18px;
  line-height: 1.75;
  color: #4a463f;
  margin: 0 0 96px;
}

@keyframes mmm-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.mark-spin { animation: mmm-spin 180s linear infinite; transform-box: fill-box; transform-origin: 70px 70px; }
@media (prefers-reduced-motion: reduce) { .mark-spin { animation: none; } }

.entries { width: 100%; max-width: 760px; text-align: left; }
.contents-head { display: flex; align-items: center; gap: 18px; margin-bottom: 14px; }
.contents-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #a39a86;
}
.contents-rule {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(90deg,#c7bfa9 0,#c7bfa9 3px,transparent 3px,transparent 9px);
}
.contents-count {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #a39a86;
}
.forthcoming-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #b3ab98;
  margin: 0 0 30px;
}

.entry-row {
  display: grid;
  grid-template-columns: 44px 26px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 12px 24px 4px;
  border-bottom: 1px solid #e5e0d3;
  text-decoration: none;
  color: inherit;
  transition: background 160ms ease, padding-left 160ms ease;
}
/* MMM hover: a warm tint + an 8px indent on contents rows (per the design system). */
a.entry-row:hover,
a.entry-row:focus-visible {
  background: #eee9df;
  padding-left: 12px;
  outline: none;
}
a.entry-row:focus-visible { outline: 2px solid #8a5a3b; outline-offset: 2px; }
a.entry-row:hover .entry-status,
a.entry-row:focus-visible .entry-status { color: #8a5a3b; }
.entry-index {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #c0b8a5;
}
.entry-title { font-size: 24px; line-height: 1.3; margin-bottom: 5px; }
.entry-excerpt { font-size: 14px; line-height: 1.5; color: #726c5e; }
.entry-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #a39a86;
  white-space: nowrap;
  text-align: right;
}
.entry-status { margin-top: 6px; color: #c0b8a5; }

.colophon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 22px;
  border-top: 1px solid #e5e0d3;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #b3ab98;
}

@media (max-width: 620px) {
  .site-return { padding: 16px 22px; }
  .hero { padding: 40px 22px 56px; }
  .series-title { font-size: 46px; }
  .entry-row { grid-template-columns: 30px 1fr; }
  .entry-glyph, .entry-meta { display: none; }
}
