:root {
  --bg: #f7f3ea;
  --bg-soft: #fffaf1;
  --ink: #1f2528;
  --muted: #6f6a61;
  --gold: #b58a42;
  --gold-dark: #8f6b2d;
  --charcoal: #111719;
  --line: rgba(31, 37, 40, 0.12);
  --radius: 22px;
  --shadow: 0 22px 70px rgba(17, 23, 25, 0.13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

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

@media (max-width: 1240px) {
  .container {
    width: min(1180px, calc(100% - 32px));
  }
}

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