:root {
  --bg: #f5f2ea;
  --surface: #fcfbf7;
  --surface-soft: #efe8db;
  --text: #111111;
  --muted: #4f4b42;
  --accent: #0b63b8;
  --accent-dark: #083b68;
  --border: #d8d1c4;
  --maxw: 1120px;
  --radius: 18px;
  --space: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}
