/* ── Design tokens ───────────────────────── */
:root {
  --bg:     #FAFAF8;
  --ink:    #1F1B17;
  --ink-2:  #6C645B;
  --ink-3:  #9D9589;
  --border: rgba(0, 0, 0, 0.07);
  --blue:   #2B5CE6;
}

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

/* ── Base ────────────────────────────────── */
html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Geologica', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: none;
  border: none;
  text-decoration: none;
  font-family: 'Geologica', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover { opacity: 0.75; }
.btn-bracket { color: var(--blue); }
