@charset "UTF-8";
* {
  margin: 0;
  padding: 0; }

:root {
  --padding: 1.5rem;
  --color-black: #211d1c;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: #edebe0;
  --font-family-sans: "IBM Plex Sans", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  --font-family-mono: "IBM Plex Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace; }

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
  background: var(--color-background); }

img {
  width: 100%; }

body {
  padding: 0;
  margin: 0 auto;
  position: relative;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga", "dlig";
  background: linear-gradient(to right, rgba(33, 29, 28, 0), rgba(33, 29, 28, 0.04)); }

.container, .container-fluid {
  box-sizing: border-box;
  max-width: 70rem;
  padding: var(--padding); }

.container-fluid {
  max-width: unset; }

li {
  list-style: none; }

a {
  color: currentColor;
  text-decoration: none; }

.intro a, .text a, footer a {
  text-decoration: underline; }

.home-header a:hover, .home-header a:focus {
  text-decoration: underline; }

/*
.text, .footer a {
  &:hover, &:focus {
  color: var(--color-text-grey);}
}
*/
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer; }

strong, b {
  font-weight: 400; }

small {
  font-size: inherit;
  color: var(--color-text-grey); }

.bg-light {
  background-color: var(--color-light); }

.color-grey {
  color: var(--color-text-grey); }

.header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-right: -1rem;
  margin-left: -1rem;
  margin-bottom: 6rem; }

.logo {
  font-weight: 400;
  cursor: pointer;
  font-size: 1.1em;
  text-decoration: none; }

.menu {
  display: flex; }

.menu a {
  padding: 1rem;
  display: block; }

.menu a[aria-current] {
  text-decoration: underline; }

.section {
  padding: 3rem 0; }

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr; }

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense; }

.grid-projects {
  grid-gap: 0;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: dense; }
  .grid-projects > .column {
    --cols: 1;
    --rows: 1;
    grid-column: span var(--cols);
    grid-row: span var(--rows); }
  .grid-projects > .column:first-child {
    --rows: 2; }

.snip {
  color: white;
  background-color: var(--color-black);
  /*
  background-size:cover;
  background-position: center;
  background-repeat: no-repeat;
  */
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  position: relative;
  overflow: hidden; }
  .snip .h2 {
    font-weight: 300;
    margin: 0;
    font-size: 2.3em;
    margin-bottom: -0.1em; }
  .snip .snip-text {
    padding: var(--padding);
    padding-bottom: 3rem;
    z-index: 2;
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(33, 29, 28, 0) 0%, rgba(33, 29, 28, 0.5) 100%); }
    .snip .snip-text h2 {
      transition: all .4s ease; }
  .snip .snip-img {
    opacity: .9;
    transition: all .4s ease;
    /*
    width:100%;
    height: auto;
    //z-index:-1;
    top:0;
    left:0;
    position: relative;
    */ }
  .snip:hover .snip-img, .snip:focus .snip-img {
    opacity: 1;
    transform: scale(1.04);
    transform-origin: center; }
  .snip:hover .snip-text h2, .snip:focus .snip-text h2 {
    margin-bottom: .1rem;
    text-decoration: underline; }

ul.tags, ul.list-metas .meta-name {
  font-family: "IBM Plex Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: .72em;
  margin-bottom: 0.32em;
  margin-left: .2em; }
  ul.tags li, ul.list-metas .meta-name li {
    display: inline-block; }
  ul.tags li + li:before, ul.list-metas .meta-name li + li:before {
    content: " | "; }

.home-header {
  font-size: 1.62em;
  background: var(--color-black);
  color: white; }
  .home-header .nav {
    margin-top: 25%;
    margin-bottom: var(--padding); }
  .home-header.column {
    padding: 9rem var(--padding) var(--padding); }

/*
.home-grid {
  display: grid;
  list-style: none;
  grid-gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
  grid-auto-flow: dense;
}
.home-grid li {
  position: relative;
  --cols: 1;
  --rows: 1;

  overflow: hidden;
  background: #000;
  line-height: 0;
}
*/
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
  line-height: inherit; }

