:root {
  /* ---------- Colors ---------- */
  --color-bg-primary: #242222;      /* page, header, footer */
  --color-bg-dark: #2b2929;         /* dark cards, sections */
  --color-accent-light: #ffb375;    /* active buttons, badges */
  --color-white: #f5f1ea;           /* main light text on dark */
  --color-text: #a8a19a;            /* body text, menu, descriptions */
  --color-heading: #f7c879;         /* H2, decorative lines, accents */
  --color-btn-text-dark: #211d1f;   /* text inside light buttons */
  --color-btn-border: #c99b5e;      /* secondary button border */
  --color-danger: #d23b3b;          /* 18+ badge background */
  --color-line: #3a3735;            /* subtle separators */
  --color-card: #2b2929;

  --gradient-cta: linear-gradient(180deg, #ffc07f 0%, #ffa66e 100%);

  /* ---------- Typography ---------- */
  --font-base: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --fs-body: clamp(0.875rem, 1.6vw, 1rem);      /* 14–16px */
  --fs-h1: clamp(2rem, 4.5vw, 2.75rem);         /* 32–44px */
  --fs-h2: clamp(1.625rem, 3.2vw, 2rem);        /* 26–32px */
  --fs-h3: clamp(1.25rem, 2.4vw, 1.5rem);       /* 20–24px */
  --fs-small: clamp(0.8125rem, 1.4vw, 0.9375rem);
  --lh-base: 1.6;

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

  /* ---------- Spacing & grid ---------- */
  --space-section: clamp(2.5rem, 5vw, 3.75rem); /* 40–60px between sections */
  --space-card-gap: 1.25rem;                    /* 20px between cards */
  --space-paragraph: 1.25rem;                   /* 20px between paragraphs */
  --space-h2-text: 1.25rem;                     /* 20px H2 -> text */
  --space-h3-text: 1rem;                        /* 16px H3 -> text */
  --space-faq: 0.875rem;                        /* 14px between FAQ items */
  --space-card-padding: 1.5rem;                 /* 24px card padding */
  --container-max: 1440px;
  --content-max: 1080px;
  --radius: 6px;
  --radius-pill: 999px;

  /* ---------- Effects ---------- */
  --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.28);
  --shadow-header: 0 2px 14px rgba(0, 0, 0, 0.4);
  --transition: 0.25s ease;
  --header-height: 72px;
}
