:root {
  --bg: #f5efe3;
  --bg-soft: #fff8ef;
  --surface: rgba(255, 252, 246, 0.94);
  --border: rgba(124, 108, 88, 0.18);
  --text: #1f1c18;
  --muted: #5c554d;
  --brand: #be3a26;
  --brand-deep: #8c2518;
  --leaf: #5e8c45;
  --shadow: 0 18px 40px rgba(70, 48, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(190, 58, 38, 0.10), transparent 32%),
    radial-gradient(circle at 85% 15%, rgba(94, 140, 69, 0.11), transparent 28%),
    linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

a {
  color: inherit;
}

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

.hero {
  margin-bottom: 22px;
}

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

.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-deep);
}

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

h1 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
}

h2 {
  font-size: 1.45rem;
}

.lede,
.prose p,
.prose li {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button,
.text-link {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(94, 140, 69, 0.18);
  background: rgba(94, 140, 69, 0.08);
  color: var(--text);
  font-weight: 700;
}

.button-primary {
  border-color: rgba(190, 58, 38, 0.20);
  background: linear-gradient(180deg, #d94a34 0%, var(--brand) 100%);
  color: white;
}

.text-link {
  color: var(--brand-deep);
}

.prose ul,
.grid ul {
  margin: 0;
  padding-left: 1.2rem;
}

.prose h2 {
  margin-top: 28px;
}

@media (max-width: 760px) {
  .page {
    width: min(100vw - 24px, 980px);
    padding: 20px 0 32px;
  }

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

  .card {
    padding: 22px;
    border-radius: 24px;
  }

  h1 {
    font-size: 2.5rem;
  }
}
