/* What do y'know? — minimal frame around the strips.
   Palette borrowed loosely from the series bible (dark blue, mustard,
   grey) but the site itself stays quiet so the artwork does the work. */

:root {
  --bg: #F3F1EC;
  --paper: #FFFFFF;
  --ink: #262421;
  --muted: #6B6660;
  --line: #E4E0D7;
  --accent: #2E4057;   /* dark blue, from the series bible palette */
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

.banner {
  width: 100%;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
}

.banner--text {
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

.banner--text h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  color: var(--accent);
}

.banner--text .tagline {
  margin: 0 auto;
  max-width: 40rem;
  color: var(--muted);
}

/* Visually hidden but present for screen readers and crawlers — used for the
   site's real <h1> when the banner itself is just an image with alt text. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.intro {
  max-width: 40rem;
  margin: 2rem auto 0;
  padding: 0 1.25rem;
  text-align: center;
  color: var(--muted);
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.strip {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.strip img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.strip figcaption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 0.6rem;
}

/* Captions are real <h2> elements now (one per strip, for document
   structure and SEO) but should look exactly like the plain text they
   replaced — reset the browser's default heading styling. */
.strip figcaption h2 {
  margin: 0;
  font-size: inherit;
  font-weight: 500;
  color: inherit;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 0;
}

footer {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 1.5rem 1rem 3rem;
}
