body {
  margin: 0;
  background: #fffdf7;
  color: #1d1d1b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.7;
}

a {
  color: #123a66;
  text-decoration: underline;
}

a:hover {
  color: #0d2a49;
}

.page {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 20px 64px;
}

.site-header {
  margin-bottom: 56px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d7d0bf;
}

.site-header h1 {
  margin: 0 0 12px;
  font-size: 2rem;
  font-weight: normal;
}

.site-header h1 a {
  color: inherit;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav a[aria-current="page"] {
  text-decoration: none;
  color: #1d1d1b;
}

.content-block {
  display: block;
}

h2,
h3 {
  font-weight: normal;
  line-height: 1.3;
}

h2 {
  margin: 0 0 20px;
  font-size: 1.7rem;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

p {
  margin: 0 0 20px;
}

.hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 48px;
}

.hero-image {
  width: 100%;
  height: auto;
  border: 1px solid #d7d0bf;
  background: #f5efe0;
}

.eyebrow {
  margin-bottom: 14px;
  color: #7a5d32;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.essay-list {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}

.essay-item {
  padding-top: 18px;
  border-top: 1px solid #d7d0bf;
}

.founder-section {
  margin-top: 48px;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(220px, 3fr) minmax(280px, 4fr);
  gap: 28px;
  align-items: start;
}

.founder-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #d7d0bf;
  background: #f5efe0;
}

.contact-card {
  padding: 24px;
  border: 1px solid #d7d0bf;
  background: #fbf7ee;
}

.contact-note {
  margin-top: 16px;
  color: #5d523b;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  body {
    font-size: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 280px;
  }

  .founder-profile {
    grid-template-columns: 1fr;
  }

  .founder-image {
    max-width: 220px;
  }

}
