/* Phase 1 holding styles. Replaced wholesale in Phase 2 with the real design. */
:root {
  --bg: #fdf8f0;
  --ink: #2b1d14;
  --muted: #6b5545;
  --accent: #b4472a;
  --rule: #e3d5c3;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 2rem 1.25rem;
}
main { max-width: 34rem; text-align: center; }
h1 {
  font-size: clamp(1.9rem, 6vw, 2.9rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem;
  text-transform: uppercase;
}
.rule { height: 3px; background: var(--accent); width: 4rem; margin: 1.25rem auto; border-radius: 2px; }
p { color: var(--muted); margin: 0.75rem 0; }
a { color: var(--accent); }
.meta { font-size: 0.85rem; color: var(--muted); margin-top: 2.5rem; border-top: 1px solid var(--rule); padding-top: 1rem; }
