:root {
  /* Core */
  --navy:     #111111;
  --sky:      #1A1A1A;
  --red:      #FF6200;
  --gold:     #FFD100;
  --white:    #FFFFFF;
  --black:    #080808;
  --offwhite: #FFF8F2;

  /* Text */
  --text-dark:  #080808;
  --text-mid:   #888888;
  --text-light: #FFFFFF;
  --text-muted: #777777;

  /* Surfaces */
  --surface-light: #FFFFFF;
  --surface-warm:  #FFF8F2;
  --surface-navy:  #111111;
  --surface-sky:   #1A1A1A;

  /* Legacy aliases — keeps existing CSS from breaking */
  --midnight: #111111;
  --smoke:    #1A1A1A;
  --ash:      #242424;
  --star:     #FFFFFF;
  --moonlight:#AAAAAA;
  --shadow:   #777777;
  --spark:    #FFD100;
  --fuse:     #FF6200;
  --boom:     #FF8A00;

  /* Functional */
  --success: #00A651;
  --warning: #FFD100;
  --error:   #FF6200;

  /* Typography */
  --font-display: 'Big Shoulders Display', 'Impact', sans-serif;
  --font-heading: 'Syne', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Type scale — mobile-first */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;
  --text-6xl: 5rem;

  /* Line height */
  --leading-tight: 1.1;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-loose: 1.7;

  /* 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: 1280px;
  --container-narrow: 960px;
  --container-wide: 1440px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

@media (min-width: 768px) {
  :root {
    --text-5xl: 5rem;
    --text-6xl: 8rem;
  }
}