h1 {
  font-weight: 200; }

.text {
  font-size: 1.2em;
  max-width: 35.4em;
  line-height: 1.5em;
  margin-top: 0.5em; }
  .text a {
    text-decoration: underline; }

.text :first-child {
  margin-top: 0; }

.text :last-child {
  margin-bottom: 0; }

.text p, .text ul, .text ol {
  margin-bottom: 1.5rem; }
.text ul, .text ol {
  margin-left: 1rem; }
.text ul p, .text ol p {
  margin-bottom: 0; }
.text ul > li {
  list-style: disc; }
.text ol > li {
  list-style: decimal; }
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0; }

.text h1,
.h1,
.intro {
  font-size: 1.8rem;
  line-height: 1.25em; }

.intro {
  font-size: 1.6rem; }

.text h2,
.h2 {
  font-size: 1.42rem;
  font-weight: 500;
  margin-bottom: 1.12rem;
  margin-top: 2.5rem; }

.text h3,
.h3 {
  font-weight: 600; }

.text hr {
  margin: 6rem 0; }

.text dt {
  font-weight: 600; }

.text blockquote {
  font-size: 1.5rem;
  line-height: 1.325em;
  margin: 3rem 0;
  max-width: 25rem; }

.text blockquote footer {
  font-size: .875rem;
  font-style: italic; }
  .text blockquote footer:before {
    content: "— "; }

.text figure {
  margin: 2.5rem 0; }

.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey); }

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 3rem auto; }

.align-center {
  text-align: center; }

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black); }

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light); }

/*
.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}

.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
*/
.text .video,
.text .img {
  padding-bottom: inherit; }

/*
.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
height: 100%;
}
.plyr:-webkit-full-screen.plyr--vimeo > .plyr__video-wrapper > .plyr__video-embed__container {
transform: none !important;
position: initial;
}
*/
.img[data-contain] img {
  object-fit: contain; }

.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em; }

.footer {
  padding: 10rem var(--padding) 2rem;
  line-height: 1.5em; }
  .footer a:hover {
    color: var(--color-text); }
  .footer p {
    max-width: 15rem; }
  .footer .logo {
    font-size: 1.5em;
    margin-top: -0.25em;
    display: inline-block; }
  .footer .copyright {
    font-family: "IBM Plex Mono", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    color: var(--color-text-grey);
    font-size: .8em;
    text-align: right; }
  .footer .column {
    margin-bottom: var(--padding); }
  .footer h2 {
    font-weight: 600;
    margin-bottom: .75rem; }

/*
.footer:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-black);
  margin-bottom: 1.5rem;
}
*/
/*
.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}
*/
.pagination {
  display: flex;
  padding-top: 6rem; }

.pagination > span {
  color: var(--color-text-grey); }

.pagination > * {
  padding: .5rem;
  width: 3rem;
  text-align: center;
  border: 2px solid currentColor;
  margin-right: 1.5rem; }

.pagination > a:hover {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black); }

/* _______________________________ */
.site-header {
  font-size: 2em;
  position: absolute;
  top: 0;
  z-index: 2000;
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: white; }

body.about .site-header, body.default .site-header {
  color: var(--color-black); }

body.default .btn-nav {
  display: none; }

body.about .about-header {
  padding-top: 12em; }
body.about .intro {
  font-size: 1.62em;
  margin-bottom: 0; }
body.about .cover {
  max-width: 20em; }

