/*
 * Design Tokens — mha-modern
 * Unprefixed custom-property names to match the briefing + homepage_mockup.html.
 */

:root {
  /* === DARK PALETTE === */
  --navy: #0A1A2E;
  --navy-2: #0F2340;
  --navy-3: #152C4A;
  --footer-mid: #0D1F38;
  --footer-dark: #060F1C;

  /* === WARM ACCENTS === */
  --orange: #E66830;
  --orange-dark: #C04F1F;
  --orange-light: #F8835A;
  --gold: #D4A017;
  --gold-light: #E9BC3C;
  --cream: #F5EFE6;
  --cream-2: #FAF5EC;

  /* === LIGHT PALETTE === */
  --bg: #FFFFFF;
  --bg-2: #F8F4ED;
  --bg-3: #F1ECE2;
  --green: #2A7A4B;
  --red: #C03A2A;

  /* === BORDERS & TEXT === */
  --border: #E3DDD0;
  --text: #0A1A2E;
  --muted: #5A6B82;
  --light: #8B98AD;

  /* Accessible on-dark text (briefing: 0.4 fails AA — use 0.6+ for body) */
  --on-dark: rgba(255, 255, 255, 0.92);
  --on-dark-muted: rgba(255, 255, 255, 0.72);
  --on-dark-faint: rgba(255, 255, 255, 0.55);

  /* === TYPOGRAPHY === */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-black: 900;

  /* === SPACING === */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-26: 104px;

  /* Section rhythm — mobile-first defaults, scaled up at breakpoints */
  --container-px: 20px;
  --section-py: 56px;
  --container-max: 1240px;

  /* === RADII === */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-2xl: 22px;
  --radius-pill: 100px;

  /* === SHADOWS === */
  --shadow-cta: 0 6px 20px rgba(230, 104, 48, 0.4);
  --shadow-cta-gold: 0 8px 28px rgba(212, 160, 23, 0.3);
  --shadow-card: 0 4px 24px rgba(10, 26, 46, 0.06);
  --shadow-card-lg: 0 16px 60px rgba(10, 26, 46, 0.1);
  --shadow-nav: 0 2px 20px rgba(13, 31, 56, 0.06);

  /* === TRANSITIONS === */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* === TYPE SCALE (mobile-first; scaled back toward mockup on desktop in responsive.css) ===
     Mobile values run larger for readability on phones (audience skews 50+; briefing
     asks for 16px minimum body copy on mobile). responsive.css restores the mockup's
     tighter desktop proportions at >=768px. */
  --text-xs: 11px;
  --text-sm: 13px;
  --text-base: 16px;
  --text-md: 16px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: 18px;
  --text-3xl: 20px;
  --text-display-sm: 22px;
  --text-display-md: 26px;
  --text-display-lg: 28px;
  --text-display-xl: 36px;

  /* z-index scale */
  --z-nav: 100;
  --z-drawer: 200;
  --z-mobilebar: 90;
}
