:root {
  --bg-main: #fffaf6;
  --bg-soft: #f6efe9;
  --accent: #d9a87e;
  --text-main: #3a2f2a;
  --text-muted: #6b5f58;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  line-height: 1.7;
}

.site-header {
  background: var(--bg-soft);
  padding: 2.5rem 1rem;
  text-align: center;
}

.site-header h1 {
  margin-bottom: 1rem;
  font-size: 2.3rem;
}

.site-header p {
  max-width: 900px;
  margin: auto;
  color: var(--text-muted);
}

.site-nav {
  background: #ffffff;
  padding: 0.75rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.site-nav a {
  margin: 0 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  color: var(--accent);
}

h3 {
  margin-top: 1.5rem;
}

ul {
  padding-left: 1.2rem;
}

.site-footer {
  background: var(--bg-soft);
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .site-header h1 {
    font-size: 2.8rem;
  }
}
