:root {
  color-scheme: light;
  --bg: #fdf7f1;
  --ink: #2c2620;
  --muted: #6b6258;
  --accent: #9a4f2c;
  --rule: #e7ddd1;
  --max-width: 46rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
}

body {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1.5rem 5rem;
}

h1,
h2,
h3,
h4 {
  font-family: "DM Serif Text", Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

h2 {
  font-size: 1.9rem;
  margin: 2.75rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--rule);
}

h3 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.6rem;
}

.contact {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0.5rem 0 1.25rem;
  padding-left: 1.3rem;
}

li {
  margin-bottom: 0.6rem;
}

ul ul {
  margin: 0.5rem 0 0.5rem;
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(154, 79, 44, 0.3);
  transition: border-color 0.15s ease;
}

a:hover {
  border-bottom-color: var(--accent);
}

strong {
  font-weight: 600;
  color: var(--ink);
}
