:root {
  /* ── Colors (dark-only) ── */
  --color-bg:         #000000;
  --color-bg-alt:     #0a0a0a;
  --color-text:       #f4f3ef;
  --color-text-muted: #777770;
  --color-border:     rgba(244, 243, 239, 0.09);
  --color-accent:     #ff6600;

  /* ── Nav ── */
  --nav-height: 56px;
  --nav-bg:     rgba(0, 0, 0, 0.90);

  /* ── Typography ── */
  /* Primary: Playfair Display (≈ PP Editorial New) — serif, body + headlines */
  --font-serif:  'Playfair Display', 'Georgia', serif;
  /* Secondary: DM Mono (≈ GT America Mono) — labels, nav, tags */
  --font-mono:   'DM Mono', 'Courier New', monospace;
  /* Utility: DM Sans — UI elements, small text */
  --font-sans:   'DM Sans', system-ui, sans-serif;

  --text-hero:   clamp(2.8rem, 6vw, 6.5rem);
  --text-xl:     clamp(1.6rem, 3.2vw, 3rem);
  --text-lg:     clamp(1.1rem, 1.8vw, 1.5rem);
  --text-base:   clamp(0.9rem, 1.1vw, 1.05rem);
  --text-sm:     0.8125rem;
  --text-xs:     0.7rem;

  --weight-light:   300;
  --weight-regular: 400;
  --weight-medium:  500;
  --weight-bold:    700;

  --leading-tight:  1.06;
  --leading-normal: 1.5;
  --leading-loose:  1.75;

  --tracking-wide:  0.07em;
  --tracking-wider: 0.12em;

  /* ── Spacing ── */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-24:  6rem;
  --space-32:  8rem;

  /* ── Layout ── */
  --container-max: 1320px;
  --container-pad: clamp(1.25rem, 4vw, 3.5rem);

  /* ── Easing ── */
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --duration:  0.5s;
}
