/* Detailed Therapy Cleaning — design tokens
   Brand: pink + green duotone, friendly/playful/professional */

:root {
  /* 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.25rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 4.5rem);
  --text-hero: clamp(2.75rem, 0.75rem + 6vw, 6.5rem);

  /* 4px spacing system */
  --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;

  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1240px;
  --content-full: 100%;

  --font-display: 'Chillax', 'Baloo 2', sans-serif;
  --font-body: 'General Sans', 'Nunito', sans-serif;
}

:root,
[data-theme='light'] {
  /* Surfaces */
  --color-bg: #fffbfc;
  --color-surface: #ffffff;
  --color-surface-2: #fff5fa;
  --color-surface-offset: #f2f9f4;
  --color-surface-offset-2: #e7f4ec;
  --color-surface-dynamic: #ffeef6;
  --color-divider: #f2dde8;
  --color-border: #e6cbdb;

  /* Text */
  --color-text: #20261f;
  --color-text-muted: #5c6a5c;
  --color-text-faint: #9aa89b;
  --color-text-inverse: #fffbfc;

  /* Primary accent — Lime Green (matched to logo) */
  --color-primary: #5c820c;
  --color-primary-hover: #4a6a09;
  --color-primary-active: #395108;
  --color-primary-highlight: #eaf5d2;

  /* Secondary accent — Hot Pink (matched to logo) */
  --color-accent: #d5257e;
  --color-accent-hover: #b81e6b;
  --color-accent-active: #96185a;
  --color-accent-highlight: #ffe0f0;

  --color-warning: #b6672a;
  --color-warning-highlight: #f1ddc9;
  --color-success: #5c820c;
  --color-success-highlight: #eaf5d2;

  --shadow-sm: 0 1px 2px oklch(0.3 0.05 340 / 0.08);
  --shadow-md: 0 8px 20px oklch(0.3 0.05 340 / 0.1);
  --shadow-lg: 0 20px 44px oklch(0.3 0.05 340 / 0.14);
}

[data-theme='dark'] {
  --color-bg: #131e18;
  --color-surface: #182a21;
  --color-surface-2: #1c3126;
  --color-surface-offset: #1d2f27;
  --color-surface-offset-2: #223a2d;
  --color-surface-dynamic: #2c2130;
  --color-divider: #2b4234;
  --color-border: #375040;

  --color-text: #eaf3ec;
  --color-text-muted: #a7bfad;
  --color-text-faint: #6d8577;
  --color-text-inverse: #131e18;

  --color-primary: #a3d62e;
  --color-primary-hover: #b6e04c;
  --color-primary-active: #c8ea70;
  --color-primary-highlight: #33421a;

  --color-accent: #ff5cb3;
  --color-accent-hover: #ff7ec2;
  --color-accent-active: #ffa1d4;
  --color-accent-highlight: #4a2338;

  --color-warning: #d4894a;
  --color-warning-highlight: #46331f;
  --color-success: #a3d62e;
  --color-success-highlight: #33421a;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 8px 20px oklch(0 0 0 / 0.35);
  --shadow-lg: 0 20px 44px oklch(0 0 0 / 0.45);
}
