@font-face {
  font-family: "Orange Squash";
  src: url("../fonts/OrangeSquash-Regular.woff2") format("woff2"), url("../fonts/OrangeSquash-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Webfont SF Pro Regular";
  src: url("../fonts/SF-Pro-Text-Regular.woff2") format("woff2"), url("../fonts/SF-Pro-Text-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Webfont SF Pro Medium";
  src: url("../fonts/SF-Pro-Display-Medium.woff2") format("woff2"), url("../fonts/SF-Pro-Display-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Webfont SF Mono";
  src: url("../fonts/SFMono-Regular.woff2") format("woff2"), url("../fonts/SFMono-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: #292929 transparent;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

::-moz-selection { /* Code for Firefox */
  color: tomato;
  background: transparent;
}

::selection {
  color: tomato;
  background: transparent;
}

body {
  background-color: #111111;
  font-family: "SF Pro", "Webfont SF Pro Regular", -apple-system, BlinkMacSystemFont, sans-serif;
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  line-height: 1.5;
}
body.inactive {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
  font-family: "Orange Squash", "Georgia", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
}

h2 {
  font-size: 48px;
  line-height: 120%;
  padding-top: 24px;
  margin-top: -24px;
  margin-bottom: 32px;
  letter-spacing: 0%;
  width: 658px;
}
h2.tagline {
  margin-bottom: 48px;
  width: 756px;
}

h3 {
  font-size: 32px;
  line-height: 120%;
  margin: 48px 0 20px 0;
  padding-top: 24px;
}
h3 em {
  color: tomato;
  display: inline-block;
  font-family: Baskerville, "Times New Roman", serif;
  font-size: 40px;
  line-height: 0;
  transform: translateY(3px) translateX(-1px);
}

p {
  font-weight: 400;
  letter-spacing: -2%;
  margin-bottom: 1em;
}

p.double-spaced {
  color: #fff;
  font-family: "SF Pro", "Webfont SF Pro Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  line-height: 2;
}

p .right-mono {
  color: rgba(255, 255, 255, 0.5);
  font-family: "SF Mono", "Webfont SF Mono", -apple-system, BlinkMacSystemFont, monospace;
  font-size: 14px;
  float: right;
  letter-spacing: -2%;
  line-height: 48px;
  margin-right: 36px;
}

p.first {
  color: #fff;
  font-family: "Orange Squash", "Georgia", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 32px;
  line-height: 120%;
}

blockquote {
  letter-spacing: -2%;
  margin: 0 0 24px 0;
}

.hamburger {
  background: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  left: 24px;
  height: 48px;
  overflow: hidden;
  position: fixed;
  text-align: center;
  top: 24px;
  width: 48px;
  z-index: 999;
}
.hamburger .icon-open {
  border-bottom: 2px solid #fff;
  border-top: 2px solid #fff;
  display: block;
  height: 10px;
  left: 14px;
  top: 19px;
  position: absolute;
  transition: all 0.2s ease-in-out;
  width: 20px;
}
.hamburger .icon-close {
  left: 16px;
  opacity: 0;
  position: absolute;
  top: 16px;
  transform: scale(0.5);
  transition: all 0.2s ease-in-out;
}
.hamburger:hover {
  background: #292929;
}
.hamburger.active .icon-open {
  opacity: 0;
  transform: scale(0.5, 0.1);
}
.hamburger.active .icon-close {
  opacity: 1;
  transform: scale(1);
}

nav {
  background: #111111;
  bottom: 0px;
  left: 0px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0px;
  top: 0px;
  transition: all 0.2s;
  z-index: 3;
}
nav.active {
  pointer-events: all;
  opacity: 1;
}

.wrapper {
  margin: 0 auto;
  width: 1000px;
}

.header {
  height: 256px;
  padding-top: 100px;
  width: 1000px;
}
.header h1 {
  display: inline-block;
  margin-left: -12px;
  padding-inline: 12px;
  line-height: 0.65;
  width: 460px;
}
.header h1 a {
  color: #fff;
  transition: 0.3s all;
  text-decoration: none;
}
.header h1 a:hover .stylistic-p {
  font-feature-settings: "ss01" 1;
  letter-spacing: -3%;
}
.header h1 a:hover .stylistic-n {
  font-feature-settings: "ss02" 1;
}
.header h1 a:hover .ligature-ck {
  font-variant-ligatures: common-ligatures discretionary-ligatures;
  font-feature-settings: "liga" 1, "dlig" 1;
  letter-spacing: -6%;
}
.header h1 .name {
  font-size: 64px;
  letter-spacing: -2%;
}
.header h1 .bullet {
  display: none;
}
.header h1 .title {
  font-size: 24px;
  letter-spacing: 0%;
}
.header h1 .title .ampersand {
  color: tomato;
  font-family: Baskerville, "Orange Squash", -apple-system, BlinkMacSystemFont, serif;
  font-size: 32px;
  font-style: italic;
  letter-spacing: 2px;
  position: relative;
  top: 3px;
  -webkit-font-smoothing: auto;
}

footer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  float: left;
  height: 96px;
  width: 1000px;
}
footer ul {
  float: right;
  list-style-type: none;
}
footer ul li {
  float: left;
  margin-left: 12px;
}
footer ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
footer ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.introduction {
  columns: 2;
  column-gap: 36px;
  margin-bottom: 64px;
}
.introduction p {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.introduction strong {
  color: #fff;
  font-family: "SF Pro", "Webfont SF Pro Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
}

.work-container {
  display: block;
  overflow: auto;
  margin-bottom: 48px;
}
.work-container > :nth-child(-n+2) {
  margin-right: 24px;
}
.work-container a {
  background: #292929;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.8);
  float: left;
  overflow: hidden;
  text-decoration: none;
  width: 316px;
}
.work-container a img {
  width: 316px;
}
.work-container a img.no-bleed {
  height: auto;
  margin: 32px 24px 16px 24px;
  width: 268px;
}
.work-container a .text {
  padding: 6px 24px 20px 24px;
}
.work-container a .text .company {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.work-container a .text h4 {
  color: #fff;
  font-family: "SF Pro", "Webfont SF Pro Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.work-container a .text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
}
.work-container a .text .calltoaction {
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
}
.work-container a .text .calltoaction em {
  color: tomato;
  display: inline-block;
}
.work-container a:hover {
  background: #313131;
  color: #fff;
}
.work-container a:hover .calltoaction {
  color: #fff;
}
.work-container a:hover em {
  transform: translateX(2px);
}

.list {
  color: rgba(255, 255, 255, 0.8);
  float: left;
  margin-left: 0px;
  margin-bottom: 96px;
  width: 488px;
}
.list.gutter {
  margin-left: 24px;
}
.list ul {
  list-style: none;
  margin-top: 48px;
}
.list ul li {
  margin-bottom: 36px;
}
.list ul li .title {
  color: #fff;
  display: block;
  font-family: "SF Pro", "Webfont SF Pro Medium", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1;
}
.list ul li .subtitle {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  font-size: 16px;
  letter-spacing: -2%;
  line-height: 1.5;
}

.column {
  float: left;
  padding-bottom: 72px;
  width: 612px;
}
.column ol {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
  margin-bottom: 24px;
}
.column ol li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 1.2em 1fr;
  column-gap: 0.5em;
}
.column ol li::before {
  font-family: "SF Mono", "Webfont SF Mono", -apple-system, BlinkMacSystemFont, monospace;
  content: counter(item) ".";
}
.column ul {
  list-style-position: outside;
  padding-left: 1.5rem;
  margin-bottom: 24px;
}
.column ul li {
  padding-left: 0.25rem;
}
.column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.column a span.link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}
.column a:hover span.link {
  color: #fff;
}
.column a span.external {
  color: tomato;
}

.sidebar {
  float: right;
  font-size: 16px;
  width: 316px;
}

.panel-wrapper {
  position: sticky;
  top: 24px;
}

.panel {
  background-color: #292929;
  border-radius: 6px;
  margin-bottom: 24px;
  padding: 24px;
  overflow: hidden;
  position: sticky;
  top: 24px;
}
.panel ::-moz-selection { /* Code for Firefox */
  color: tomato;
  background: #292929;
}
.panel ::selection {
  color: tomato;
  background: #292929;
}

.sidebar-hero {
  height: auto;
  margin: 8px 0 24px 0;
  width: 268px;
}

.sidebar-hero-full {
  margin: -24px 0 20px -24px;
  width: 316px;
}

a.toc-chapter {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  letter-spacing: -2%;
  line-height: 1.4;
  margin-bottom: 7px;
  overflow: auto;
  text-decoration: none;
}
a.toc-chapter:hover, a.toc-chapter.active {
  color: #fff;
}
a.toc-chapter:last-child {
  margin-bottom: 0;
}

.toc-chapter-num {
  font-family: "SF Mono", "Webfont SF Mono", -apple-system, BlinkMacSystemFont, monospace;
  margin-right: 16px;
}

.toc-chapter-title {
  float: right;
  width: 232px;
}

h6 {
  font-family: "SF Pro", "Webfont SF Pro Regular", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.panel-links {
  line-height: 1.5;
  margin-top: 16px;
  overflow: auto;
}
.panel-links a {
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 6px;
  text-decoration: none;
}
.panel-links a span.title {
  float: right;
  width: 232px;
}
.panel-links a span.external {
  color: rgba(255, 255, 255, 0.5);
}
.panel-links a svg {
  margin-left: 3px;
  height: auto;
  width: 14px;
}
.panel-links a svg path {
  fill: rgba(255, 255, 255, 0.5);
}
.panel-links a:hover {
  color: #fff;
}
.panel-links a:hover svg path {
  fill: #fff;
}

figure {
  margin: 36px 0;
  position: relative;
  width: 100%;
}
@media (min-width: 1440px) {
  figure {
    margin: 36px 0 36px -166px;
    width: 778px;
  }
}
figure img {
  width: 100%;
}
figure img#deckImage {
  cursor: e-resize;
}
figure .youtube-cover {
  border-radius: 6px;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
figure .youtube-cover.convo-viz {
  aspect-ratio: 16/9.7;
}
figure .youtube-cover iframe,
figure .youtube-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
figure .youtube-cover iframe {
  border: 0;
}
figure .youtube-poster {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: none;
  z-index: 2;
}
figure .youtube-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
figure .youtube-poster svg {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.4);
  transition: all 0.1s ease-in-out;
}
figure .youtube-poster:hover svg {
  transform: translate(-50%, -50%) scale(0.45);
}
figure figcaption {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  text-align: center;
  width: 100%;
}
@media (min-width: 1440px) {
  figure figcaption {
    margin-top: 40px;
    position: absolute;
    text-align: right;
    width: 136px;
  }
}
figure figcaption .directional-caption {
  display: none;
}
@media (min-width: 1440px) {
  figure figcaption .directional-caption {
    display: inline;
  }
}

.audio-player {
  background-color: #292929;
  border-radius: 6px;
  display: block;
  height: 64px;
  margin-bottom: 24px;
  position: relative;
}
.audio-player audio {
  display: none;
}
.audio-player button {
  background: none;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: block;
  height: 64px;
  font-family: "SF Mono", "Webfont SF Mono", -apple-system, BlinkMacSystemFont, monospace;
  font-size: 36px;
  line-height: 64px;
  position: relative;
  text-align: center;
  width: 64px;
}
.audio-player button svg {
  pointer-events: none;
}
.audio-player button svg path {
  fill: rgba(255, 255, 255, 0.5);
}
.audio-player button:hover svg path {
  fill: #fff;
}
.audio-player .metadata {
  bottom: 0px;
  left: 64px;
  line-height: 1.5;
  font-size: 16px;
  padding: 10px 20px;
  position: absolute;
  right: 0px;
  top: 0px;
}
.audio-player .metadata span {
  display: block;
}
.audio-player .metadata .title {
  color: #fff;
}
.audio-player .metadata .subtitle {
  color: rgba(255, 255, 255, 0.5);
  font-family: "SF Mono", "Webfont SF Mono", -apple-system, BlinkMacSystemFont, monospace;
  font-size: 14px;
  letter-spacing: -2%;
}

.thumb {
  cursor: zoom-in;
}

.lightbox {
  padding: 0;
  border: none;
  background: transparent;
  max-width: none;
  max-height: none;
  margin: auto;
  overflow: visible;
}

.lightbox[open] {
  display: grid;
  place-items: center;
}

.lightbox::backdrop {
  background: rgba(17, 17, 17, 0.9);
}

.lightbox-content {
  position: relative;
}

.lightbox img {
  cursor: zoom-out;
  display: block;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox *:focus:not(:focus-visible) {
  outline: none;
}

.close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  z-index: 2;
  background: none;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 2.5rem;
  cursor: pointer;
  outline: none;
}
.close:hover {
  color: #fff;
}

.lightbox {
  outline: none;
}

.lightbox:focus {
  outline: none;
}

.lightbox:focus-visible {
  outline: none;
}

.border-radius {
  border-radius: 6px;
}

/*# sourceMappingURL=main.css.map */
