/*
 * Design tokens — Betabat
 * Palette derived from the Betabat logo (red β + black text).
 * Update these values in scripts/derive_palette.py if/when a higher-res logo is supplied.
 */

:root {
  /* Brand palette — Betabat red */
  --color-primary:        #C8232C;   /* Betabat red (logo) */
  --color-primary-dark:   #9E1A22;   /* deeper red for hovers */
  --color-primary-light:  #E04149;
  --color-accent:         #1A1A1A;   /* black, secondary brand color from logo text */
  --color-accent-dark:    #000000;

  /* Neutrals */
  --color-text:           #1A1A1A;
  --color-text-muted:     #666666;
  --color-bg:             #FFFFFF;
  --color-bg-alt:         #F4F4F4;
  --color-bg-dark:        #1A1A1A;
  --color-border:         #E1E1E1;
  --color-divider:        #C5C5C5;

  /* Typography — Barlow Condensed (industrial, strong, perfect for construction)
     pairs with Inter for body. Both already enqueued in functions.php */
  --font-display: 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-h1: clamp(2.5rem, 4.5vw, 4.25rem);
  --fs-h2: clamp(2rem, 3.5vw, 3rem);
  --fs-h3: clamp(1.5rem, 2.5vw, 2rem);
  --fs-h4: 1.25rem;
  --fs-body: 1.0625rem;
  --fs-small: 0.875rem;
  --lh-tight: 1.1;
  --lh-snug:  1.3;
  --lh-body:  1.65;

  /* Spacing (8px base) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4rem;
  --space-7: 6rem;
  --space-8: 8rem;

  /* Radii / shadows */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.08);
  --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 26, 26, 0.18);

  /* Layout */
  --container-max: 1280px;
  --container-pad: clamp(1rem, 4vw, 3rem);

  /* Motion */
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
  --dur-fast: 150ms;
  --dur:       250ms;
  --dur-slow: 450ms;
}
