:root {
  --accent: #ef2f28;
  --accent-strong: #d91f1a;
  --accent-soft: #fff0e7;
  --background: #fff8f3;
  --border: #efd4c5;
  --border-strong: #e6bda8;
  --brand-coral: #ff6046;
  --brand-orange: #ff9a38;
  --brand-red: #ef2f28;
  --brand-yellow: #ffd15a;
  --danger: #aa3928;
  --danger-bg: #fff0ea;
  --ink: #0d0d0b;
  --muted: #74675e;
  --nav: #151210;
  --nav-muted: #9a8b82;
  --success: #168a42;
  --success-bg: #edf8f0;
  --surface: #fffefc;
  --surface-soft: #fff3eb;
  --surface-warm: #ffe7d8;
  --shadow-soft: 0 28px 70px -44px rgba(109, 48, 21, 0.42);
  --font-ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "SF Mono", "JetBrains Mono", "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: var(--font-ui);
  letter-spacing: 0;
  min-height: 100vh;
  overflow-y: auto;
}

a {
  color: inherit;
}
