
:root {
  /* Brand colors */
  --andava-ivory: #f8f5f1;
  --andava-warm-white: #fffdf9;
  --andava-charcoal: #232220;
  --andava-stone: #7a746b;
  --andava-brass: #b08a5a;
  --andava-brass-dark: #89663f;
  --andava-taupe: #ddd4ca;
  --andava-dried-clay: #c8a18d;
  --andava-olive-smoke: #7b7b65;
  --andava-mushroom-taupe: #afa398;
  --andava-sand: #eee7de;
  --andava-forest: #26372f;

  /* Semantic colors */
  --color-bg: var(--andava-ivory);
  --color-surface: var(--andava-warm-white);
  --color-text: var(--andava-charcoal);
  --color-muted: var(--andava-stone);
  --color-accent: var(--andava-brass);
  --color-accent-strong: var(--andava-brass-dark);
  --color-border: var(--andava-taupe);
  --color-soft: var(--andava-sand);

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;

  --text-xs: 0.68rem;
  --text-sm: 0.78rem;
  --text-md: 0.94rem;
  --text-lg: 1.12rem;
  --text-xl: 1.5rem;
  --text-2xl: 2.25rem;
  --text-3xl: clamp(3rem, 6vw, 5.8rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Shape */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-soft: 0 14px 40px rgba(52, 42, 34, 0.08);
  --shadow-lift: 0 24px 60px rgba(52, 42, 34, 0.14);

  /* Motion */
  --motion-fast: 180ms ease;
  --motion-standard: 320ms cubic-bezier(.2,.7,.2,1);
}

body.dark {
  --color-bg: #171614;
  --color-surface: #24211e;
  --color-text: #f6f0e8;
  --color-muted: #beb5ab;
  --color-accent: #d2a979;
  --color-accent-strong: #e7c59f;
  --color-border: #3b3732;
  --color-soft: #211f1c;
  --shadow-soft: 0 14px 40px rgba(0,0,0,.28);
  --shadow-lift: 0 24px 60px rgba(0,0,0,.38);
}
