:root {
  color-scheme: light;
  --ink: #17211d;
  --paper: #f7f7f3;
  --line: #ced4ce;
  --accent: #b7442a;
  --green: #234d3b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  min-height: 64px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  text-decoration: none;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 14px;
  text-decoration: none;
}

.hero {
  min-height: 68vh;
  padding: 48px 5vw;
  display: flex;
  align-items: flex-end;
  color: white;
  background-color: var(--green);
  background-image: linear-gradient(rgba(11, 24, 19, 0.16), rgba(11, 24, 19, 0.72)), url("/assets/field.jpg");
  background-position: center;
  background-size: cover;
}

.hero-content {
  width: min(760px, 100%);
}

.issue,
.section-label,
.section-heading > p,
.date {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .issue {
  color: #f4c6b8;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 9vw, 104px);
  font-weight: 400;
  line-height: 0.95;
}

.hero-content > p:last-child {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: 19px;
}

.notes,
.about,
footer {
  padding-right: 5vw;
  padding-left: 5vw;
}

.notes {
  padding-top: 72px;
  padding-bottom: 84px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.note-grid article {
  min-width: 0;
  padding: 30px 30px 18px 0;
}

.note-grid article + article {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.note-grid h3 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.note-grid article > p:last-child {
  margin: 0;
  color: #4d5852;
}

.about {
  padding-top: 68px;
  padding-bottom: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 10vw;
  background: var(--green);
  color: white;
}

.about > p {
  align-self: end;
  margin: 0;
  color: #dbe6df;
}

footer {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 720px) {
  .site-header {
    min-height: 58px;
  }

  nav {
    gap: 18px;
  }

  .hero {
    min-height: 62vh;
    padding-bottom: 36px;
  }

  .hero-content > p:last-child {
    font-size: 16px;
  }

  .notes {
    padding-top: 52px;
    padding-bottom: 54px;
  }

  .section-heading,
  .about {
    display: block;
  }

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

  .note-grid article,
  .note-grid article + article {
    padding: 24px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .about > p {
    margin-top: 28px;
  }
}
