@font-face {
  font-family: "Libre Baskerville";
  src: url("fonts/libre-baskerville-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("fonts/libre-baskerville-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville";
  src: url("fonts/libre-baskerville-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3-400-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("fonts/source-sans-3-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1b2a41;
  --paper: #f6f3ee;
  --font-display: "Libre Baskerville", "Palatino Linotype", Palatino, "Book Antiqua", serif;
  --font-body: "Source Sans 3", "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --measure: 52rem;
}

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

html {
  color-scheme: light;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 400;
}

.sheet {
  width: min(var(--measure), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 2.1rem 0 3.25rem;
}

.letterhead {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.35rem 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--ink);
}

.letterhead p {
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.mark {
  font-weight: 600;
}

.place {
  text-align: right;
}

main > * + * {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--ink);
}

.identity {
  margin-top: 2rem;
  padding-top: 0;
  border-top: 0;
}

h1 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.55rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.title {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.35;
}

.one-liner {
  margin: 0;
}

h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.split,
.pair,
.work dl {
  display: grid;
  gap: 1.25rem 2.25rem;
}

.split p,
.for p,
.scope p {
  margin: 0;
}

.for p + p,
.scope p + p {
  margin-top: 0.75rem;
}

strong {
  font-family: var(--font-display);
  font-weight: 400;
}

.work dl {
  margin: 0;
}

dt {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 0.28rem;
}

dd {
  margin: 0;
  font-size: 0.98rem;
}

.red-flag {
  margin: 1.5rem 0 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--ink);
}

address {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.75rem;
  font-style: normal;
  margin: 0;
}

address a {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  text-decoration: none;
}

address a span {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

address a:hover span {
  text-decoration-thickness: 2px;
}

.contact-icon {
  width: 0.92em;
  height: 0.92em;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.note {
  margin: 0.9rem 0 0;
  font-size: 0.95rem;
  font-style: italic;
}

a {
  color: var(--ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

@media (min-width: 44rem) {
  .split,
  .pair,
  .work dl {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 43.99rem) {
  .sheet {
    width: calc(100% - 2rem);
    padding: 1.5rem 0 2.5rem;
  }

  .letterhead {
    flex-direction: column;
  }

  .place {
    text-align: left;
  }

  main > * + * {
    margin-top: 1.4rem;
    padding-top: 1.4rem;
  }

  body {
    font-size: 1rem;
  }
}

@media print {
  body {
    background: #fff;
  }

  .sheet {
    width: 100%;
    padding: 0;
  }

  a {
    text-decoration: none;
  }
}
