:root {
  /* Andalusian Night palette */
  --night: #0E1A2A;
  --night-2: #142235;
  --night-3: #1B2C42;
  --night-line: rgba(234,226,210,0.08);
  --night-line-2: rgba(234,226,210,0.20);
  --night-line-3: rgba(234,226,210,0.32);

  /* Cream type system */
  --paper: #EAE2D2;
  --paper-2: #C9C0AE;
  --paper-3: #9A9286;
  --paper-4: #7E7665;

  /* Single accent */
  --accent: #CC8A2A;
  --accent-2: #E8A845;
  --accent-soft: rgba(232,168,69,0.18);

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(0.7, 0, 0.3, 1);
  --ease-quick: cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing */
  --pad-page: clamp(20px, 4vw, 40px);
  --pad-hero: clamp(28px, 6vw, 64px);
  --pad-section: clamp(40px, 8vw, 96px);
}

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