/* ============================================
   WISE INVEST GAYRIMENKUL — Design Tokens
   Based on logo analysis: burgundy/red gradient bars
   ============================================ */

:root {
  /* === COLORS === */

  /* Primary — Deep Burgundy/Terracotta (from logo bars) */
  --color-primary: #A52A2A;
  --color-primary-dark: #8B1A1A;
  --color-primary-light: #C44536;
  --color-primary-gradient: linear-gradient(135deg, #C44536 0%, #A52A2A 50%, #8B1A1A 100%);

  /* Neutrals — WCAG AA Compliant */
  --color-bg: #FAFAF7;
  --color-surface: #FFFFFF;
  --color-surface-elevated: #FFFFFF;
  --color-ink: #0E0E0C;
  --color-ink-soft: #3D3D3A;          /* Darkened: 8.9:1 on bg (was #4A4A47) */
  --color-ink-muted: #595955;          /* Darkened: 5.8:1 on bg (was #6B6B67) */
  --color-line: #E8E6E0;
  --color-line-soft: #F0EDE6;

  /* Accent */
  --color-accent: #A52A2A;
  --color-accent-soft: rgba(165, 42, 42, 0.1);
  --color-accent-hover: #8B1A1A;

  /* Functional */
  --color-success: #4F7A4D;
  --color-error: #A64C3C;
  --color-warning: #D4A84B;

  /* === TYPOGRAPHY === */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Type Scale (1.25 ratio) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-xl: 1.563rem;
  --text-2xl: 1.953rem;
  --text-3xl: 2.441rem;
  --text-4xl: 3.052rem;
  --text-5xl: 4.768rem;

  /* Line Heights */
  --leading-tight: 1.1;
  --leading-snug: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* === SPACING (8px base) === */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 2.5rem;
  --space-6: 3rem;
  --space-8: 4rem;
  --space-10: 5rem;
  --space-12: 6rem;
  --space-16: 8rem;
  --space-20: 10rem;

  /* === BORDERS & RADIUS === */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;

  /* === SHADOWS === */
  --shadow-xs: 0 1px 2px rgba(14, 14, 12, 0.03);
  --shadow-sm: 0 2px 4px rgba(14, 14, 12, 0.04);
  --shadow-md: 0 8px 24px rgba(14, 14, 12, 0.06);
  --shadow-lg: 0 20px 40px rgba(14, 14, 12, 0.08);
  --shadow-xl: 0 32px 64px rgba(14, 14, 12, 0.12);
  --shadow-glow: 0 0 40px rgba(165, 42, 42, 0.15);

  /* === TRANSITIONS === */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;

  /* === LAYOUT === */
  --container-max: 1280px;
  --container-padding: clamp(1rem, 4vw, 3rem);
  --header-height: 80px;
  --section-padding: clamp(4rem, 10vw, 8rem);
}

