/**
 * tokens.css
 * CSS Custom Properties — design tokens (colors, typography, spacing, radius, shadows, transitions)
 */

:root {
  /* --- Colors --- */
  --color-bg-primary: #242222;
  --color-bg-dark: #2b2929;
  --color-accent-bg: #ffb375;
  --color-white: #f5f1ea;
  --color-text: #a8a19a;
  --color-heading-gold: #f7c879;
  --color-text-on-button: #211d1f;
  --color-border-secondary: #c99b5e;
  --gradient-accent-button: linear-gradient(180deg, #ffc07f 0%, #ffa66e 100%);

  --color-success: #6fbf73;
  --color-danger: #e6543f;
  --color-overlay-dark: rgba(20, 18, 18, 0.72);

  /* --- 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-base: clamp(0.875rem, 1.2vw, 1rem);
  --font-size-small: clamp(0.75rem, 1vw, 0.875rem);
  --font-size-h1: clamp(2rem, 4vw, 2.75rem);
  --font-size-h2: clamp(1.625rem, 3vw, 2rem);
  --font-size-h3: clamp(1.25rem, 2vw, 1.5rem);
  --line-height-base: 1.6;

  /* --- Spacing --- */
  --space-section: clamp(2.5rem, 5vw, 3.75rem);
  --space-card-gap: 1.25rem;
  --space-paragraph: 1.25rem;
  --space-h2-text: 1.25rem;
  --space-h3-text: 1rem;
  --space-faq-gap: 1rem;
  --space-card-padding: 1.5rem;

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

  /* --- Effects --- */
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.28);
  --shadow-header: 0 2px 12px rgba(0, 0, 0, 0.35);
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;

  /* --- Z-index --- */
  --z-header: 100;
  --z-mobile-menu: 110;
  --z-scroll-top: 90;
}
