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

:root {
  --ink: #1a1712;
  --parchment: #f5f0e8;
  --parchment-dark: #ede6d6;
  --gold: #b8972a;
  --gold-light: #d4af37;
  --blood: #8b1a1a;
  --smoke: #6b6254;
  --ash: #9a9080;
  --border: rgba(184,151,42,0.25);
  --shadow: rgba(26,23,18,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #0f0d0a;
  color: var(--parchment);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(184,151,42,0.2); border-radius: 3px; }
