/* The signet's visual law — the most restrained surface of all.
   This page holds nothing but connects everything. Black canvas,
   warm gold accent, φ-spaced constellation. */
:root {
  --ink: #0b0b0c;
  --umber: #181613;
  --bone: #f4f1ea;
  --mist: #a8a294;
  --stone: #6a6357;
  --gold: #c8a86b;
  --gold-warm: #d6a94a;
  --gold-deep: #8e6f2e;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: 'Times New Roman', Times, serif;
  font-feature-settings: 'liga' 1, 'kern' 1;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

.signet {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 34rem;
  margin: 0 auto;
  padding: 55px 21px;
}

.mark {
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 21px;
  text-align: center;
}

h1 {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 13px;
  font-weight: 600;
  text-align: center;
}

.tagline {
  color: var(--mist);
  font-size: 1rem;
  margin: 0 0 55px;
  text-align: center;
  font-style: italic;
}

ul.constellation {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.constellation li {
  border-left: 1px solid rgba(200, 168, 107, 0.4);
  padding: 13px 21px;
  margin: 13px 0;
  transition: border-color 0.2s ease, padding-left 0.2s ease;
}
ul.constellation li:hover {
  border-left-color: var(--gold);
  padding-left: 26px;
}
ul.constellation li a {
  color: var(--gold);
  text-decoration: none;
  font-size: 1.25rem;
  display: block;
}
ul.constellation li .desc {
  color: var(--mist);
  font-size: 0.875rem;
  margin-top: 5px;
}

footer {
  margin-top: 89px;
  padding-top: 21px;
  border-top: 1px solid rgba(244, 241, 234, 0.1);
  color: var(--stone);
  font-size: 0.7rem;
  line-height: 1.7;
  text-align: center;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em;
}

footer a {
  color: var(--stone);
  text-decoration: none;
  border-bottom: 1px dotted var(--stone);
}
footer a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
