/* ============================================
   ArtNecô — Design Tokens
   Inspired by the logo: elegant serif + colorful organic dots
   ============================================ */

:root {
  /* ── Brand Colors (from logo dots) ── */
  --color-rose: #C8506B;
  --color-rose-light: #E8849A;
  --color-blue: #7DB4D4;
  --color-blue-light: #A8D1EA;
  --color-green: #3A8B5C;
  --color-green-light: #6BBF8A;
  --color-orange: #E8944A;
  --color-orange-light: #F0B87A;
  --color-crimson: #A63D4E;
  --color-pink: #D96B8A;

  /* ── Core Palette ── */
  --color-bg: #F5F2EE;
  --color-bg-warm: #FAF7F2;
  --color-bg-cream: #FFF9F0;
  --color-bg-dark: #1A1A1E;
  --color-bg-darker: #111114;
  --color-text: #1A1A1E;
  --color-text-muted: #55505A;
  --color-text-light: #B8B4B0;
  --color-text-on-dark: #F5F2EE;
  --color-text-on-dark-muted: #D0CCC6;
  --color-border: #E0DCD6;
  --color-border-dark: #2A2A2E;

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant', 'Georgia', serif;

  /* ── Font Sizes (clamp for fluid) ── */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --text-base: clamp(0.95rem, 0.85rem + 0.5vw, 1.1rem);
  --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
  --text-xl: clamp(1.3rem, 1.1rem + 1vw, 1.8rem);
  --text-2xl: clamp(1.8rem, 1.4rem + 2vw, 2.8rem);
  --text-3xl: clamp(2.2rem, 1.6rem + 3vw, 3.8rem);
  --text-4xl: clamp(2.8rem, 2rem + 3.5vw, 5rem);
  --text-hero: clamp(3rem, 2rem + 5vw, 7rem);

  /* ── Spacing ── */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;
  --space-section: clamp(5rem, 8vw, 10rem);

  /* ── Layout ── */
  --max-width: 1200px;
  --max-width-narrow: 800px;

  /* ── Transitions ── */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.2s;
  --duration-base: 0.4s;
  --duration-slow: 0.8s;
  --duration-slower: 1.2s;

  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(26, 26, 30, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 26, 30, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 26, 30, 0.1);
  --shadow-xl: 0 16px 48px rgba(26, 26, 30, 0.12);
}