/* ===================================================================
   GREENHOUSE VISIONS — Design System
   "Your Life. Our Network."
   Deep forest green · warm cream · gold accents
   =================================================================== */

:root,
[data-theme='light'] {
  /* Surfaces — warm cream */
  --color-bg: #f6f4ee;
  --color-surface: #fffdf8;
  --color-surface-2: #fbf9f3;
  --color-surface-offset: #f1ede4;
  --color-surface-offset-2: #e9e3d6;
  --color-surface-dynamic: #e3ddce;
  --color-divider: #e4ddcf;
  --color-border: #d9d1bf;

  /* Text */
  --color-text: #16241b;
  --color-text-muted: #5c6b5e;
  --color-text-faint: #9aa49a;
  --color-text-inverse: #f7f5ef;

  /* Primary — Deep Forest Green */
  --color-primary: #1b3a2b;
  --color-primary-hover: #11281d;
  --color-primary-active: #0c1d14;
  --color-primary-soft: #2c5240;
  --color-primary-highlight: #d7e3d9;

  /* Gold accent */
  --color-gold: #b8902a;
  --color-gold-hover: #9c771f;
  --color-gold-active: #7e5f17;
  --color-gold-highlight: #efe3c7;

  /* Sage (secondary green for variety) */
  --color-sage: #5c7a5f;
  --color-sage-highlight: #dde8dc;

  /* Success / Error */
  --color-success: #2f6b3e;
  --color-error: #9a2b3a;
  --color-error-highlight: #ecd9dc;

  /* Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-2xl: 2.5rem;
  --radius-full: 9999px;

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(22, 36, 27, 0.06);
  --shadow-md: 0 6px 18px rgba(22, 36, 27, 0.08);
  --shadow-lg: 0 18px 44px rgba(22, 36, 27, 0.13);
  --shadow-green: 0 18px 40px rgba(27, 58, 43, 0.22);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 1080px;
  --content-wide: 1240px;
  --content-full: 100%;

  /* 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.2rem, 1rem + 0.7vw, 1.5rem);
  --text-xl: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  --text-2xl: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem);
  --text-3xl: clamp(2.8rem, 1rem + 5.5vw, 5rem);

  /* 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;

  /* Fonts */
  --font-display: 'Boska', 'Georgia', serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
}

[data-theme='dark'] {
  --color-bg: #0f1611;
  --color-surface: #16201a;
  --color-surface-2: #1b2620;
  --color-surface-offset: #18221c;
  --color-surface-offset-2: #1f2a23;
  --color-surface-dynamic: #28362d;
  --color-divider: #21302a;
  --color-border: #2c3c33;

  --color-text: #e4e6df;
  --color-text-muted: #9aa69b;
  --color-text-faint: #5f6b62;
  --color-text-inverse: #16241b;

  --color-primary: #6fa67d;
  --color-primary-hover: #5d9470;
  --color-primary-active: #4d8160;
  --color-primary-soft: #3a5a44;
  --color-primary-highlight: #1d2f24;

  --color-gold: #e0b545;
  --color-gold-hover: #ecc25c;
  --color-gold-active: #f3cf78;
  --color-gold-highlight: #2a2415;

  --color-sage: #8fb093;
  --color-sage-highlight: #1e2a22;

  --color-success: #6fa67d;
  --color-error: #d96a78;
  --color-error-highlight: #2a181b;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.5);
  --shadow-green: 0 18px 40px rgba(0, 0, 0, 0.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0f1611;
    --color-surface: #16201a;
    --color-surface-2: #1b2620;
    --color-surface-offset: #18221c;
    --color-surface-offset-2: #1f2a23;
    --color-surface-dynamic: #28362d;
    --color-divider: #21302a;
    --color-border: #2c3c33;
    --color-text: #e4e6df;
    --color-text-muted: #9aa69b;
    --color-text-faint: #5f6b62;
    --color-text-inverse: #16241b;
    --color-primary: #6fa67d;
    --color-primary-hover: #5d9470;
    --color-primary-active: #4d8160;
    --color-primary-soft: #3a5a44;
    --color-primary-highlight: #1d2f24;
    --color-gold: #e0b545;
    --color-gold-hover: #ecc25c;
    --color-gold-active: #f3cf78;
    --color-gold-highlight: #2a2415;
    --color-sage: #8fb093;
    --color-sage-highlight: #1e2a22;
    --color-success: #6fa67d;
    --color-error: #d96a78;
    --color-error-highlight: #2a181b;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.5);
    --shadow-green: 0 18px 40px rgba(0, 0, 0, 0.55);
  }
}
