: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: Tahoma, Verdana, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page {
  display: grid;
  grid-template-columns: minmax(0, 41rem) 13.75rem;
  gap: clamp(3rem, 7vw, 5.25rem);
  align-items: start;
  justify-content: center;
  width: min(64rem, calc(100% - 4rem));
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(5rem, 14vh, 8rem) 0;
}

.portrait {
  position: sticky;
  top: 4rem;
}

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);
}

.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;
}

.copy p {
  margin: 0;
}

.copy p + p {
  margin-top: 1.05em;
}

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 {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: min(100% - 2rem, 31rem);
    padding: 2.75rem 0 4rem;
  }

  .portrait {
    position: static;
  }

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

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