/* Styles for the public "coming soon" home page (index.html). Self-contained. */
:root {
  --ink: #0f0f0f;
  --paper: #f7f4ef;
  --muted: #8a8278;
  --rule: #d8d3c8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 20px;
}
.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ink);
}
.tagline {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
}
.rule {
  width: 60px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}
