/* ─── Google Fonts ───────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ─── Design tokens ─────────────────────────────────────────────────────── */
:root {
  --bg:          #0e1014;
  --bg-elev-1:   #141720;
  --bg-elev-2:   #1a1e2a;
  --panel:       #1e2230;
  --panel-2:     #242838;

  --text:        #e8eaf0;
  --muted:       #7a8299;

  /* Warm amber — cinematic, not neon */
  --accent:      #e8a428;
  --accent-soft: rgba(232, 164, 40, 0.08);
  --accent-2:    #e8a428;

  --border-soft: #252a38;
  --border-hard: #2e3448;

  --shadow-1:    0 2px 10px -4px rgba(0, 0, 0, 0.5);
  --shadow-2:    0 8px 28px -8px rgba(0, 0, 0, 0.7);
  --shadow-card: 0 4px 16px -6px rgba(0, 0, 0, 0.6);
  --accent-glow: 0 0 0 1px rgba(232, 164, 40, 0.15), 0 0 20px -8px rgba(232, 164, 40, 0.25);

  --danger: #e05252;

  --text-xs: 0.72rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.375rem;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 22px;
  --space-6: 30px;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --transition-interactive: background-color .18s ease, transform .18s ease, box-shadow .2s ease, border-color .18s ease, color .18s ease, opacity .18s ease;
  --transition-press: transform .1s ease, filter .1s ease;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.skip-link { position: absolute; left: -1000px; top: 0; background: var(--accent); color: #000; padding: 8px; }
.skip-link:focus { left: 8px; z-index: 1000; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
