/* Lupa site — shared minimal styles. Warm cream / charcoal, taupe + peach
   accents matching the app palette. Text-first; no decorative chrome. */

:root {
  --bg: #f7f2ea;
  --text: #221e19;
  --muted: #6e675e;
  --accent: #8c8175;
  --link: #a05c33;
  --rule: #e3dccf;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17140f;
    --text: #ece6dc;
    --muted: #a49b8d;
    --accent: #aba090;
    --link: #dda173;
    --rule: #322c24;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

h1 {
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.75rem;
}

p,
ul {
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.25rem;
}

li {
  margin-bottom: 0.35rem;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

strong {
  font-weight: 600;
}

.meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.footer {
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a {
  color: var(--muted);
}

.wordmark {
  display: inline-block;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
}

.wordmark span {
  color: var(--accent);
  font-weight: 400;
}
