/*
 * Brand overlay — generated for this site.
 *
 * The brutalist aesthetic is reinforced with high-contrast diagonal lines and a raw, blood-orange accent to evoke the grit and intensity of a professional combat gym.
 *
 * Loaded AFTER the palette stylesheet so these declarations win.
 * Edit freely; the palette underneath stays intact.
 */

:root {
  --color-accent: oklch(70% 0.22 28);
  --duration-fast: calc(var(--duration-fast) * 0.75);
  --duration-normal: calc(var(--duration-normal) * 0.75);
  --duration-slow: calc(var(--duration-slow) * 0.75);
}

body {
    background-image: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      color-mix(in oklab, var(--color-foreground) 22%, transparent) 12px,
      color-mix(in oklab, var(--color-foreground) 22%, transparent) 13px
    );
    background-attachment: fixed;
  }
