/* ============================================================
   SIGNIA — Design Tokens
   All CSS custom properties (colors, typography, spacing)
   ============================================================ */

:root {
  /* Colors */
  --bg-primary:       #0D0C0A;
  --bg-secondary:     #161410;
  --bg-card:          #1C1A17;
  --bg-card-hover:    #232018;
  --border:           #2C2A26;
  --border-light:     #3A3834;

  --text-primary:     #F0EBE1;
  --text-secondary:   #9C9590;
  --text-muted:       #5C5A56;

  --accent:           #C8A966;
  --accent-hover:     #D9BC7E;
  --accent-glow:      rgba(200, 169, 102, 0.15);

  --white:            #FFFFFF;
  --danger:           #E05A5A;
  --success:          #5ABD8C;

  /* Typography */
  --font-serif:       'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding:    120px;
  --section-padding-sm: 72px;
  --container-max:      1280px;
  --container-pad:      clamp(24px, 5vw, 80px);

  /* Transitions */
  --transition:       all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow:  all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
