/* ============================================
   DESIGN TOKENS — CoreDrill SA
   Mining Drilling Contractor
   Dark gunmetal/charcoal + Rust-orange accents
   ============================================ */

:root {
  /* ── Brand Colors ── */
  --color-primary: #2a2d32;           /* Gunmetal — nav glass, card bg */
  --color-primary-hover: #1e2024;
  --color-secondary: #c8602a;         /* Rust-orange — links, hover, active */
  --color-accent: #c8602a;
  --color-accent-hover: #a84e20;
  --color-highlight: #d4702e;         /* Warm orange — CTAs, badges, prices */
  --color-highlight-hover: #b85d24;

  /* ── Backgrounds ── */
  --bg-main: #111214;                 /* Deep charcoal */
  --bg-elevated: #1a1c1f;             /* Card/panel surfaces */
  --bg-elevated-hover: #222528;

  /* ── Text ── */
  --text-primary: #f0ede8;            /* Warm white */
  --text-secondary: #8a8d93;          /* Muted steel */
  --text-dark: #111214;

  /* ── Borders & Glass ── */
  --border-color: rgba(200, 96, 42, 0.12);
  --glass-bg: rgba(17, 18, 20, 0.90);
  --glass-border: rgba(200, 96, 42, 0.08);

  /* ── Typography ── */
  --font-heading: "Outfit", sans-serif;
  --font-body: "Inter", sans-serif;

  /* ── Layout ── */
  --max-width: 1400px;
  --header-height: 72px;
  --section-pad: 100px 5%;

  /* ── Border Radius ── */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* ── Transitions ── */
  --ease-fast: 0.2s ease;
  --ease-normal: 0.3s ease;
  --ease-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
