@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");

:root {
  color-scheme: light;

  --kg-font-sans: "Lato", "Inter", "Helvetica Neue", Arial, sans-serif;
  --kg-font-regular: 400;
  --kg-font-bold: 700;
  --kg-font-black: 900;

  --kg-color-ink: #171717;
  --kg-color-deep: #0b0c0d;
  --kg-color-paper: #f2f0eb;
  --kg-color-card: #fbfaf7;
  --kg-color-white: #ffffff;
  --kg-color-line: #d7d3ca;
  --kg-color-muted: #706d67;
  --kg-color-red: #d33a2f;
  --kg-color-red-hover: #ba3027;
  --kg-color-red-soft: #f5ded9;
  --kg-color-green: #1f7555;
  --kg-color-green-soft: #dfeee7;
  --kg-color-gold: #a88442;
  --kg-color-gold-soft: #eee5d2;
  --kg-color-blue: #366d8a;
  --kg-color-input-border: #d1cdc4;
  --kg-color-header-border: #353638;
  --kg-color-quiet: #ece9e2;

  --kg-text-xs: 0.6875rem;
  --kg-text-sm: 0.75rem;
  --kg-text-md: 0.875rem;
  --kg-text-base: 1rem;
  --kg-text-lg: 1.25rem;
  --kg-text-xl: 1.5rem;
  --kg-text-2xl: 2rem;
  --kg-text-3xl: 2.5rem;

  --kg-leading-tight: 1.15;
  --kg-leading-heading: 1.25;
  --kg-leading-body: 1.5;
  --kg-leading-relaxed: 1.65;

  --kg-space-1: 4px;
  --kg-space-2: 8px;
  --kg-space-3: 12px;
  --kg-space-4: 16px;
  --kg-space-5: 20px;
  --kg-space-6: 24px;
  --kg-space-8: 32px;
  --kg-space-10: 40px;
  --kg-space-12: 48px;
  --kg-space-14: 56px;
  --kg-space-16: 64px;

  --kg-radius-sm: 4px;
  --kg-radius-md: 8px;
  --kg-radius-lg: 10px;
  --kg-radius-panel: 16px;
  --kg-radius-pill: 999px;

  --kg-control-sm: 34px;
  --kg-control-md: 44px;
  --kg-control-nav: 38px;

  --kg-header-height: 82px;
  --kg-content-max: 1492px;
  --kg-page-gutter: clamp(20px, 3.375vw, 54px);
  --kg-column-gap: 22px;
  --kg-search-sidebar: 455px;
  --kg-filter-rail: 286px;

  --kg-shadow-panel: 0 12px 32px rgb(37 30 22 / 10%);
  --kg-transition: 180ms cubic-bezier(0.2, 0, 0, 1);
}

html {
  font-family: var(--kg-font-sans);
  color: var(--kg-color-ink);
  background: var(--kg-color-paper);
}

body,
button,
input,
select,
textarea {
  font-family: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--kg-color-red) 65%, white);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
