/* ============================================================
   ksense — Design Tokens
   Direkt aus Wix-Original übernommen:
   - Schriften: Futura-Geist (Outfit) + clean Sans (Inter)
   - Farben: Gold #f1d14d + Dark Brown #4f4005 auf Warm-Cream
   - Sehr viel Whitespace, schlichte Akzente, zentrierte Layouts
   ============================================================ */

:root {
  /* Color */
  --color-bg: #F5F2EC;          /* warmer als Wix #E8E6E6, edler */
  --color-bg-deep: #ECE6DA;
  --color-bg-cream: #FAF7F1;
  --color-surface: #FFFFFF;
  --color-fg: #2C2A26;
  --color-fg-muted: #6B655B;
  --color-fg-soft: #97928A;
  --color-brand-gold: #F1D14D;
  --color-brand-gold-soft: #F9E9A8;
  --color-brand-gold-deep: #C9A833;
  --color-brand-dark: #4F4005;
  --color-brand-dark-soft: #6E5A1A;
  --color-line: rgba(44, 42, 38, 0.14);
  --color-line-soft: rgba(44, 42, 38, 0.07);
  --color-line-gold: rgba(241, 209, 77, 0.6);

  /* Typography
     Original: Futura (heading), Brandon Grotesque (body)
     Substitute mit ähnlichem Geist via Google Fonts:
     Outfit = geometric Sans wie Futura
     Inter = clean Sans wie Brandon Grotesque
     Cormorant Garamond nur für seltene editorial accents (italic Statements) */
  --font-sans: 'Outfit', 'Inter', system-ui, -apple-system, 'Helvetica Neue', sans-serif;
  --font-display: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-italic: 'Cormorant Garamond', 'Lora', Georgia, serif;

  --text-xs: clamp(0.7rem, 0.68rem + 0.1vw, 0.78rem);
  --text-sm: clamp(0.82rem, 0.78rem + 0.18vw, 0.92rem);
  --text-base: clamp(0.95rem, 0.92rem + 0.2vw, 1.0625rem);
  --text-md: clamp(1rem, 0.96rem + 0.3vw, 1.18rem);
  --text-lg: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem);
  --text-xl: clamp(1.4rem, 1.2rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.6rem + 2vw, 3.25rem);
  --text-3xl: clamp(2.4rem, 1.8rem + 3vw, 4.4rem);
  --text-display: clamp(3rem, 2rem + 5vw, 7rem);
  --text-mega: clamp(3.4rem, 1.5rem + 9vw, 9.5rem);

  --leading-tight: 1.06;
  --leading-snug: 1.2;
  --leading-base: 1.55;
  --leading-loose: 1.8;
  --leading-mega: 0.95;

  --tracking-tighter: -0.025em;
  --tracking-tight: -0.012em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-mega: 0.22em;
  --tracking-display: 0.01em;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;
  --space-section: clamp(5rem, 3rem + 8vw, 12rem);
  --space-section-sm: clamp(3rem, 2rem + 4vw, 6rem);

  /* Layout */
  --container-max: 1320px;
  --container-narrow: 760px;
  --container-pad: clamp(1.25rem, 1rem + 2vw, 3rem);
  --container-gutter: clamp(2rem, 1rem + 4vw, 6rem);

  /* Motion */
  --duration-fast: 220ms;
  --duration-base: 450ms;
  --duration-slow: 800ms;
  --duration-reveal: 1100ms;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Elevation */
  --shadow-soft: 0 1px 2px rgba(44, 42, 38, 0.04), 0 12px 32px rgba(44, 42, 38, 0.06);
  --shadow-card: 0 1px 2px rgba(44, 42, 38, 0.04), 0 30px 80px rgba(44, 42, 38, 0.10);
  --shadow-lift: 0 30px 100px rgba(44, 42, 38, 0.18);

  --radius-none: 0;
  --radius-sm: 2px;

  --z-base: 1;
  --z-sticky: 50;
  --z-nav: 100;
  --z-modal: 1000;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-base: 0ms;
    --duration-slow: 0ms;
    --duration-reveal: 0ms;
  }
}
