:root {
  color-scheme: light;
  --paper: #f8f7f2;
  --paper-soft: #fffefa;
  --ink: #37342f;
  --ink-strong: #211f1c;
  --muted: #6e6961;
  --link: #24211e;
  --link-soft: #8b867d;
  --rule: #e2ded4;
  --highlight: #f0ede5;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: "Frank Ruhl Libre", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.43;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

main {
  position: relative;
  width: min(720px, calc(100vw - 40px));
  margin: 34px auto 72px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(40px, 5.4vw, 60px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

h2 {
  clear: both;
  margin: 48px 0 10px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  font-size: 28px;
  font-weight: 650;
  line-height: 1.08;
}

p {
  margin-bottom: 20px;
  overflow-wrap: break-word;
}

ul {
  margin: -4px 0 26px 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 23px;
}

li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9a958c;
}

.tool-list {
  margin-top: 2px;
}

.tool-list li {
  margin-bottom: 10px;
}

.tool-list span {
  color: var(--ink-strong);
  font-weight: 650;
}

a {
  color: var(--link);
  font-weight: 650;
  text-decoration-color: rgba(36, 33, 30, 0.28);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
  overflow-wrap: break-word;
}

a:visited {
  color: var(--link);
}

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

.hero-intro {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 24px;
}

.headshot {
  width: 88px;
  height: 88px;
  margin: 3px 0 0;
  border: 1px solid rgba(52, 49, 45, 0.24);
  border-radius: 50%;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 24px rgba(52, 49, 45, 0.14);
  object-fit: cover;
}

.intro {
  margin-bottom: 0;
  color: var(--ink-strong);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.36;
}

.newsletter-form {
  clear: both;
  margin: 34px 0 48px;
  color: var(--ink);
}

.newsletter-form p {
  margin-bottom: 14px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.25;
}

.newsletter-form span {
  color: var(--ink-strong);
  font-weight: 700;
}

.newsletter-form iframe {
  display: block !important;
  width: min(100%, 520px) !important;
  height: 58px !important;
  margin: 0 auto !important;
  border: 0 !important;
  background: transparent !important;
}

.newsletter-form + h2 {
  margin-top: 44px;
  padding-top: 0;
  border-top: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 12px 0 10px;
}

.photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(52, 49, 45, 0.2);
  box-shadow: 0 18px 42px rgba(52, 49, 45, 0.16);
  overflow: hidden;
}

.photo-frame-square {
  aspect-ratio: 1;
  grid-column: 1 / -1;
}

.photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-profile {
  transform: scale(1.18);
  transform-origin: 48% 42%;
}

.essay-list p {
  margin-bottom: 8px;
}

.essay-list span {
  color: var(--muted);
}

.life-story p {
  margin-bottom: 27px;
}

.life-story span {
  display: inline-block;
  padding: 0 4px;
  background: var(--highlight);
  color: var(--ink-strong);
  white-space: nowrap;
}

::selection {
  background: #ddd8ce;
}

@media (max-width: 560px) {
  body {
    font-size: 19px;
    line-height: 1.4;
    overflow-x: hidden;
  }

  main {
    width: min(354px, calc(100vw - 36px));
    margin: 26px auto 56px;
  }

  h1 {
    margin-bottom: 24px;
    font-size: clamp(32px, 8.5vw, 38px);
    line-height: 1;
    white-space: nowrap;
  }

  h2 {
    margin-top: 42px;
    margin-bottom: 9px;
    padding-top: 18px;
    font-size: 28px;
  }

  p {
    margin-bottom: 23px;
  }

  ul {
    margin-bottom: 30px;
  }

  li {
    padding-left: 21px;
  }

  .hero-intro {
    display: block;
    margin-bottom: 0;
  }

  .headshot {
    float: left;
    width: 92px;
    height: 92px;
    margin: 4px 24px 14px 0;
  }

  .intro {
    min-height: 118px;
    font-size: 18px;
    line-height: 1.38;
  }

  .newsletter-form {
    margin: 26px 0 38px;
    padding: 14px 0 16px;
  }

  .newsletter-form iframe {
    height: 78px !important;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  p,
  li {
    overflow-wrap: anywhere;
  }

  .life-story p {
    margin-bottom: 30px;
  }
}
