:root {
  color-scheme: light;
  --cream: #fbf7f2;
  --cream-dark: #f3ebe0;
  --coffee: #5c3d2e;
  --coffee-light: #8b5e3c;
  --burgundy: #722f37;
  --text: #2c1810;
  --text-muted: #7a6558;
  --border: #e8ddd0;
  --white: #ffffff;
  --max-width: 720px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: var(--burgundy);
}

a:hover {
  color: var(--coffee-light);
}

.site-header {
  padding: 2.5rem 1.5rem 1rem;
  text-align: center;
}

.brand {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header h1 {
  margin: 0.75rem 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
}

.site-header p {
  margin: 0 auto;
  max-width: var(--max-width);
  color: var(--text-muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.08);
}

.card h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.2rem;
  color: var(--coffee);
}

.card h2:first-child {
  margin-top: 0;
}

.card p,
.card li {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.98rem;
}

.card ul {
  padding-left: 1.25rem;
}

.meta {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--white);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.95rem;
}

.button.secondary {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--border);
}
