/* Base */
:root {
  --bg: #f5f0e6;
  --surface: #fffdf8;
  --surface-alt: #efe6d1;
  --text: #2d2418;
  --muted: #6f6250;
  --accent: #3c6e71;
  --accent-dark: #284b63;
  --cta: #c97a1c;
  --border: #dccfb8;
  --shadow: 0 12px 30px rgba(40, 75, 99, 0.08);
  --radius: 18px;
  --max: 1140px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.visually-hidden { position: absolute; left: -9999px; }
.small { font-size: .95rem; color: var(--muted); }
.muted { color: var(--muted); }
.center { text-align: center; }
