:root {
  --ink: #1f2430;
  --muted: #5b6270;
  --paper: #fdfcf9;
  --accent: #8a5cf6;
  --border: #e7e3da;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}

.brand {
  font-weight: bold;
  font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
}

.site-header nav a {
  margin-left: 1.25rem;
  color: var(--muted);
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 1.5rem;
}

.hero h1 { font-size: 2.25rem; margin-bottom: 0.5rem; }
.hero p { color: var(--muted); font-size: 1.1rem; }

.category-list {
  columns: 2;
  padding-left: 1.1rem;
}
.category-list li { margin-bottom: 0.6rem; }
.category-list a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--border); }
.category-list a:hover { border-color: var(--accent); }

.intro { color: var(--muted); font-size: 1.05rem; }

.quote-list { margin-top: 1.5rem; }
.quote {
  margin: 0 0 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: #ffffff;
}
.quote p { font-size: 1.15rem; margin: 0 0 0.4rem 0; }
.quote cite { color: var(--muted); font-style: normal; font-family: Arial, sans-serif; font-size: 0.9rem; }

.gift-box {
  background: #f4effb;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  margin: 1.25rem 0;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}
.gift-box a { color: var(--accent); font-weight: bold; text-decoration: none; }

.back-link { margin-top: 2rem; font-family: Arial, sans-serif; }
.back-link a { color: var(--muted); }

.ad-slot { margin: 1.5rem 0; min-height: 1px; }

.site-footer {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
}
.site-footer a { color: var(--muted); }

@media (max-width: 600px) {
  .category-list { columns: 1; }
  .hero h1 { font-size: 1.75rem; }
}
