/* ============================================
   PROPHET GUESTS - DESIGN TOKENS
   ============================================ */

:root {
  /* ------------------------------------------
     COLOR PALETTE
     ------------------------------------------ */
  --color-gold:       #B8963E;
  --color-gold-light: #D4AF5A;
  --color-gold-dark:  #9A7B2C;
  --color-cream:      #FAF7F2;
  --color-cream-dark: #F0EBE3;
  --color-deep:       #1A1A2E;
  --color-deep-light: #252542;
  --color-green:      #1B4332;
  --color-green-light:#2D6A4F;
  --color-grey-warm:  #6B6560;
  --color-grey-light: #E8E4DF;
  --color-white:      #FFFFFF;
  --color-error:      #C0392B;
  --color-success:    #27AE60;
  --color-whatsapp:   #25D366;
  
  /* ------------------------------------------
     TYPOGRAPHY
     ------------------------------------------ */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-accent:  'Amiri', Georgia, serif;
  
  /* Scale */
  --text-xs:   0.75rem;   /* 12px */
  --text-sm:   0.875rem;  /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg:   1.125rem;  /* 18px */
  --text-xl:   1.25rem;   /* 20px */
  --text-2xl:  1.5rem;    /* 24px */
  --text-3xl:  1.875rem;  /* 30px */
  --text-4xl:  2.25rem;   /* 36px */
  --text-5xl:  3rem;      /* 48px */
  --text-6xl:  3.75rem;   /* 60px */
  --text-7xl:  4.5rem;    /* 72px */
  
  /* Line heights */
  --leading-tight:  1.2;
  --leading-snug:   1.4;
  --leading-normal: 1.6;
  --leading-loose:  1.8;
  
  /* Letter spacing */
  --tracking-tight:  -0.02em;
  --tracking-normal:  0;
  --tracking-wide:    0.05em;
  --tracking-wider:   0.1em;
  --tracking-widest:  0.15em;
  
  /* ------------------------------------------
     SPACING
     ------------------------------------------ */
  --space-1:  0.25rem;   /* 4px */
  --space-2:  0.5rem;    /* 8px */
  --space-3:  0.75rem;   /* 12px */
  --space-4:  1rem;      /* 16px */
  --space-5:  1.25rem;   /* 20px */
  --space-6:  1.5rem;    /* 24px */
  --space-8:  2rem;      /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */
  
  /* ------------------------------------------
     BORDERS & RADIUS
     ------------------------------------------ */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;
  
  /* ------------------------------------------
     SHADOWS
     ------------------------------------------ */
  --shadow-sm:  0 1px 3px rgba(26, 26, 46, 0.08);
  --shadow-md:  0 4px 16px rgba(26, 26, 46, 0.10);
  --shadow-lg:  0 8px 32px rgba(26, 26, 46, 0.14);
  --shadow-xl:  0 16px 48px rgba(26, 26, 46, 0.18);
  --shadow-gold: 0 4px 20px rgba(184, 150, 62, 0.25);
  
  /* ------------------------------------------
     TRANSITIONS
     ------------------------------------------ */
  --transition-fast:   150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow:   400ms ease;
  --transition-slower: 600ms ease;
  
  /* ------------------------------------------
     LAYOUT
     ------------------------------------------ */
  --container-max: 1280px;
  --container-narrow: 720px;
  --container-pad: clamp(1rem, 5vw, 3rem);
  
  /* ------------------------------------------
     COMPONENT TOKENS
     ------------------------------------------ */
  --gold-rule: 1px solid var(--color-gold);
  --header-height: 80px;
  --topbar-height: 40px;
}
