@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500&family=DM+Sans:wght@400;600&display=swap');

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

body {
  font-family: Georgia, serif;
  background-color: #F5E9D6;
  color: #1C2640;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Navigation */
nav {
  background-color: #1C2640;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

nav .site-title {
  font-family: 'EB Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #F5E9D6;
  text-decoration: none;
  margin-right: auto;
  letter-spacing: 0.02em;
}

nav a {
  font-family: 'EB Garamond', serif;
  color: #c9b8a8;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

nav a:hover {
  color: #F5E9D6;
}

/* Main content */
main {
  max-width: 780px;
  margin: 4rem auto;
  padding: 0 2rem;
}

/* Headings */
h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.4rem;
  font-weight: 250;
  color: #9E6455;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

h2 {
  font-family: 'EB Garamond', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #1C2640;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

h3 {
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #1C2640;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

/* Paragraphs */
p {
  margin-bottom: 1.25rem;
  color: #2e3d30;
}

/* Lists */
ul {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 2;
}

ul li {
  margin-bottom: 0.4rem;
  color: #2e3d30;
}

ul li strong {
  color: #1C2640;
}

/* Horizontal rule */
hr {
  border: none;
  border-top: 1px solid #d4c4b0;
  margin: 2.5rem 0;
}

/* Button */
.button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  background-color: #1C2640;
  color: #F5E9D6;
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 3px;
  transition: background-color 0.2s;
}

.button:hover {
  background-color: #9E6455;
}

/* Footer */
footer {
  text-align: center;
  padding: 2.5rem;
  margin-top: 4rem;
  border-top: 1px solid #d4c4b0;
  font-family: 'EB Garamond', serif;
  font-size: 0.9rem;
  color: #7A6E62;
  letter-spacing: 0.02em;
}
