/* ============================================================
   New Generation Ageing — Design Tokens
   Warm ivory ground · deep navy accent · terracotta highlight
   ============================================================ */

:root,
[data-theme="light"] {
  /* Surfaces */
  --color-bg: #F6F1E7;
  --color-surface: #FBF7EE;
  --color-surface-2: #FFFDF7;
  --color-surface-offset: #EFE8D8;
  --color-surface-offset-2: #E6DEC8;
  --color-divider: #DED4BE;
  --color-border: #C9BE9F;

  /* Text */
  --color-text: #1A1A1A;
  --color-text-muted: #5A554A;
  --color-text-faint: #8A8272;
  --color-text-inverse: #FBF7EE;

  /* Primary Accent — Deep Navy (matches document family) */
  --color-primary: #0B3D5C;
  --color-primary-hover: #072A42;
  --color-primary-active: #051D2E;
  --color-primary-highlight: #D5DEE6;

  /* Highlight — Terracotta (CTAs, accent chips) */
  --color-highlight: #B4633A;
  --color-highlight-hover: #964F2C;
  --color-highlight-active: #6E3A20;
  --color-highlight-subtle: #EBD8CB;

  /* Semantic */
  --color-success: #4B7B3D;
  --color-warning: #A76A1F;
  --color-error: #9B2C2C;

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

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

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 80 / 0.06);
  --shadow-md: 0 4px 14px oklch(0.2 0.01 80 / 0.08);
  --shadow-lg: 0 20px 48px oklch(0.2 0.01 80 / 0.14);

  /* Content widths */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --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.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.5vw, 3.25rem);
  --text-3xl: clamp(2.5rem, 1.2rem + 4vw, 4.75rem);
  --text-hero: clamp(3rem, 1rem + 6.5vw, 6.75rem);

  /* 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 — set explicit stacks; loaded via Fontshare */
  --font-display: 'Boska', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
}

[data-theme="dark"] {
  --color-bg: #12100C;
  --color-surface: #17140F;
  --color-surface-2: #1C1913;
  --color-surface-offset: #221E17;
  --color-surface-offset-2: #29241C;
  --color-divider: #2E2921;
  --color-border: #3D372D;

  --color-text: #EAE3D2;
  --color-text-muted: #A79E88;
  --color-text-faint: #6E6858;
  --color-text-inverse: #12100C;

  --color-primary: #6BA2C1;
  --color-primary-hover: #93BDD3;
  --color-primary-active: #B4D0E0;
  --color-primary-highlight: #1B2A36;

  --color-highlight: #E19069;
  --color-highlight-hover: #EDA689;
  --color-highlight-active: #F2BDA6;
  --color-highlight-subtle: #3A241A;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.30);
  --shadow-md: 0 4px 14px oklch(0 0 0 / 0.40);
  --shadow-lg: 0 20px 48px oklch(0 0 0 / 0.50);
}
