/* DC Wrapped — a restrained, premium "financial broadsheet" look:
   warm newsprint paper, near-black ink, money-green accent, serif headlines. */
:root {
  --paper: #f7f4ee;
  --ink: #16130d;
  --muted: #6b6256;
  --rule: #d8d2c4;
  --accent: #0f5132;
  --accent-ink: #0b3d27;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
}
a { color: var(--accent-ink); }
.serif { font-family: "Playfair Display", Georgia, "Times New Roman", serif; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

/* Masthead */
.masthead {
  border-bottom: 3px double var(--ink);
  text-align: center;
  padding: 18px 22px 12px;
  max-width: var(--max);
  margin: 0 auto;
}
.wordmark {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 30px;
  color: var(--ink);
  text-decoration: none;
  display: block;
}
.kicker { margin: 4px 0 0; color: var(--muted); font-style: italic; font-size: 14px; }

/* Hero */
.hero { padding: 54px 0 34px; border-bottom: 1px solid var(--rule); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 14px;
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
  margin: 0 0 16px;
  max-width: 16ch;
}
.lede { font-size: clamp(17px, 2.2vw, 21px); color: #2a251c; max-width: 60ch; margin: 0 0 26px; }

/* Email capture */
.capture { display: flex; gap: 10px; flex-wrap: wrap; max-width: 520px; }
.capture input[type="email"] {
  flex: 1 1 260px;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid var(--ink);
  background: #fff;
  border-radius: 2px;
}
.capture button {
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent-ink);
  border-radius: 2px;
  cursor: pointer;
}
.capture button:hover { background: var(--accent-ink); }
.fineprint { margin: 10px 0 0; color: var(--muted); font-size: 13px; }

/* Three columns */
.cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; padding: 44px 0; }
.col h3 { font-size: 22px; margin: 0 0 8px; padding-top: 12px; border-top: 3px solid var(--ink); }
.col p { margin: 0; color: #332d22; }
.tag { color: var(--accent); font-weight: 700; }

/* Proof strip */
.proof {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.proof strong { color: var(--ink); }

/* Closing CTA */
.closer { text-align: center; padding: 50px 0 16px; }
.closer h2 { font-size: clamp(26px, 4vw, 40px); margin: 0 0 18px; }
.closer .capture { margin: 0 auto; justify-content: center; }

/* Footer */
.foot {
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 22px 50px;
  color: var(--muted);
  font-size: 13px;
  border-top: 3px double var(--ink);
  text-align: center;
}
.foot a { color: var(--accent-ink); }

/* Archive pages */
.archive .wrap { max-width: 760px; padding-top: 30px; }
.archive h1 { font-family: "Playfair Display", Georgia, serif; }
.issue-list { list-style: none; padding: 0; margin: 0; }
.issue-list li { border-bottom: 1px solid var(--rule); padding: 12px 0; font-size: 18px; }
article.issue { margin: 24px 0; background: #fff; padding: 22px; border: 1px solid var(--rule); border-radius: 4px; }

@media (max-width: 760px) {
  .cols { grid-template-columns: 1fr; gap: 24px; }
}
