:root {
  --bg: #050505;
  --surface: #0b0b0b;
  --text: #f4f1ec;
  --muted: rgba(244, 241, 236, 0.68);
  --accent: #9a7558;
  --border: rgba(244, 241, 236, 0.12);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  --max-width: 1180px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--max-width));
  }
}