:root {
  --bg: #f3efe7;
  --panel: #fffdf8;
  --text: #1d1a16;
  --muted: #6d645c;
  --line: #ddd3c8;
  --accent: #0f5f4f;
  --accent-soft: #d8ece7;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(180deg, #f7f2ea 0%, var(--bg) 100%);
  color: var(--text);
}

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

.shell {
  width: min(860px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.hero, .card, .article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(38, 24, 12, 0.05);
}

.hero { margin-bottom: 18px; }
.card { margin-bottom: 18px; }
.article-shell { padding-top: 24px; }

.kicker, .meta {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0 0 12px;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.2rem; }

.lede {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #2b2621;
}

p, li {
  line-height: 1.7;
  font-size: 1rem;
}

ul {
  margin: 0;
  padding-left: 20px;
}

.actions a {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-weight: 600;
}
