*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #d5d3cf;
  --ink: #1c1c1c;
  --rule: #2a2a2a;
  --sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  /* Trajan Pro on the printed piece; Cinzel is the closest free web face. */
  --serif: "Trajan Pro", "Trajan Pro 3", "Cinzel", "Hoefler Text", "Times New Roman", Times, serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.page {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3rem;
}

.name {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  font-variant: small-caps;
  letter-spacing: 0.04em;
  /* Trajan Pro Bold 60pt */
  font-size: clamp(2.75rem, 8vw, 5rem);
  line-height: 1.05;
  text-align: center;
}

.status {
  margin: 1rem 0 0;
  font-style: italic;
  /* Arial Italic 30pt */
  font-size: clamp(1.15rem, 3.4vw, 2.5rem);
  text-align: center;
}

.work {
  margin: 2.25rem 0 0;
}

.work img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--rule);
}

.caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.35rem 1.5rem;
  margin-top: 0.85rem;
  /* Arial 22pt on the printed piece; scaled down to sit on one line here */
  font-size: clamp(0.9rem, 2.4vw, 1.4rem);
}

.work-title {
  font-style: normal;
}

.work-medium {
  font-style: italic;
}

.email {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.email:hover,
.email:focus-visible {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .caption {
    justify-content: flex-start;
  }
}
