:root {
  --bg: #f6f3ed;
  --surface: #ffffff;
  --surface-muted: #edf3f2;
  --text: #122235;
  --muted: #596879;
  --line: #d5dde4;
  --brand: #173a5a;
  --brand-strong: #102941;
  --teal: #1e6b68;
  --accent: #bf8a2c;
  --accent-warm: #d86d45;
  --shadow: 0 24px 70px rgba(16, 41, 65, 0.12);
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(23, 58, 90, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(23, 58, 90, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, #f7f3eb 0%, #eef4f3 55%, #eef2f6 100%);
  background-size: 28px 28px, 28px 28px, 100% 100%;
}

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

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

button,
a {
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}
