@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

:root {
  --bg:     #0e0d0b;
  --text:   #e8e0d0;
  --muted:  #6b6456;
  --accent: #c8a96e;
  --border: #2a2720;
}

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

html, body {
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

main {
  max-width: 560px;
  margin: 0 auto;
  padding: 96px 24px 100px;
}

.intro p {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 22px;
}

.intro a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.intro a:hover { border-color: var(--accent); }
