:root {
  color-scheme: light;
  --bg: #f4efe7;
  --surface: rgba(255, 250, 242, 0.82);
  --surface-strong: #fffaf2;
  --text: #20160f;
  --muted: #6f5a4d;
  --accent: #9b4d2f;
  --accent-dark: #6e2d16;
  --border: rgba(53, 28, 18, 0.14);
  --shadow: 0 24px 60px rgba(79, 43, 24, 0.12);
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255, 221, 168, 0.45), transparent 36%),
    linear-gradient(180deg, #f3ebdf 0%, #e6d8c6 100%);
  color: var(--text);
}

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

p,
h1,
h2 {
  margin-top: 0;
}
