* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #272521;
  background: #f8f5ef;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px 14px;
  background: #fffaf2;
  border-top: 1px solid #e7dfd3;
  border-bottom: 1px solid #d5ccbf;
}

.brand {
  color: #2a2a27;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-decoration: none;
}

.site-nav {
  display: flex;
  gap: 22px;
  padding-bottom: 3px;
  color: #6d6256;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: #272521;
}

.hero {
  max-width: 820px;
  min-height: calc(100vh - 58px);
  margin: 0 auto;
  padding: 72px 24px 104px;
  text-align: center;
}

.portrait {
  display: block;
  width: 250px;
  height: auto;
  margin: 0 auto 38px;
  border: 1px solid #d5ccbf;
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(56, 45, 31, 0.13);
}

.statement {
  max-width: 710px;
  margin: 0 auto;
  color: #2d302d;
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 25px;
  line-height: 1.48;
}

.placeholder-note {
  max-width: 540px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid #d8cfc1;
  color: #756b61;
  font-size: 15px;
  line-height: 1.65;
}

.section-link {
  display: inline-block;
  margin-top: 34px;
  padding: 9px 0 5px;
  border-bottom: 1px solid currentColor;
  color: #7d4f45;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.books-section {
  padding: 64px 24px 76px;
  background: #fffaf2;
  border-top: 1px solid #dfd5c7;
}

.books-inner {
  max-width: 980px;
  margin: 0 auto;
}

.books-section h2 {
  margin: 0 0 28px;
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 38px;
  font-weight: 400;
}

.book-list {
  display: grid;
  gap: 14px;
}

.book-entry {
  padding: 20px 22px;
  border-left: 4px solid #84653d;
  background: #ffffff;
}

.book-entry h3 {
  margin: 0;
  color: #272521;
  font-family: "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
}

.book-entry p {
  margin: 8px 0 0;
  color: #756b61;
  font-size: 14px;
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 22px 14px;
  }

  .brand {
    font-size: 25px;
  }

  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: calc(100vh - 112px);
    padding: 48px 22px 70px;
  }

  .portrait {
    width: 220px;
  }

  .statement {
    font-size: 22px;
  }

  .books-section {
    padding: 48px 22px 58px;
  }

  .books-section h2 {
    font-size: 32px;
  }
}
