:root {
  --fg: #1a1a1a;
  --muted: #6b6b6b;
  --bg: #faf8f4;
  --accent: #8a6d3b;
}

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

html, body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "Meiryo", sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.placeholder {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  gap: 12px;
}

.eyebrow {
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
}

.placeholder h1 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 700;
}

.lead {
  font-size: 1.05rem;
}

.note {
  color: var(--muted);
}

.path {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
