/* MODS GROUP — Flagship Landing Page
   Locked design tokens. Palette anchor: MODS GROUP's own "Crimson Authority"
   identity (Brand/02-marketing-kit/brand-guidelines.md) — the one place this
   IS the correct anchor, since this page represents the company itself,
   not a single client or product. Every color/font/space value used in
   styles.css must be one of these custom properties — no inline hex, ever. */

:root {
  /* ---- Color: Crimson Authority ---- */
  --color-crimson: #8B0000;        /* primary brand color — CTAs, headings, emphasis */
  --color-crimson-dark: #6E0000;   /* pressed/hover state for crimson elements */
  --color-anthracite: #2D2D2D;     /* body text, dark backgrounds */
  --color-anthracite-soft: #4A4A4A;/* secondary text on light backgrounds */
  --color-white: #FFFFFF;          /* backgrounds, reverse text */
  --color-paper: #FAFAFA;          /* light section background, alternates with white */
  --color-line: #E4E1DC;           /* hairline borders/dividers on light backgrounds */
  --color-line-dark: rgba(255, 255, 255, 0.16); /* hairline borders on dark backgrounds */
  --color-white-70: rgba(255, 255, 255, 0.72);  /* secondary text on dark backgrounds */
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-tag-bg: #F5F0EA;         /* status-tag background, warm off-white (not gold — fails AA per brand guide) */
  --color-nav-bg: rgba(255, 255, 255, 0.92); /* sticky nav backdrop — translucent white over blur */

  /* ---- Typography ---- */
  --font-display: "Montserrat", "Arial Black", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, serif; /* italic body-copy accent ONLY, never headings/nav */

  /* ---- Spacing scale ---- */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* ---- Shape ---- */
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --max-width: 74rem;
  --max-width-narrow: 46rem;

  /* ---- Motion ---- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 120ms;
  --duration-base: 200ms;

  /* ---- Elevation ---- */
  --shadow-card: 0 1px 2px rgba(45, 45, 45, 0.06), 0 4px 16px rgba(45, 45, 45, 0.06);
  --shadow-card-hover: 0 2px 4px rgba(45, 45, 45, 0.08), 0 12px 28px rgba(45, 45, 45, 0.10);
}
