/* ============================================================
   Design tokens — CSS Custom Properties
   ============================================================ */
:root {
  /* Colors */
  --color-bg-primary: #242222;
  --color-bg-dark: #2b2929;
  --color-accent-bg: #ffb375;
  --color-white: #f5f1ea;
  --color-text: #a8a19a;
  --color-heading: #f7c879;
  --color-btn-text: #211d1f;
  --color-border: #c99b5e;
  --color-danger: #d64545;

  /* Gradients */
  --btn-primary-grad: linear-gradient(180deg, #ffc07f 0%, #ffa66e 100%);

  /* Typography */
  --font-base: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --fs-body: clamp(0.875rem, 1.4vw, 1rem);          /* 14–16px */
  --fs-h1: clamp(2rem, 4.5vw, 2.75rem);              /* 32–44px */
  --fs-h2: clamp(1.625rem, 3vw, 2rem);               /* 26–32px */
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);              /* 20–24px */
  --lh-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-text: 1.25rem;                           /* 20px */
  --space-h3-text: 1rem;                              /* 16px */
  --space-faq: 0.875rem;                              /* 14px */
  --space-card-pad: 1.5rem;                           /* 24px */

  /* Layout */
  --container-max: 1440px;
  --container-pad: clamp(1rem, 4vw, 2rem);
  --radius-card: 6px;
  --radius-pill: 999px;

  /* Effects */
  --shadow-card: 0 4px 18px rgba(0, 0, 0, 0.35);
  --shadow-header: 0 2px 14px rgba(0, 0, 0, 0.4);
  --transition-base: 0.25s ease;

  /* Header */
  --header-height: 72px;
}
