:root {
  --bg: #f4eee3;
  --text: #1f2430;
  --accent: #b89a5a;
  --accent-dark: #8b743f;
  --font-serif: "Georgia", "Times New Roman", serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "ImperialScript-Regular";
  src: url("../fonts/ImperialScript-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

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

html, body { max-width: 100%; overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg);
}

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

h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
  color: var(--accent-dark);
}

ul { list-style: none; margin-top: 0.5rem; font-size: 0.9rem; }
ul li { margin-bottom: 0.3rem; }

.accent { color: var(--accent-dark); font-weight: 500; }
