:root {
  --ink: #0f172a;
  --muted: #475569;
  --muted-2: #64748b;
  --accent: #f59e0b;
  --accent-dark: #b45309;
  --emerald: #10b981;
  --bg: #f8fafc;
  --card: #ffffff;
  --border: #e2e8f0;
  --shadow: rgba(15, 23, 42, 0.08);
  --shadow-strong: rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(1200px 600px at 20% -10%, #fff2cf 0%, #f8fafc 50%, #e8eef6 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 15px;
  font-weight: 600;
}

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  display: grid;
  gap: 16px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 44px;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 620px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.card-link {
  display: block;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 20px;
  box-shadow: 0 20px 40px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px var(--shadow-strong);
}

.card-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 22px;
  margin: 0 0 8px;
}

.card-meta {
  color: var(--muted-2);
  font-size: 14px;
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.12);
  color: #92400e;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section {
  background: var(--card);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 36px var(--shadow);
  margin-top: 24px;
}

.section h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 26px;
  margin: 0 0 12px;
}

.section p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.section ul {
  margin: 0 0 12px 18px;
  color: var(--muted);
}

.section li {
  margin-bottom: 6px;
}

.kicker {
  color: var(--emerald);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
}

.site-footer {
  margin-top: 40px;
  color: var(--muted-2);
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.footer-note {
  max-width: 560px;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 36px;
  }

  .nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .section {
    padding: 22px;
  }
}
