/* CoptAra Design Tokens — Light (default) + Dark themes */

:root {
  --color-bg:        #FAF7F2;
  --color-surface:   #F0EBE3;
  --color-surface-2: #E8E0D5;
  --color-text:      #2C2416;
  --color-text-muted:#6B5A45;
  --color-accent:    #B8860B;
  --color-accent-2:  #C4714A;
  --color-border:    #D9CFC3;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', 'Segoe UI', system-ui, sans-serif;

  --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:  clamp(1.75rem, 1.5rem + 1.5vw, 2.5rem);
  --text-hero: clamp(2.5rem, 2rem + 3vw, 5rem);

  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: clamp(3rem, 2rem + 5vw, 6rem);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 3px rgba(44, 36, 22, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 36, 22, 0.12);
  --shadow-lg: 0 8px 32px rgba(44, 36, 22, 0.16);

  --duration-fast:   150ms;
  --duration-normal: 300ms;
  --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
}

html.dark {
  --color-bg:        #0D0D1A;
  --color-surface:   #16162A;
  --color-surface-2: #1E1E35;
  --color-text:      #F5F0E8;
  --color-text-muted:#9B8E7A;
  --color-accent:    #C9A84C;
  --color-accent-2:  #8B5E3C;
  --color-border:    #2A2A45;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}
