:root {
  --bg:      #fbfaf8;
  --text:    #1a1a1a;
  --muted:   #6b6b6b;
  --faint:   #9a9a97;
  --accent:  #bf4b28;
  --accent-ink: #96371c;
  --line:    #e7e5e1;

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --col: 34rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-ink); }

/* Header */
.masthead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 1.75rem 0 0;
}
.brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand:hover { color: var(--text); }
.brand em { font-style: italic; color: var(--accent); }
.masthead nav a {
  color: var(--muted);
  font-size: 0.9rem;
  margin-left: 1.25rem;
}
.masthead nav a:hover { color: var(--text); }

/* Hero */
.hero { padding: 2rem 0 1.25rem; }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 6vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 1.1rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lead {
  color: var(--muted);
  font-size: 1.075rem;
  margin: 0 0 1rem;
}
.cta-line { font-size: 0.98rem; color: var(--muted); }
.cta-line a { font-weight: 500; }

/* Divider */
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* Offer — inline numbered, no cards */
.block { padding: 1rem 0; }
.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 0 0 0.8rem;
}
.offer { list-style: none; margin: 0; padding: 0; }
.offer li {
  display: grid;
  grid-template-columns: 1.75rem 1fr;
  gap: 0.75rem;
  padding: 0.5rem 0;
}
.offer li + li { border-top: 1px solid var(--line); }
.offer .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--accent);
  line-height: 1.5;
}
.offer b { font-weight: 600; }
.offer p { margin: 0.1rem 0 0; color: var(--muted); font-size: 0.95rem; }

/* Plain prose paragraphs */
.note { color: var(--muted); margin: 0.55rem 0 0; }
.note strong { color: var(--text); font-weight: 600; }

/* CTA */
.cta-block { text-align: center; }
.cta-block h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 4vw, 1.7rem);
  letter-spacing: -0.01em;
  margin: 0 0 1.4rem;
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--bg);
  background: var(--accent);
  padding: 0.75rem 1.75rem;
  border-radius: 3px;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-ink); color: var(--bg); }

/* Footer */
footer {
  padding: 2rem 0 2.5rem;
  color: var(--faint);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- Blog ---- */
.post-list { list-style: none; margin: 0; padding: 0; }
.post-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.post-list li:last-child { border-bottom: 1px solid var(--line); }
.post-list a {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
}
.post-list a:hover { color: var(--accent); }
.post-list time { color: var(--faint); font-size: 0.82rem; white-space: nowrap; font-variant-numeric: tabular-nums; }

.back { display: inline-block; margin: 1.75rem 0 0; font-size: 0.9rem; }

article.post { padding: 2.5rem 0; }
article.post h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 0.4rem;
}
article.post .meta { color: var(--faint); font-size: 0.85rem; margin: 0 0 2rem; }
article.post h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  margin: 2rem 0 0.6rem;
}
article.post p { margin: 0 0 1.1rem; }
article.post ul { padding-left: 1.2rem; color: var(--text); }
article.post li { margin: 0.3rem 0; }
article.post blockquote {
  margin: 1.4rem 0;
  padding: 0.2rem 0 0.2rem 1.1rem;
  border-left: 2px solid var(--accent);
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}
article.post code {
  font-family: 'SFMono-Regular', Consolas, monospace;
  font-size: 0.88em;
  background: #f0eee9;
  padding: 0.1em 0.35em;
  border-radius: 3px;
}
