@media screen and (width > 1024px) {
  :root {
    --content-start: 2rem;
    --row-height: 9rem;
    --heading-size: 2rem;
    --subheading-size: 1.5rem;
    --normal-list-size: 1rem;
    --smaller-list-size: 1rem;
  }

  .desktop-hidden {
    display: none;
  }

  main {
    margin: 0 auto;
    width: 100vw;
  }

  main section {
    max-width: 33.5rem;
    padding: 1rem 2rem 1rem 2rem;
    right: 5rem;
    z-index: 10;
  }

  .page-title {
    position: absolute;
    top: -2.8125rem;
    left: -2rem;
    font-size: 8rem;
    white-space: nowrap;
    overflow-x: hidden;
    pointer-events: auto;
  }

  .full-page {
    width: 100vw;
    right: 3rem;
  }

  .full-page .page-title {
    margin-left: 6.25rem;
  }

  .bracket-tl::before {
    left: 0;
    width: 12.5rem;
  }

  .bracket-br::after {
    right: 0;
    width: 12.5rem;
  }

  .bracket-tr::before {
    top: 0;
    right: 0;
    width: 100vw;
  }

  .bracket-bl::after {
    bottom: 0rem;
    left: 0;
    width: 12.5rem;
  }

  main section.hero {
    max-width: 60rem;
  }

  main section .epigraph {
    position: relative;
    max-width: 60rem;
    font-size: 2.5rem;
  }

  nav {
    z-index: 3;
  }

  nav.small {
    position: fixed;
    bottom: 1rem;
  }

  nav.small li {
    padding-left: 1rem;
    font-size: 2.25rem;
  }

  nav.big {
    position: fixed;
    top: 3rem;
  }

  nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: max-content;
  }

  nav li {
    position: relative;
    z-index: 5;
    transition:
      font-weight 0.25s ease,
      font-size 0.25s ease;
  }

  nav li:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    background: var(--sun-amber);
    pointer-events: none;
  }

  nav.small li:after {
    height: 0.1875rem;
    bottom: 0;
  }

  nav.big li:after {
    height: 0.1875rem;
    bottom: 0.825rem;
  }

  nav.big li {
    padding-left: 4rem;
    height: var(--row-height);
    line-height: var(--row-height);
    margin-left: -2.5rem;
    font-size: 8rem;
  }

  nav ul:hover li {
    opacity: 0.4;
  }

  nav ul:hover li:hover {
    opacity: 1;
  }

  nav.big li.current-section {
    font-weight: 400;
  }

  main section #bio-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0rem 0rem 2rem;
    max-height: calc(
      100vh - (var(--content-start) + 3 * var(--row-height)) - 4rem
    );
    overflow-y: auto;
  }

  article.bio {
    min-width: 20rem;
    width: 24rem;
    flex: 1 1 0;
  }

  section[data-chapter="1"] {
    --chapter-index: 1;
  }
  section[data-chapter="2"] {
    --chapter-index: 2;
  }
  section[data-chapter="3"] {
    --chapter-index: 3;
  }

  main section[data-chapter] {
    top: calc(var(--content-start) + var(--chapter-index) * var(--row-height));
  }

  main section .chapter-content {
    padding-left: 0.375rem;
  }

  main section#chapter-1 .chapter-content {
    max-height: calc(
      100vh - (var(--content-start) + 1 * var(--row-height)) - 2rem
    );
    overflow-y: auto;
  }

  main section#chapter-2 .chapter-content {
    max-height: calc(
      100vh - (var(--content-start) + 2 * var(--row-height)) - 4rem
    );
    overflow-y: auto;
  }

  main section#chapter-3 {
    border: none;
    padding: 0.5rem 0 0 0;
    max-width: calc(90vw - 10rem);
  }

  main.full-page section.full-page {
    top: calc(var(--content-start) + 1 * var(--row-height));
    padding-bottom: 3rem;
  }

  footer {
    z-index: 20;
  }
}
