:root {
  --paper: #ffffff;
  --ink: #171511;
  --link: #69513d;
  --link-hover: #171511;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", "Avenir Next", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  display: block !important;
  grid-template-columns: none !important;
  flex-direction: column !important;
  width: min(41rem, calc(100% - 4rem));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(5rem, 14vh, 8rem) 0;
}

.copy {
  max-width: 41rem;
  padding-top: 0;
  font-size: clamp(0.92rem, 0.95vw, 0.98rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.55;
}

.portrait {
  display: block;
  clear: both;
  float: none;
  margin-top: 2.6rem;
}

img {
  display: block;
  width: 13.75rem;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(23, 21, 17, 0.1);
  filter: saturate(0.9) contrast(1.02);
}

h1 {
  margin: 0 0 1.6rem;
  font-size: 1.24em;
  font-weight: 600;
  line-height: 1.2;
}

.copy p,
.copy ul {
  margin: 0;
}

.copy-block,
.copy p + p {
  margin-top: 1.15rem;
}

.copy-block + .copy-block,
.copy-block + p {
  margin-top: 1.35rem;
}

.label {
  font-weight: 400;
}

.aside {
  margin-top: 0.35rem;
}

ul {
  display: grid;
  gap: 0.1rem;
  padding: 0 0 0 1.85rem;
  list-style: disc;
}

a {
  color: var(--link);
  text-decoration-color: rgba(95, 63, 38, 0.32);
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

a:hover,
a:focus-visible {
  color: var(--link-hover);
  text-decoration-color: currentColor;
}

a:focus-visible {
  outline: 1px solid var(--link-hover);
  outline-offset: 0.18em;
}

sup {
  font-size: 0.58em;
  line-height: 0;
  vertical-align: super;
}

sup a {
  text-decoration-thickness: 0.05em;
  text-underline-offset: 0.12em;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 2rem, 31rem);
    padding: 2.75rem 0 4rem;
  }

  .copy {
    padding-top: 0;
    font-size: 0.98rem;
  }

  img {
    width: min(64vw, 14.5rem);
  }
}
