:root {
  --background: #f2f0eb;
  --text: #111111;
  --muted: #66635d;
  --line: #c8c4bb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

header {
  max-width: 1400px;
  margin: 0 auto;
  padding: 34px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
}

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

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

nav a:hover,
.text-link:hover,
.footer-links a:hover {
  opacity: 0.55;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
}

.hero {
  min-height: 720px;
  padding: 110px 0 130px;
}

.eyebrow {
  margin: 0 0 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

h1 {
  margin: 0;
  max-width: 1000px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 10vw, 155px);
  font-weight: 400;
  line-height: 0.87;
  letter-spacing: -0.055em;
}

.intro {
  max-width: 560px;
  margin: 72px 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.55;
}

.divider {
  border-top: 1px solid var(--line);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 80px 0 120px;
}

.section-number {
  margin: 0 0 80px;
  color: var(--muted);
  font-size: 11px;
}

.content-grid h2,
.publisher h2,
.article h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.content-grid h2 {
  margin: 0 0 24px;
  font-size: 35px;
}

.content-grid p:not(.section-number) {
  color: #383632;
  font-size: 15px;
  line-height: 1.7;
}

.publisher {
  border-top: 1px solid var(--line);
  padding: 110px 0 150px;
}

.publisher h2 {
  max-width: 800px;
  margin: 0 0 50px;
  font-size: clamp(50px, 7vw, 95px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.publisher > p:not(.eyebrow) {
  max-width: 670px;
  margin-left: auto;
  color: #383632;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.65;
}

.text-link {
  display: block;
  width: fit-content;
  margin: 45px 0 0 auto;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 5px;
}

.page {
  padding-top: 110px;
  padding-bottom: 140px;
}

.page h1 {
  margin-bottom: 100px;
}

.article {
  max-width: 720px;
  margin-left: auto;
}

.article > p,
.article li {
  color: #302e2a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  line-height: 1.75;
}

.article h2 {
  margin: 70px 0 25px;
  font-size: 36px;
}

.article ul {
  padding-left: 24px;
}

.updated {
  color: var(--muted) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

footer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 45px 48px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  font-size: 12px;
  text-decoration: none;
}

.copyright {
  justify-self: end;
  color: var(--muted);
  font-size: 11px;
}

@media (max-width: 800px) {

  header,
  main,
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  header {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  nav {
    gap: 18px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 100px;
  }

  h1 {
    font-size: clamp(62px, 20vw, 100px);
  }

  .intro {
    margin: 60px 0 0;
    font-size: 19px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .section-number {
    margin-bottom: 25px;
  }

  .publisher > p:not(.eyebrow),
  .text-link,
  .article {
    margin-left: 0;
  }

  .page h1 {
    margin-bottom: 70px;
  }

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

  .copyright {
    justify-self: start;
  }
}
