:root {
  /* Color — cinema premiere: charcoal + film-award gold + velvet burgundy */
  --color-bg: #0b0b0d;
  --color-bg-raised: #131316;
  --color-bg-elevated: #18181c;
  --color-text: #f2ede4;
  --color-text-muted: #b3aea6;
  --color-gold: #c9a15a;
  --color-gold-dim: #a9814a;
  --color-burgundy: #7a1f2b;
  --color-burgundy-light: #9c2c3a;
  --color-border: rgba(242, 237, 228, 0.12);
  --color-border-strong: rgba(242, 237, 228, 0.22);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-h1: clamp(2.75rem, 5vw + 1rem, 5.5rem);
  --fs-h2: clamp(2rem, 3vw + 1rem, 3.25rem);
  --fs-h3: clamp(1.4rem, 1.5vw + 1rem, 1.9rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --tracking-label: 0.18em;
  --lh-display: 1.08;
  --lh-body: 1.65;

  /* Space */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 7rem;
  --space-8: 10rem;

  /* Motion */
  --ease-lux: cubic-bezier(0.16, 0.84, 0.44, 1);
  --dur-fast: 300ms;
  --dur-med: 650ms;
  --dur-slow: 900ms;

  /* 3D */
  --tilt-perspective: 1200px;
  --tilt-max: 10deg;

  /* Misc */
  --radius-sm: 2px;
  --radius-md: 4px;
  --shadow-frame: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
  --container-w: 1320px;
  --z-nav: 100;
  --z-cursor: 9999;
  --z-carousel: 10;
}

[data-motion="off"] {
  --dur-fast: 1ms;
  --dur-med: 1ms;
  --dur-slow: 1ms;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --dur-fast: 1ms;
    --dur-med: 1ms;
    --dur-slow: 1ms;
  }
}
