:root {
  --bg: #f4efe6;
  --surface: #fffaf2;
  --border: rgba(82, 48, 24, 0.12);
  --text: #20150f;
  --muted: #6c5647;
  --accent: #b4511d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 208, 163, 0.65), transparent 35%),
    linear-gradient(180deg, #f6efe4 0%, #efe6d8 100%);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

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

.eyebrow,
.meta {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
}

.lede {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.65;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.92);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(72, 42, 18, 0.1);
}

.card h2 {
  margin-top: 0;
}

.card ul {
  margin: 0;
  padding-left: 1.2rem;
  line-height: 1.7;
}

.article {
  margin-top: 18px;
}

.article p:last-child {
  margin-bottom: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .shell {
    width: min(100vw - 20px, 980px);
    padding-top: 28px;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
