:root {
  /* Background — warm off-white */
  --bg: #fdf8f5;
  --bg-surface: #ffffff;
  --bg-tint: #fbeeea;

  /* Text — warm brown-black */
  --text-primary: #2b2420;
  --text-secondary: #6b5f58;
  --text-muted: #9a8f88;

  /* Accents */
  --accent: #e2665c;        /* coral */
  --accent-dark: #c94f45;
  --accent-soft: #fbe4e0;
  --accent-2: #2a9d8f;      /* teal */
  --accent-2-soft: #dff3f0;

  /* Borders / shadows */
  --border: #eee2dc;
  --shadow-sm: 0 1px 2px rgba(43, 36, 32, 0.06), 0 2px 8px rgba(43, 36, 32, 0.04);
  --shadow-md: 0 8px 24px rgba(43, 36, 32, 0.08);
  --shadow-lg: 0 16px 48px rgba(43, 36, 32, 0.12);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --max-width: 1100px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;

  --nav-height: 64px;

  --fs-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --fs-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --fs-md: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  --fs-lg: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  --fs-xl: clamp(2rem, 1.5rem + 2.5vw, 3.2rem);
  --fs-hero: clamp(2.6rem, 1.8rem + 4vw, 4.6rem);
}