.project-header {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--padding) 0 1.4rem; }
  .project-header .mainplayer-container {
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    margin-top: 4.8rem;
    height: calc((9/16) * 100%);
    max-height: calc(100vh - 14.4rem); }
  .project-header .project-header-footer {
    padding: 0 var(--padding);
    margin: 2em 0 0.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
  .project-header h1.h1 {
    margin-bottom: .6rem; }

.site-header, .project-header-footer {
  transition: opacity .4s ease; }

body.vidplaying .site-header, body.vidplaying .project-header-footer {
  opacity: .15; }
  body.vidplaying .site-header:hover, body.vidplaying .project-header-footer:hover {
    opacity: 1; }

.home-header, .project-header {
  background: linear-gradient(to bottom right, rgba(33, 29, 28, 0.91), #211d1c); }

.plyr {
  --plyr-color-main: #fff;
  --plyr-video-control-background-hover: transparent;
  --plyr-btn-play-size: 8em; }
  .plyr button.plyr__control--overlaid {
    background: transparent; }
    .plyr button.plyr__control--overlaid svg {
      width: var(--plyr-btn-play-size);
      height: var(--plyr-btn-play-size); }
  .plyr .plyr__menu {
    display: none; }
  .plyr .plyr__control--overlaid svg {
    transition: all .2s ease; }
  .plyr .plyr__control--overlaid:hover svg {
    transform: scale(1.1);
    transform-origin: center; }

.plyr--stopped > .plyr__controls {
  display: none; }

figure .plyr {
  --plyr-btn-play-size: 6em; }

.maincontent {
  padding-top: 5rem; }

.btn-big {
  line-height: 1;
  font-size: 1.1em;
  font-weight: 500;
  border-radius: 2em;
  height: fit-content;
  padding: .65em 1.5em .8em;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-black); }
  .btn-big span {
    font-size: 1.2em; }
  .btn-big:hover, .btn-big:focus {
    background: white; }

.btn-nav {
  --hamburg-size: 1.2em;
  height: var(--hamburg-size);
  width: var(--hamburg-size); }
  .btn-nav svg {
    fill: currentcolor;
    width: 1em; }
  .btn-nav i {
    line-height: 1;
    font-size: 1.2em;
    display: inline-block; }

.btn-nav-about {
  background-color: rgba(33, 29, 28, 0.4);
  border-radius: 4em;
  padding: 0.4em;
  margin-right: -0.4em;
  margin-top: -0.3em; }
  .btn-nav-about i {
    font-size: 1.14em; }

.btn-nav-home {
  margin-top: .1em;
  display: none; }

.project .btn-nav-about, .about .btn-nav-about {
  display: none; }
.project .btn-nav-home, .about .btn-nav-home {
  display: block; }
  .project .btn-nav-home i, .about .btn-nav-home i {
    transform-origin: center;
    transform: rotate(45deg);
    margin-right: -0.5rem; }

ul.list-metas {
  margin-top: 3rem !important;
  list-style: none;
  font-size: .9em;
  margin-left: 0; }
  ul.list-metas li {
    display: flex;
    align-items: baseline; }
  ul.list-metas .meta-name {
    opacity: .8;
    width: 14em;
    margin-bottom: 0; }
  ul.list-metas .meta-value {
    justify-self: right; }

section {
  padding: 3rem 0; }

html {
  scroll-behavior: smooth; }

@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto; } }
@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem; }

  .grid {
    grid-template-columns: repeat(12, 1fr); }

  .grid > .column {
    grid-column: span var(--columns); }

  .snip .snip-img {
    margin-top: -1.2em;
    margin-bottom: -1.2em; }

  body.home .site-header {
    width: 50%; }
  body.home .btn-nav-about {
    position: absolute;
    z-index: 3000;
    right: calc(var(--padding) - 100%); } }
@media screen and (min-width: 1496px) {
  .grid.grid-projects {
    grid-template-columns: repeat(18, 1fr); }

  .snip .snip-img {
    margin-top: 0;
    margin-bottom: 0; } }
@media screen and (max-width: 620px) {
  .project-header-footer .btn {
    display: none; }

  .footer .copyright {
    text-align: left; } }
@media screen and (max-height: 620px) {
  .project-header {
    padding-top: 1.5rem; }

  .project-header .mainplayer-container {
    max-height: calc(100vh - 4.2rem);
    margin-top: .7rem; }

  body.project .site-header {
    justify-content: flex-end; }

  body.project .site-header .logo {
    display: none; } }
