* {
  box-sizing: border-box;
}
 
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: #262220;
  background-color: #faf8f5;
  line-height: 1.6;
}
 
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
 
/* Header */
.site-header {
  background-color: #1c1a2e;
  padding: 18px 0;
}
 
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
 
.site-title {
  color: #f2ead9;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1px;
}
 
.site-nav a {
  color: #cfc8e0;
  text-decoration: none;
  margin-left: 20px;
  font-size: 15px;
}
 
.site-nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
 
/* Hero */
.hero {
  background-color: #2c2850;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}
 
.hero h1 {
  font-size: 42px;
  margin: 0 0 10px 0;
}
 
.hero-tagline {
  font-size: 18px;
  color: #cfc8e0;
  margin: 0;
}
 
/* Sections */
.section {
  padding: 60px 0;
  border-bottom: 1px solid #e6dfd3;
}
 
.section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #1c1a2e;
}
 
.about-section p {
  font-size: 17px;
  max-width: 700px;
}
 
/* Books */
.series-block {
  margin-bottom: 30px;
}
 
.series-block h3 {
  font-size: 20px;
  color: #4a3f78;
  margin-bottom: 8px;
}
 
.book-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
 
.book-list li {
  padding: 4px 0;
  font-size: 16px;
}
 
/* Newsletter */
.newsletter-section {
  background-color: #f2ead9;
}
 
.mailerlite-placeholder {
  border: 2px dashed #b7ac8f;
  padding: 30px;
  text-align: center;
  border-radius: 6px;
  margin-top: 20px;
  color: #6b6152;
}
 
/* Projects */
.project-block {
  margin-bottom: 26px;
}
 
.project-block h3 {
  font-size: 20px;
  color: #4a3f78;
  margin-bottom: 6px;
}
 
/* Footer */
.site-footer {
  background-color: #1c1a2e;
  color: #cfc8e0;
  padding: 30px 0;
  text-align: center;
  font-size: 14px;
}
 
.site-footer a {
  color: #cfc8e0;
}
 
/* Responsive */
@media (max-width: 600px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav a {
    margin-left: 0;
    margin-right: 16px;
  }
  .hero h1 {
    font-size: 32px;
  }
}
 
