/* ══════════════════════════════════════════════
   VARIABLES — Baltic Flooring
   Design tokens for the entire site
   ══════════════════════════════════════════════ */

:root {
  /* ── Colors ── */
  --color-bg-primary:  #0D1F2D;
  --color-bg-mid:      #0A1A25;
  --color-bg-deep:     #07131C;
  --color-bg-light:    #122535;
  --color-bg-card:     #0F2133;

  --color-accent:        #C8A84B;
  --color-accent-light:  #DAC06A;
  --color-accent-warm:   #D4924A;
  --color-accent-dim:    rgba(200, 168, 75, 0.15);

  --color-text-primary:  #F0EBE0;
  --color-text-muted:    #8EA8BC;
  --color-text-dark:     #0D1F2D;

  --color-border:        rgba(200, 168, 75, 0.25);
  --color-border-dim:    rgba(200, 168, 75, 0.10);
  --color-border-blue:   rgba(142, 168, 188, 0.15);

  /* ── Typography ── */
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* ── Spacing ── */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  7rem;

  /* ── Radius ── */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-pill: 999px;

  /* ── Motion ── */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast:   0.2s;
  --duration-normal: 0.4s;
  --duration-slow:   0.7s;

  /* ── Nav ── */
  --nav-height: 72px;

  /* ── Glow ── */
  --glow-accent:    0 0 24px rgba(200, 168, 75, 0.45);
  --glow-accent-sm: 0 0 14px rgba(200, 168, 75, 0.35);
  --glow-accent-lg: 0 0 40px rgba(200, 168, 75, 0.35);
  --glow-warm:      0 0 28px rgba(212, 146, 74, 0.40);

  /* ── Shadows ── */
  --shadow-card:   0 4px 32px rgba(0, 0, 0, 0.45);
  --shadow-strong: 0 8px 48px rgba(0, 0, 0, 0.70);
  --shadow-inset:  inset 0 1px 0 rgba(200, 168, 75, 0.15);
}
