:root {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.55;
  background: #eceae4;
  color: #242422;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
}

header,
footer,
main {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
}

header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #bcb9b0;
}

.logo {
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .02em;
}

nav {
  display: flex;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.hero {
  padding: 100px 0 80px;
  max-width: 800px;
}

h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 20px 0 30px;
  font-weight: 400;
}

h2 {
  font-weight: 400;
  font-size: 27px;
  margin: 8px 0 14px;
}

.lead {
  max-width: 660px;
  font-size: 21px;
}

.label,
.date {
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  padding-bottom: 100px;
}

.grid article,
.entry {
  border-top: 1px solid #aaa79e;
  padding-top: 20px;
}

.narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 0 140px;
}

.narrow h1 {
  font-size: clamp(46px, 7vw, 72px);
}

.entry {
  margin-top: 50px;
}

footer {
  border-top: 1px solid #bcb9b0;
  min-height: 100px;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  font-family: Arial, sans-serif;
  font-size: 12px;
}

@media (max-width: 700px) {
  header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  nav {
    gap: 16px;
  }

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

  footer {
    gap: 15px;
    flex-direction: column;
  }
}
