:root {
  --bg: #faf9f6;
  --ink: #17150f;
  --muted: #635e56;
  --soft: #847f76;
  --line: #e7e3da;
  --accent: #a51c30;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #d5d3ce;
  color: var(--ink);
  font-family: "Public Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.panel {
  max-width: 1000px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 54px 58px 64px;
  background: var(--bg);
  line-height: 1.62;
}

.inner {
  max-width: 66ch;
}

.hdr {
  margin-bottom: 2.4rem;
}

.name {
  font-size: .9rem;
  font-weight: 600;
  white-space: nowrap;
}

h1 {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.deck {
  margin: 1.3rem 0 0;
  font-size: 1.12rem;
  color: var(--muted);
}

.deck p {
  margin: 0 0 1rem;
}

.deck p:last-child {
  margin-bottom: 0;
}

.paths {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
}

.role {
  display: block;
  font-size: 1.03rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.blurb {
  display: block;
  font-size: .98rem;
  color: var(--soft);
}

.body {
  margin-top: 3.4rem;
  font-size: 1.06rem;
}

.body p {
  margin: 0;
}

.wr {
  margin-top: 3.4rem;
}

.contact {
  margin-top: 3.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.6rem;
}

.contact a {
  color: var(--accent);
  font-size: .93rem;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .panel {
    padding: 30px 22px 36px;
  }

  .hdr {
    margin-bottom: 2rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  .paths,
  .contact {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .row {
    grid-template-columns: 1fr;
    gap: .15rem;
  }
}

.contact-address {
  text-decoration: none;
  color: inherit;
  color: var(--accent);
  font-size: .93rem;
}

.wr {
  margin-top: 3.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .7rem;
}

.writing-link {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.writing-link:hover,
.writing-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.socials {
  margin-top: 2.3rem;
  font-size: .88rem;
  color: var(--soft);
}

.socials a {
  color: var(--soft);
  text-decoration: none;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.socials span {
  margin: 0 .45rem;
}
