/**
 * tokens.css — Design tokens (CSS Custom Properties)
 * Colors, typography, spacing, radius, transitions.
 * All other stylesheets must consume these variables — no magic numbers.
 */

:root {
  /* Colors */
  --color-bg-primary: #242222;
  --color-bg-dark: #2b2929;
  --color-accent-light: #ffb375;
  --color-white: #f5f1ea;
  --color-btn-gradient: linear-gradient(180deg, #ffc07f 0%, #ffa66e 100%);
  --color-btn-secondary-border: #c99b5e;
  --color-text-body: #a8a19a;
  --color-heading-gold: #f7c879;
  --color-text-on-light-btn: #211d1f;
  --color-overlay: rgba(20, 18, 18, 0.6);
  --color-danger: #e63946;
  --color-focus: #ffc07f;

  /* Typography */
  --font-family-base: 'Montserrat', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --font-size-body: clamp(0.875rem, 1.2vw, 1rem);       /* 14–16px */
  --font-size-h1: clamp(2rem, 4vw, 2.75rem);             /* 32–44px */
  --font-size-h2: clamp(1.625rem, 2.6vw, 2rem);          /* 26–32px */
  --font-size-h3: clamp(1.25rem, 1.8vw, 1.5rem);         /* 20–24px */
  --line-height-base: 1.6;

  /* Spacing */
  --space-section: clamp(2.5rem, 5vw, 3.75rem);   /* 40–60px */
  --space-card-gap: 1.25rem;                       /* 20px */
  --space-paragraph: 1.25rem;                      /* 20px */
  --space-h2-to-text: 1.25rem;                     /* 20px */
  --space-h3-to-text: 1rem;                         /* 16px */
  --space-faq-gap: 1rem;                            /* 12–16px */
  --space-card-padding: 1.5rem;                     /* 24px */

  /* Layout */
  --container-max-width: 1440px;
  --radius-card: 6px;

  /* Effects */
  --transition-base: 0.2s ease;
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.25);

  /* Z-index scale */
  --z-header: 1000;
  --z-scroll-top: 900;
  --z-overlay: 1100;
}
