:root {
  --bg: #f5f0e8;
  --surface: #fbf8f2;
  --surface-2: #ede4d7;
  --text: #151515;
  --muted: #5f5a52;
  --line: rgba(21, 21, 21, 0.12);
  --dark: #0f1110;
  --dark-soft: #1a1d1b;
  --light: #f8f3ea;
  --accent: #1f4d3c;
  --max: 1200px;
  --radius: 20px;
  --shadow: 0 10px 30px rgba(10, 10, 10, 0.05);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.brand-logo img {
  height: 34px;
  width: auto;
}

.narrow {
}