/* === Font Faces === */
@font-face {
  font-family: 'Liberation Serif';
  src: url('../fonts/LiberationSerif-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Liberation Serif';
  src: url('../fonts/LiberationSerif-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Liberation Serif';
  src: url('../fonts/LiberationSerif-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Liberation Serif', Georgia, 'Times New Roman', serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* === Hero Split === */
.hero {
  display: flex;
  min-height: 100vh;
}

.hero-cover {
  flex: 1;
  background: #d4956b;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.cover-img {
  max-height: 70vh;
  width: auto;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 60px;
  background: #fff;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #333;
}

.author {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 30px;
}

.blurb {
  font-size: 1.1rem;
  font-style: italic;
  color: #555;
  margin-bottom: 40px;
  max-width: 400px;
  line-height: 1.7;
}

.buy-btn {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-family: 'Liberation Serif', Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: background 0.2s;
  align-self: flex-start;
}

.buy-btn:hover {
  background: #555;
}

/* === Divider === */
.divider {
  border: none;
  border-top: 1px solid #333;
  width: 80%;
  margin: 0 auto;
}

/* === Bio Strip === */
.bio {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.bio-photo {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.bio-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

/* === Email CTA === */
.email-cta {
  text-align: center;
  padding: 0 24px 40px;
  max-width: 900px;
  margin: -20px auto 0;
}

.email-btn {
  display: inline-block;
  background: #333;
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-family: 'Liberation Serif', Georgia, serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.email-btn:hover {
  background: #555;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 30px;
  color: #999;
  font-size: 0.85rem;
  border-top: 1px solid #eee;
}

/* === Responsive: Mobile === */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-cover {
    padding: 40px 20px;
  }

  .cover-img {
    max-height: 50vh;
  }

  .hero-text {
    padding: 40px 24px;
  }

  .title {
    font-size: 1.8rem;
  }

  .bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    gap: 24px;
  }

  .bio-photo {
    width: 140px;
    height: 170px;
  }
}
