:root {
  --maroon: #770000;
  --maroon-hi: #9a1b12;
  --maroon-deep: #4a0404;
  --ember: #f5361f;
  --ink: #1c0c0a;
  --bone: #f3e9e6;
  --warm-grey: #8c6b66;

  --bg: #f1e7e4;
  --surface: #fbf3f1;
  --surface-2: #f7ebe8;
  --fg: #1c0c0a;
  --muted: #8c6b66;
  --line: #e4d0cc;
  --accent: #770000;
  --on-accent: #f3e9e6;

  --font-sans: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --step--1: clamp(0.75rem, 0.72rem + 0.14vw, 0.82rem);
  --step-0: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  --step-1: clamp(1.1rem, 1rem + 0.4vw, 1.35rem);
  --step-2: clamp(1.4rem, 1.15rem + 1.1vw, 2rem);
  --step-3: clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
  --step-4: clamp(2.6rem, 1.7rem + 4.4vw, 5rem);

  --wrap: 1140px;
  --gutter: clamp(1.2rem, 4vw, 3rem);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #140706;
    --surface: #1e0b09;
    --surface-2: #26100d;
    --fg: #f1e3df;
    --muted: #a6857f;
    --line: #381815;
    --accent: #f1e3df;
    --on-accent: #1c0c0a;
  }
}

:root[data-theme="light"] {
  --bg: #f1e7e4;
  --surface: #fbf3f1;
  --surface-2: #f7ebe8;
  --fg: #1c0c0a;
  --muted: #8c6b66;
  --line: #e4d0cc;
  --accent: #770000;
  --on-accent: #f3e9e6;
}

:root[data-theme="dark"] {
  --bg: #140706;
  --surface: #1e0b09;
  --surface-2: #26100d;
  --fg: #f1e3df;
  --muted: #a6857f;
  --line: #381815;
  --accent: #f1e3df;
  --on-accent: #1c0c0a;
}
