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

html {
  font-family: Inter, HelveticaNeue, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: grayscale;
}

:root {
  font-size: 16px;
  font-synthesis: none;
}

body {
  padding: 48px 0 0 0;
  margin: 0;
}

.portfolio-page {
  background-color: #0d0d0f;
  color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: InterDisplay, HelveticaNeue, Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1;
}

p {
  line-height: 1.5;
}

a {
  color: #0048ff;
  cursor: pointer;
  text-decoration: underline;
}

button {
  background: none;
  border: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  color: inherit;
  cursor: pointer;
  font: inherit;
  line-height: inherit;
  overflow: visible;
  vertical-align: inherit;
}

button:disabled, button.button-disabled {
  cursor: default;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
  backdrop-filter: blur(14px);
  z-index: 9999;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
}

.site-header h1 {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.work-overview {
  max-width: 2500px;
  width: 100%;
  margin: auto;
}

.work-overview-list {
  list-style: none;
}

.work-overview-item {
  background-color: #000000;
  color: #ffffff;
  overflow: hidden;
}

.work-item-link {
  color: inherit;
  text-decoration: none;
}

.work-item-inner {
  position: relative;
  min-height: 600px;
  margin: auto;
}

.work-item-copy {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  padding: 20px;
  width: 100%;
  z-index: 9998;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
}

.work-item-copy-inner {
  padding-top: 2rem;
  max-width: 1200px;
  margin: auto;
  filter: drop-shadow(0px 2px 10px #000000);
}

.work-item-copy-inner * {
  margin: 0;
}

.work-item-title {
  font-size: 1.7rem;
  margin-bottom: 0.25em;
  max-width: 1200px;
}

.work-item-subtitle {
  line-height: 1.25em;
  max-width: 1200px;
}

.work-item-subtitle .interpunct::after {
  content: "•";
  font-size: inherit;
  margin: 0.4em;
}

.work-overview-item:hover .work-item-image {
  transform: translate(-50%, -50%) scale(1.025);
}

.work-item-image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  transition: transform 250ms cubic-bezier(0.4, 0, 0.6, 1);
  z-index: 1;
  object-fit: cover;
}

.contact-information .section-inner {
  padding: 0 20px 64px 20px;
  max-width: 1200px;
  margin: auto;
}
.contact-information .section-inner h2 {
  font-size: 2rem;
  margin: 2em 0 1em 0;
}
.contact-information .section-inner a {
  font-weight: 600;
  font-size: 1.5rem;
  color: #ffffff;
}