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

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

body {
  background-color: #FAF8F5;
  color: #2a2a2a;
  font-family: 'EB Garamond', Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #d6d0c8;
}

.logo a {
  text-decoration: none;
}

.logo img {
  height: 28px;
  display: block;
}

nav {
  display: flex;
  gap: 1.8rem;
}

nav a {
  text-decoration: none;
  color: #2a2a2a;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover {
  color: #7a7062;
}

main {
  max-width: 680px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.subtitle {
  font-style: italic;
  font-size: 1.15rem;
  color: #6b6259;
  margin-bottom: 0.2rem;
}

.meta {
  font-size: 0.85rem;
  color: #998e7e;
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

main p {
  margin-bottom: 1.4rem;
  text-align: left;
  hyphens: auto;
}

main p.drop-cap::first-letter {
  float: left;
  font-size: 3.8em;
  line-height: 0.8;
  padding-right: 0.08em;
  padding-top: 0.07em;
  font-weight: 600;
  color: #2a2a2a;
}

main blockquote {
  border-left: 3px solid #c9c1b5;
  margin: 2rem 0 2rem 0;
  padding: 0.3rem 0 0.3rem 1.5rem;
  font-style: italic;
  color: #5a5248;
}

main blockquote p {
  margin-bottom: 0.5rem;
}

main h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

main h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

main em {
  font-style: italic;
}

main strong {
  font-weight: 600;
}

hr {
  border: none;
  border-top: 1px solid #d6d0c8;
  margin: 2.5rem 0;
}

/* Index page essay list */
.essay-list {
  list-style: none;
  padding: 0;
}

.essay-list li {
  margin-bottom: 1.8rem;
}

.essay-list a {
  text-decoration: none;
  color: #2a2a2a;
}

.essay-list a:hover .essay-title {
  color: #7a7062;
}

.essay-title {
  font-size: 1.25rem;
  font-weight: 600;
  display: block;
  line-height: 1.35;
  transition: color 0.2s;
}

.essay-date {
  font-size: 0.82rem;
  color: #998e7e;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.15rem;
}

/* About page */
.about-photo {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 2rem;
  filter: grayscale(100%);
}

.contact-info {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #6b6259;
}

.contact-info a {
  color: #2a2a2a;
  text-decoration: underline;
  text-decoration-color: #c9c1b5;
  text-underline-offset: 3px;
}

.contact-info a:hover {
  text-decoration-color: #2a2a2a;
}

footer {
  max-width: 680px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid #d6d0c8;
  font-size: 0.82rem;
  color: #998e7e;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  body {
    font-size: 17px;
  }

  header {
    padding: 1.5rem 1rem 0.8rem;
  }

  .logo img {
    height: 22px;
  }

  main {
    padding: 2rem 1rem 3rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  main p.drop-cap::first-letter {
    font-size: 3.2em;
  }
}
