/**
 * Design tokens — sourced from resources/gabriel_branding_based_on_logo.json
 * All visual values centralized here. Components reference these, never raw values.
 */

:root {
  /* === Colors === */

  /* Gold */
  --color-brand-gold: #E1B343;
  --color-brand-gold-light: #F1CF5D;
  --color-brand-gold-mid: #B48729;
  --color-brand-gold-dark: #885E11;

  /* Text */
  --color-text-primary: #59564E;
  --color-text-secondary: #8D8C86;
  --color-text-inverse: #FFFFFF;

  /* Surfaces */
  --color-surface-base: #FFFFFF;
  --color-surface-light: #F8F6F1;
  --color-surface-dark: #000000;

  /* Silver / Neutrals */
  --color-silver: #ABAAA6;
  --color-silver-light: #C9CAC8;
  --color-silver-lighter: #D8D9D7;

  /* Functional */
  --color-line: rgba(180, 135, 41, 0.16);
  --color-focus: #E1B343;
  --color-error: #C0392B;
  --color-success: #27AE60;

  /* === Gradients === */
  --gradient-gold: linear-gradient(135deg, #F1CF5D 0%, #E1B343 38%, #B48729 68%, #885E11 100%);
  --gradient-silver: linear-gradient(135deg, #D8D9D7 0%, #C9CAC8 35%, #ABAAA6 65%, #8D8C86 100%);

  /* === Typography === */
  --font-primary: 'Montserrat', 'Nunito Sans', Arial, sans-serif;
  --font-accent: 'Great Vibes', 'Alex Brush', cursive;
  --font-editorial: 'Cormorant Garamond', Georgia, serif;

  /* Scale (modular, based on 1rem = 16px) */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-md: 1.125rem;    /* 18px */
  --text-lg: 1.25rem;     /* 20px */
  --text-xl: 1.5rem;      /* 24px */
  --text-2xl: 2rem;       /* 32px */
  --text-3xl: 2.5rem;     /* 40px */
  --text-4xl: 3rem;       /* 48px */

  --leading-tight: 1.15;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* === Spacing === */
  --space-xs: 0.25rem;    /* 4px */
  --space-sm: 0.5rem;     /* 8px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4.5rem;    /* 72px */
  --space-4xl: 6rem;      /* 96px */
  --space-5xl: 7.5rem;    /* 120px */

  /* Section padding */
  --section-padding-mobile: var(--space-2xl);    /* 48px */
  --section-padding-desktop: var(--space-3xl);   /* 72px */

  /* Content width */
  --content-max-width: 1200px;
  --content-narrow: 720px;

  /* === Borders & Radii === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --border-light: 1px solid var(--color-line);

  /* === Shadows === */
  --shadow-sm: 0 2px 8px rgba(89, 86, 78, 0.06);
  --shadow-md: 0 8px 24px rgba(89, 86, 78, 0.08);
  --shadow-lg: 0 20px 50px rgba(89, 86, 78, 0.12);

  /* === Motion === */
  --duration-fast: 180ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --ease-default: ease;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* === Z-index scale === */
  --z-base: 1;
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
}
