/* ─────────────────────────────────────
   OWNIO DESIGN TOKENS
   Single source of truth for all styles
───────────────────────────────────── */

:root {
  /* Colors */
  --forest:           #1F3A2E;
  --forest-light:     #2D5241;
  --forest-dark:      #152A20;
  --paper:            #F2EDE2;
  --linen:            #EAE3D3;
  --terracotta:       #C97B4A;
  --terracotta-light: #E8956A;
  --ink:              #1A1A18;
  --muted:            #7A7468;
  --muted-light:      #A8A29A;

  /* Typography */
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  /* Font sizes */
  --text-xs:   11px;
  --text-sm:   13px;
  --text-base: 15px;
  --text-md:   17px;
  --text-lg:   22px;
  --text-xl:   28px;
  --text-2xl:  36px;
  --text-3xl:  48px;
  --text-4xl:  64px;
  --text-hero: clamp(48px, 8vw, 96px);

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 100px;

  /* Layout */
  --max-width:    1100px;
  --section-pad:  100px 48px;
  --radius-sm:    8px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-pill:  100px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);

  /* Transitions */
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --duration-sm: 0.2s;
  --duration-md: 0.4s;
  --duration-lg: 0.7s;
}
