:root {
  --bg: #fafaf7;
  --fg: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e5e3dd;
  --accent: #6b3a1a;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.placeholder-banner {
  background: #fff8e1;
  border-bottom: 1px solid #f0d97a;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-align: center;
  color: #6b5400;
}

.placeholder-banner a {
  color: var(--accent);
  font-weight: 600;
}
