:root {
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #b8562f;
  --bg: #faf8f5;
  --line: #e5e0d8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Georgia, serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.word-of-day {
  max-width: 560px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.word {
  font-size: 3.5rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.phonetic {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 0.25rem;
}

.pos {
  font-style: italic;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.definition {
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 0 0 1.25rem;
}

.example {
  font-size: 1.05rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 1.5rem;
}

.related {
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.related-label {
  color: var(--muted);
  margin-right: 0.5rem;
}
.related-word {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  margin: 0.15rem;
  font-size: 0.85rem;
}

.permalink {
  display: inline-block;
  margin-top: 1rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.permalink:hover { text-decoration: underline; }

.site-footer {
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}
