:root {
  color-scheme: light;
  --paper: #ffffff;
  --ink: #191916;
  --muted: #5e5b53;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino,
    "Book Antiqua", Georgia, serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header {
  width: min(51.875rem, calc(100% - 5rem));
  margin: 0 auto;
  padding-top: 2.625rem;
}

.wordmark {
  color: var(--ink);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  text-decoration: none;
}

main {
  width: min(51.875rem, calc(100% - 5rem));
  margin: 0 auto;
  padding: clamp(2.5625rem, 5.5vh, 4.125rem) 0 8.125rem;
}

.horizon {
  width: calc(100% + clamp(10rem, 22vw, 21.875rem));
  margin: 0 0 0 calc(clamp(10rem, 22vw, 21.875rem) / -2);
}

.horizon img {
  display: block;
  width: 100%;
  height: auto;
}

.portrait {
  margin-top: clamp(4.75rem, 9vh, 6.875rem);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.006em;
  line-height: 1.58;
}

.portrait section {
  margin: 0;
}

.portrait section + section {
  margin-top: clamp(4.5rem, 9vh, 6.5rem);
}

.portrait h2 {
  margin: 0 0 1.125rem;
  color: var(--muted);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.portrait p {
  margin: 0;
}

.portrait p + p {
  margin-top: 1.2em;
}

@media (max-width: 43.75rem) {
  .site-header,
  main {
    width: calc(100% - 2.5rem);
  }

  .site-header {
    padding-top: 1.625rem;
  }

  main {
    padding-top: 2.75rem;
  }

  .portrait {
    margin-top: 3.875rem;
    font-size: clamp(1rem, 4.56vw, 1.2rem);
    line-height: 1.52;
  }

  .portrait section + section {
    margin-top: 3.75rem;
  }

  .horizon {
    width: calc(100% + 2.75rem);
    margin-left: -1.375rem;
  }
}
