/* ============================================
   ÁMBAR KEBAB — Design Tokens
   ============================================ */

:root {
  /* ── Brand Colors ── */
  --color-bg-primary: #0D0D0D;
  --color-bg-secondary: #1A1A1A;
  --color-bg-card: #242424;
  --color-bg-card-hover: #2E2E2E;

  --color-accent: #D4A843;
  --color-accent-hover: #E8C060;
  --color-accent-subtle: rgba(212, 168, 67, 0.12);
  --color-accent-glow: rgba(212, 168, 67, 0.25);

  --color-text-primary: #F5F0E8;
  --color-text-secondary: #A89F91;
  --color-text-muted: #6B6560;

  --color-border: rgba(212, 168, 67, 0.18);
  --color-border-subtle: rgba(255, 255, 255, 0.06);

  --color-overlay: rgba(0, 0, 0, 0.6);
  --color-overlay-heavy: rgba(0, 0, 0, 0.75);

  --color-white: #ffffff;
  --color-black: #000000;

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

  --fs-hero: clamp(2.25rem, 5vw, 4rem);
  --fs-h2: clamp(1.75rem, 4vw, 2.625rem);
  --fs-h3: clamp(1.375rem, 3vw, 1.75rem);
  --fs-body: clamp(1rem, 1.5vw, 1.125rem);
  --fs-body-lg: clamp(1.0625rem, 1.6vw, 1.25rem);
  --fs-small: clamp(0.8125rem, 1.2vw, 0.875rem);
  --fs-xs: 0.75rem;

  --lh-heading: 1.2;
  --lh-body: 1.7;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* ── Spacing ── */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* ── Layout ── */
  --max-width: 1280px;
  --max-width-narrow: 800px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* ── Borders & Radius ── */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(212, 168, 67, 0.15);

  /* ── Transitions ── */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ── Z-Index ── */
  --z-base: 1;
  --z-header: 100;
  --z-overlay: 200;
  --z-modal: 300;
}
