/* =====================================================
   ETERNAL SPRING CHURCH — Design Tokens
   Organic / mystical / nature palette
   Deep forest greens, warm parchment, soft gold
   ===================================================== */

:root, [data-theme="light"] {
  /* Type scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Surfaces — warm parchment / forest light */
  --color-bg:               #f5f2eb;
  --color-surface:          #f8f5ef;
  --color-surface-2:        #faf8f4;
  --color-surface-offset:   #ede9e0;
  --color-surface-offset-2: #e6e1d7;
  --color-surface-dynamic:  #ddd7cb;
  --color-divider:          #d5cfc3;
  --color-border:           #c9c3b5;

  /* Text */
  --color-text:         #1e2018;
  --color-text-muted:   #625f53;
  --color-text-faint:   #a39e93;
  --color-text-inverse: #f5f2eb;

  /* Primary — deep forest green */
  --color-primary:           #2a5e3a;
  --color-primary-hover:     #1d4429;
  --color-primary-active:    #132e1c;
  --color-primary-highlight: #c8d9cc;

  /* Gold accent */
  --color-gold:          #9a7a2a;
  --color-gold-hover:    #7c621f;
  --color-gold-highlight:#ecdfc5;

  /* Moon/mystical — soft purple */
  --color-moon:          #5d4e7a;
  --color-moon-hover:    #493d62;
  --color-moon-highlight:#d9d1e8;

  /* Error / Warning */
  --color-error:   #8b2626;
  --color-success: #2e6637;

  /* Radius */
  --radius-sm:   0.375rem;
  --radius-md:   0.5rem;
  --radius-lg:   0.75rem;
  --radius-xl:   1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px oklch(0.15 0.03 100 / 0.08);
  --shadow-md: 0 4px 16px oklch(0.15 0.03 100 / 0.10);
  --shadow-lg: 0 12px 40px oklch(0.15 0.03 100 / 0.14);

  /* Content widths */
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;

  /* Fonts */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body:    'Switzer', 'Helvetica Neue', sans-serif;
}

/* DARK MODE */
[data-theme="dark"] {
  --color-bg:               #111410;
  --color-surface:          #161912;
  --color-surface-2:        #1a1e14;
  --color-surface-offset:   #1c2016;
  --color-surface-offset-2: #212618;
  --color-surface-dynamic:  #2a2f1f;
  --color-divider:          #2e3323;
  --color-border:           #3a4028;
  --color-text:             #d4d0c4;
  --color-text-muted:       #7a7870;
  --color-text-faint:       #525047;
  --color-text-inverse:     #1e2018;
  --color-primary:          #5c9e70;
  --color-primary-hover:    #3e7f52;
  --color-primary-active:   #2c6040;
  --color-primary-highlight:#1e3226;
  --color-gold:             #c9a44a;
  --color-gold-hover:       #e0bc66;
  --color-gold-highlight:   #3d3018;
  --color-moon:             #9b8ec4;
  --color-moon-hover:       #b5a8d8;
  --color-moon-highlight:   #2e2840;
  --color-error:   #c86060;
  --color-success: #6aaa7a;
  --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.25);
  --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.45);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:               #111410;
    --color-surface:          #161912;
    --color-surface-2:        #1a1e14;
    --color-surface-offset:   #1c2016;
    --color-surface-offset-2: #212618;
    --color-surface-dynamic:  #2a2f1f;
    --color-divider:          #2e3323;
    --color-border:           #3a4028;
    --color-text:             #d4d0c4;
    --color-text-muted:       #7a7870;
    --color-text-faint:       #525047;
    --color-text-inverse:     #1e2018;
    --color-primary:          #5c9e70;
    --color-primary-hover:    #3e7f52;
    --color-primary-active:   #2c6040;
    --color-primary-highlight:#1e3226;
    --color-gold:             #c9a44a;
    --color-gold-hover:       #e0bc66;
    --color-gold-highlight:   #3d3018;
    --color-moon:             #9b8ec4;
    --color-moon-hover:       #b5a8d8;
    --color-moon-highlight:   #2e2840;
    --color-error:   #c86060;
    --color-success: #6aaa7a;
    --shadow-sm: 0 1px 3px oklch(0 0 0 / 0.25);
    --shadow-md: 0 4px 16px oklch(0 0 0 / 0.35);
    --shadow-lg: 0 12px 40px oklch(0 0 0 / 0.45);
  }
}
