/* ── Therapy Practice LCSW — design tokens ───────────────────── */
:root {
  /* Forest / sage (primary brand — calming, grounded) */
  --forest-900: #1f2e25;
  --forest-800: #2a3f33;
  --forest-700: #3a5544;
  --forest-600: #4a6b56;
  --forest-500: #6b8a76;
  --sage-300:   #b6c4ae;
  --sage-200:   #d4ddc9;
  --sage-100:   #e8ede0;

  /* Terracotta / clay (accent — warm, human) */
  --clay-700:   #8c4a36;
  --clay-600:   #b35a3f;
  --clay-500:   #c97759;
  --clay-300:   #e8b9a3;
  --clay-100:   #f6e6dc;

  /* Ink / neutrals */
  --ink:        #1c1f1d;
  --ink-2:      #3a3f3b;
  --muted:      #6b6e6a;
  --line:       #e3e0d8;
  --line-2:     #f0ede4;

  /* Paper (warm cream backgrounds) */
  --paper:      #f7f3ec;
  --paper-2:    #efeae0;
  --paper-3:    #e6dfd1;
  --white:      #ffffff;

  /* Soft gold (subtle highlight) */
  --gold:       #b89a5e;
  --gold-soft:  #d6c596;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(31,46,37,.06), 0 2px 6px rgba(31,46,37,.04);
  --shadow-md: 0 8px 24px -8px rgba(31,46,37,.18), 0 2px 6px rgba(31,46,37,.06);
  --shadow-lg: 0 30px 60px -30px rgba(31,46,37,.35), 0 10px 20px -10px rgba(31,46,37,.14);

  /* Type families */
  --f-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --f-serif:   'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --f-display: 'Cormorant Garamond', 'Cormorant', Georgia, 'Times New Roman', serif;
  --f-mono:    'Inter', system-ui, -apple-system, sans-serif;

  /* Radii */
  --r-xs: 3px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Transitions */
  --t-fast: 160ms ease;
  --t-med:  280ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 520ms cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body { min-height: 100vh; overflow-x: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--clay-300); color: var(--forest-900); }

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
