:root {
  --bg: #f2e8c9;
  --bg-2: #faf5e6;
  --text: #3b2a20; /* тёмно‑коричневый текст */
  --muted: #7a6a5d;

  --accent: #b77a4a;   /* кофейно‑карамельный */
  --accent-2: #8a5a3b; /* более глубокий коричневый */
  --line: rgba(58, 44, 34, 0.15);
  --shadow: 0 18px 45px rgba(40, 30, 22, 0.12);

  --gold: rgba(181, 140, 93, 0.9);
  --silver: rgba(151, 166, 163, 0.9);

  --radius: 18px;
  --radius-sm: 14px;

  --container: 1060px;
  --pad: 20px;

  --font-body: "Bell MT", "Bell", Georgia, "Times New Roman", serif;
  --font-weight: 400;

  --ease: cubic-bezier(0.2, 0.9, 0.2, 1);
}

@media (min-width: 768px) {
  :root {
    --pad: 28px;
  }
}

@media (min-width: 1024px) {
  :root {
    --pad: 32px;
  }
}

