:root {
  --bg: #f3efe6;
  --text: #2a352f;
  --muted: #6b776f;
  --accent: #3a6f54;
  --card: rgba(255, 255, 255, 0.85);
  --border: rgba(42, 53, 47, 0.12);
  --shadow: 
    0 10px 24px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.04);
  --radius: 18px;
  --container: 1100px;
}


* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

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

a:hover {
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}