/* ============================================
   HARA — Design Tokens
   Single source of truth for colors, typography, spacing
   ============================================ */

:root {
  /* Brand Colors — the only five, no exceptions */
  --dark: #3a4534;
  --gray: #5b6153;
  --stone: #c1c2b0;
  --olive: #88926d;
  --ivory: #f1ebdf;

  /* Semantic tokens (default: landing/neutral) */
  --bg-primary: var(--ivory);
  --bg-secondary: var(--stone);
  --text-primary: var(--dark);
  --text-secondary: var(--gray);
  --accent: var(--olive);

  /* Glass tokens */
  --glass-bg: rgba(193, 194, 176, 0.15);
  --glass-border: rgba(193, 194, 176, 0.25);
  --glass-shadow: rgba(58, 69, 52, 0.08);

  /* Typography */
  --font-display: 'IvyPresto Display', Georgia, 'Times New Roman', serif;
  --font-headline: 'IvyPresto Headline', Georgia, 'Times New Roman', serif;
  --font-body: 'HK Grotesk Pro', Arial, Helvetica, sans-serif;

  /* Type Scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.3125rem);
  --text-xl: clamp(1.3125rem, 1.1rem + 0.8vw, 1.75rem);
  --text-2xl: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  --text-3xl: clamp(2.25rem, 1.7rem + 2vw, 3.5rem);
  --text-4xl: clamp(2.75rem, 2rem + 3vw, 4.5rem);

  /* Spacing Scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: clamp(1.25rem, 4vw, 2.5rem);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0.0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;
  --duration-door: 800ms;
}

/* ============================================
   Brand: Clinic — Dark-forward
   ============================================ */
[data-brand="clinic"] {
  --bg-primary: var(--dark);
  --bg-secondary: var(--gray);
  --text-primary: var(--ivory);
  --text-secondary: var(--stone);
  --accent: var(--olive);
  --glass-bg: rgba(58, 69, 52, 0.25);
  --glass-border: rgba(193, 194, 176, 0.15);
  --glass-shadow: rgba(58, 69, 52, 0.2);
}

/* ============================================
   Brand: Wellness — Ivory-forward
   ============================================ */
[data-brand="wellness"] {
  --bg-primary: var(--ivory);
  --bg-secondary: var(--stone);
  --text-primary: var(--dark);
  --text-secondary: var(--gray);
  --accent: var(--olive);
  --glass-bg: rgba(241, 235, 223, 0.4);
  --glass-border: rgba(193, 194, 176, 0.3);
  --glass-shadow: rgba(58, 69, 52, 0.06);
}

/* ============================================
   Brand: Landing — Split context
   ============================================ */
[data-brand="landing"] {
  --bg-primary: var(--ivory);
  --text-primary: var(--dark);
}
