:root {
  --bg: #111314;
  --bg-soft: #1a1614;
  --surface: #1f1a17;
  --surface-2: #26201c;
  --text: #ece8e3;
  --text-muted: #b9b1a8;
  --accent: #b88a5a;
  --accent-soft: #8a6642;
  --border: rgba(236, 232, 227, 0.12);
  --shadow-deep: 0 20px 40px rgba(0, 0, 0, 0.45);
  --radius-lg: 18px;
  --radius-md: 12px;
  --container: 1080px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 0%, #231d18, var(--bg) 38%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

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

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

ul {
  padding-left: 1rem;
}
