@charset "UTF-8";
/* -- COLORS */
/* -- TYPOGRAPHY */
/* -- SPACING */
/* -- BREAKPOINTS */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 800;
  font-display: auto;
  src: url("../fonts/Archivo-VariableFont_wdth,wght.ttf") format("truetype");
  font-variation-settings: "wdth" 100;
}
@font-face {
  font-family: "Instrument Serif";
  font-style: italic;
  font-weight: 400;
  font-display: auto;
  src: url("../fonts/InstrumentSerif-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "DM Mono";
  font-style: normal;
  font-weight: 300;
  font-display: auto;
  src: url("../fonts/DMMono-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  font-display: auto;
  src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype");
}
.eyebrow-text, .eyebrow-divider, .works-eyebrow-divider, .eyebrow, .works-eyebrow, .works-eyebrow-mobile {
  font-size: 11px;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  color: #939998;
  letter-spacing: 0.2em;
}

.eyebrow, .works-eyebrow, .works-eyebrow-mobile {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
  align-self: end;
  grid-column: 1;
  grid-row: 1;
  text-align: right;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
}
@media (max-width: 670px) {
  .eyebrow, .works-eyebrow, .works-eyebrow-mobile {
    grid-column: 2;
    padding-left: clamp(8px, 1vw, 12px);
  }
}

.eyebrow-divider, .works-eyebrow-divider {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  display: flex;
  flex-direction: row;
  text-align: left;
  align-items: end;
  max-width: 280px;
  gap: clamp(8px, 1vw, 12px);
}
.eyebrow-divider::before, .works-eyebrow-divider::before {
  content: "";
  display: block;
  width: 1px;
  height: 96px;
  background: #939998;
  opacity: 0.4;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  color: #19191a;
  background: #19191a;
  font-family: "DM Mono", monospace;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

a {
  cursor: none;
  text-decoration: none;
}

@view-transition {
  navigation: auto;
}
#cursor {
  display: none; /* hidden for everyone */
  width: 10px;
  height: 10px;
  background: #c5203b;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}
#cursor::after {
  content: "";
  position: absolute;
  inset: 0px;
  border: 1px solid #939998;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#cursor.expand {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #eef5f4;
}
#cursor.expand::after {
  opacity: 0.3;
  transform: scale(1);
}
#cursor.plus {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid #eef5f4;
  border-radius: 10%;
}
#cursor.plus::after {
  opacity: 0.3;
  transform: scale(1);
  border-radius: 10%;
}

@media (hover: hover) and (pointer: fine) {
  #cursor {
    display: block; /* on for pointer devices */
  }
}
#loader {
  position: fixed;
  inset: 0;
  background: #19191a;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#loader-bar-wrap {
  width: 240px;
  height: 1px;
  background: rgba(242, 239, 232, 0.12);
  position: relative;
  margin-bottom: 24px;
  transform: translateY(20vh);
}

#loader-bar {
  position: relative;
  top: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: #eef5f4;
  transition: width 0.05s linear;
}

#loader-pct {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #939998;
  text-transform: uppercase;
  transform: translateY(20vh);
}

#loader-wordmark {
  position: absolute;
  bottom: 48px;
  left: 48px;
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  letter-spacing: 0.28em;
  color: #eef5f4;
  opacity: 0.3;
  text-transform: uppercase;
}

#loader-bigtext {
  fill: #c5203b;
  position: absolute;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-align: center;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(20%);
}
#loader-bigtext.show {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0px);
}
#loader-bigtext.out {
  animation: loaderOut 0.9s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes loaderOut {
  0% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
  padding: clamp(24px, 1vw, 36px);
  mix-blend-mode: difference;
}
nav.visible {
  opacity: 1;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 10pt;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #eef5f4;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s;
  font-size: 14px;
  font-family: "DM Mono", monospace;
  mix-blend-mode: difference;
}
.nav-links a:hover {
  opacity: 1;
}

.nav-back {
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  color: #eef5f4;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.2em;
  opacity: 0.6;
  font-size: 14px;
  transition: opacity 0.2s;
  mix-blend-mode: difference;
}
.nav-back:hover {
  opacity: 1;
}
.nav-back::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: #eef5f4;
}

.custom-logo {
  height: 24px;
  width: auto;
}

/* -- MENU TOGGLE */
.nav-toggle {
  display: none; /* hidden on desktop */
  background: none;
  border: none;
  cursor: none;
  font-family: "Archivo", sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #eef5f4;
  padding: 0;
  transition: opacity 0.2s;
}
.nav-toggle:hover {
  opacity: 0.5;
}

/* -- FULL-SCREEN OVERLAY */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: #19191a;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-overlay-links a {
  font-family: "Archivo", sans-serif;
  font-size: clamp(56px, 14vw, 96px);
  line-height: 0.9;
  color: #eef5f4;
  text-decoration: none;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
}

/* stagger each link */
.nav-overlay-links li:nth-child(1) a {
  transition-delay: 0.05s;
}

.nav-overlay-links li:nth-child(2) a {
  transition-delay: 0.12s;
}

.nav-overlay-links li:nth-child(3) a {
  transition-delay: 0.19s;
}

.nav-overlay.open .nav-overlay-links a {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay-links a:hover {
  color: #c5203b;
}

/* small meta line at the bottom of the overlay */
.nav-overlay-meta {
  position: absolute;
  bottom: 36px;
  left: 36px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #939998;
}

/* -- HERO */
#hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.8s ease;
  min-height: 100vh;
  padding: clamp(24px, 1vw, 36px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 12px);
  background: #19191a;
}

#hero.visible {
  opacity: 1;
}

.hero-headline, .headline-2, .headline-1 {
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 4.8vw + 1rem, 4rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #eef5f4;
  font-variation-settings: "wdth" 110, "wght" 200;
}
.hero-headline em, .headline-2 em, .headline-1 em {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 300;
  color: #c5203b;
  font-size: 1.05em;
}

.headline-1 {
  grid-column: 1/4;
  grid-row: 2;
  align-self: start; /* anchors to the bottom of the row */
}
.headline-1::before {
  content: "GRAPHIC DESIGNER – BRUSSELS, BE";
  display: block;
  line-height: 2;
  justify-content: end;
  align-self: start;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #939998;
  font-family: "DM Mono", monospace;
}
@media (max-width: 670px) {
  .headline-1::before {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0.15em;
  }
}

.headline-2 {
  grid-column: 1/4;
  grid-row: 3;
  align-self: start;
  text-align: right;
}
@media (max-width: 670px) {
  .headline-2 {
    grid-column: 2/5;
  }
}

.hero-sub {
  grid-column: 4/6;
  grid-row: 3;
  text-align: left;
  align-self: start;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  line-height: 1.8;
  color: #939998;
  max-width: 280px;
  letter-spacing: 0.04em;
}
.hero-sub::before {
  content: "";
  display: block;
  width: 1px;
  height: 96px;
  background: #939998;
  opacity: 0.4;
}
@media (max-width: 670px) {
  .hero-sub {
    grid-column: 5/-1;
    line-height: 1.5;
    padding-top: clamp(24px, 1vw, 36px);
    padding-left: clamp(8px, 1vw, 12px);
    border-left: 1px solid rgba(147, 153, 152, 0.4);
  }
  .hero-sub::before {
    display: none;
  }
}

.hero-scroll {
  align-self: flex-start;
  grid-row: 4;
  grid-column: 6/6;
  justify-self: right;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #939998;
  font-family: "DM Mono", monospace;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  align-items: center;
  gap: clamp(24px, 1vw, 36px);
}
.hero-scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 96px;
  background: #939998;
}

/* -- MARQUEE */
.marquee-wrap {
  overflow: hidden;
  padding: 14px 0;
  grid-row: 4;
  grid-column: 1/-1;
  align-self: end;
}

.marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}

.marquee-item {
  font-family: "Archivo", sans-serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #939998;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-dot {
  color: #c5203b;
  padding-left: clamp(24px, 1vw, 36px);
  padding-right: clamp(24px, 1vw, 36px);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
#works {
  background: #eef5f4;
  color: #19191a;
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 1vw, 36px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 12px);
}
@media (max-width: 670px) {
  #works {
    grid-template-rows: repeat(4, 1fr);
  }
}

.works-eyebrow {
  grid-column: 1;
}
@media (max-width: 670px) {
  .works-eyebrow {
    display: none;
  }
}

@media (max-width: 670px) {
  .works-eyebrow-divider {
    display: none;
  }
}

.works-eyebrow-mobile-wrap {
  display: none;
}
@media (max-width: 670px) {
  .works-eyebrow-mobile-wrap {
    display: flex;
    flex-direction: row;
  }
  .works-eyebrow-mobile-wrap::before {
    content: "";
    display: block;
    width: 1px;
    height: 96px;
    background: #939998;
    opacity: 0.4;
  }
  .works-eyebrow-mobile-wrap {
    align-self: flex-end;
    grid-row: 1;
    grid-column: 1/-1;
  }
}

.works-eyebrow-mobile {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding-left: clamp(8px, 1vw, 12px);
  text-align: left;
}

.works-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
  grid-column: 1/-1;
  grid-row: 2/-1;
}

.work-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  padding: 28px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  cursor: none;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.work-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #19191a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 0;
}
.work-item:hover::after {
  transform: scaleX(1);
}
.work-item:hover .work-title,
.work-item:hover .work-num,
.work-item:hover .work-tags {
  color: #eef5f4;
}
.work-item > * {
  position: relative;
  z-index: 1;
  transition: color 0.45s;
}
@media (max-width: 670px) {
  .work-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .work-item::after {
    background-color: #eef5f4;
  }
  .work-item:hover::after {
    transform: none;
  }
  .work-item:hover .work-title,
  .work-item:hover .work-num,
  .work-item:hover .work-tags {
    color: #19191a;
  }
}

.work-num {
  font-size: 11px;
  font-family: "DM Mono", monospace;
  letter-spacing: 0.2em;
  color: #939998;
  text-align: center;
}
@media (max-width: 670px) {
  .work-num {
    grid-row: 1/-1;
    align-self: flex-start;
    padding-top: 3px;
    justify-self: end;
  }
}

.work-title {
  font-family: "Archivo", sans-serif;
  font-weight: 200;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.01em;
  color: #19191a;
}

.work-tags {
  display: flex;
  flex-direction: row;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #939998;
  text-align: right;
  font-family: "DM Mono", monospace;
}
@media (max-width: 670px) {
  .work-tags {
    flex-direction: row;
    grid-row: 2;
    grid-column: 2;
    gap: 6px;
  }
}

#about {
  background: #19191a;
  padding: clamp(24px, 1vw, 36px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 12px);
  align-items: start;
  min-height: 100vh;
}
@media (max-width: 670px) {
  #about {
    grid-template-rows: repeat(4, auto);
  }
}

.about-img, .about-img-mobile {
  width: 100%;
  height: 100%;
  grid-column: 2/4;
  grid-row: 2/-1;
  -o-object-position: 30% 30%;
     object-position: 30% 30%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 670px) {
  .about-img, .about-img-mobile {
    display: none;
  }
}

.about-img-mobile {
  display: none;
}
@media (max-width: 670px) {
  .about-img-mobile {
    display: block;
    padding-top: clamp(24px, 1vw, 36px);
    padding-bottom: clamp(24px, 1vw, 36px);
  }
}

.about-text {
  color: #939998;
  grid-row: 2/4;
  grid-column: 4/6;
  align-self: start;
}
@media (max-width: 670px) {
  .about-text {
    grid-row: 2/-1;
    grid-column: 2/-1;
  }
}

.about-heading {
  font-size: 48px;
  font-weight: 200;
  font-family: "Archivo", sans-serif;
  color: #eef5f4;
  -moz-column-span: all;
       column-span: all;
  -moz-column-break-after: column;
       break-after: column;
  margin-bottom: 12px;
  line-height: 1;
}
.about-heading em {
  font-family: "Instrument Serif", serif;
  color: #c5203b;
  font-size: 53px;
}

.about-body, .mini-text-description p {
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  letter-spacing: normal;
  padding-bottom: clamp(8px, 1vw, 12px);
  letter-spacing: 0.03em;
}
.about-body em, .mini-text-description p em {
  font-family: "Instrument Serif", serif;
  color: #eef5f4;
  font-size: 17px;
  letter-spacing: 0.04em;
}
@media (max-width: 670px) {
  .about-body p, .mini-text-description p p {
    padding-bottom: 0px;
  }
}

/* -- CONTACT SECTION */
#contact {
  background: #c5203b;
  padding: 120px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: auto;
}
#contact::before {
  content: "CONTACT";
  font-family: "Archivo", sans-serif;
  font-size: clamp(120px, 20vw, 280px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 670px) {
  #contact::before {
    transform: translate(-50%, -50%) rotate(90deg);
    left: 10%;
    font-size: 5rem;
  }
}
#contact::before {
  opacity: 0.12;
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  color: #19191a;
}

.contact-heading {
  font-family: "Archivo", sans-serif;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.8;
  font-weight: 350;
  color: #eef5f4;
  position: relative;
  margin-bottom: 20px;
}
.contact-heading em {
  font-family: "Instrument Serif", serif;
  color: #eef5f4;
  opacity: 1;
}

.contact-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #eef5f4;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  opacity: 0.6;
}

.contact-email {
  font-family: "Archivo", sans-serif;
  font-size: clamp(20px, 3vw, 36px);
  letter-spacing: 0.06em;
  color: #eef5f4;
  text-decoration: none;
  position: relative;
  border-bottom: 1px solid;
  border-color: #eef5f4;
  padding-bottom: 4px;
  transition: border-color 0.2s;
  animation-name: email-hello;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.contact-email:hover {
  border-color: #eef5f4;
}

@keyframes email-hello {
  0% {
    transform: translateY(30%);
  }
  50% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(30%);
  }
}
footer {
  background: #19191a;
  padding: clamp(24px, 1vw, 36px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(10, 10, 10, 0.12);
}

.footer-copy, .footer-links a {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #939998;
  font-family: "DM Mono", monospace;
  align-self: flex-start;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
.footer-links a {
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #eef5f4;
}
@media (max-width: 670px) {
  .footer-links {
    flex-direction: column;
    gap: calc(2 * clamp(8px, 1vw, 12px));
  }
}

@keyframes single-project-hero-line {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes single-project-eyebrow-line {
  0% {
    opacity: 0;
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes single-project-hero-content {
  0% {
    opacity: 0;
    transform: translateY(40%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
#single-project-hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 1vw, 36px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 12px);
  background: #eef5f4;
  transition: background 0.4s;
}
@media (max-width: 670px) {
  #single-project-hero {
    grid-template-rows: 0.33fr 1fr 0.66fr 1fr;
  }
}

.single-project-title-tile {
  grid-row: 2/5;
  grid-column: 1/5;
  align-self: start;
  opacity: 1;
  animation: single-project-hero-content 0.85s ease-in-out 0s 1 normal both;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
@media (max-width: 670px) {
  .single-project-title-tile {
    grid-column: 1/-1;
  }
}

.single-project-title {
  font-family: "Archivo", sans-serif;
  line-height: 1;
  font-size: clamp(3rem, 5vw + 2rem, 6rem);
  font-weight: 300;
  color: #19191a;
}

.single-project-index {
  grid-row: 1;
  grid-column: 1/-1;
  font-size: 11px;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  color: #939998;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 12px);
  align-self: end;
  letter-spacing: 0.2em;
  animation: single-project-eyebrow-line 0.85s ease-in-out 0s 1 normal both;
}
.single-project-index::before {
  content: "";
  display: block;
  width: 72px;
  height: 1px;
  background: #939998;
  opacity: 0.5;
}

.single-project-subtitle {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.5rem, 2.5vw + 1rem, 3rem);
  text-transform: lowercase;
  color: #939998;
  font-weight: 100;
}

.single-project-divider {
  grid-row: 3;
  grid-column: 1/-1;
  border-bottom: 1px solid;
  border-bottom-color: #939998;
  animation: single-project-hero-line 0.85s ease-in-out 0.85s 1 normal both;
}

.single-project-details {
  grid-row: 4;
  grid-column: 1/-1;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  gap: calc(clamp(8px, 1vw, 12px) / 2);
  color: #19191a;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 100;
}
@media (max-width: 670px) {
  .single-project-details {
    grid-template-columns: auto 1fr;
    grid-template-rows: repeat(4, auto);
  }
}

@media (max-width: 670px) {
  .single-project-details-content {
    display: none;
  }
}

.single-project-details-title {
  color: #939998;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding-top: 0.3em;
}

.single-project-details-year, .single-project-details-year-mobile {
  grid-row: 1;
  grid-column: 1;
  animation: single-project-hero-content 0.45s ease-in-out 0.85s 1 normal both;
}

.single-project-details-year-mobile {
  display: none;
  grid-column: 2;
}
@media (max-width: 670px) {
  .single-project-details-year-mobile {
    display: block;
  }
}

.single-project-details-scope, .single-project-details-scope-mobile {
  grid-row: 1;
  grid-column: 2;
  animation: single-project-hero-content 0.45s ease-in-out 1.06s 1 normal both;
}
@media (max-width: 670px) {
  .single-project-details-scope, .single-project-details-scope-mobile {
    grid-row: 2;
    grid-column: 1;
  }
}

.single-project-details-scope-mobile {
  display: none;
  grid-column: 2;
}
@media (max-width: 670px) {
  .single-project-details-scope-mobile {
    display: block;
  }
}

.single-project-details-client, .single-project-details-client-mobile {
  grid-row: 1;
  grid-column: 3;
  animation: single-project-hero-content 0.45s ease-in-out 1.275s 1 normal both;
}
@media (max-width: 670px) {
  .single-project-details-client, .single-project-details-client-mobile {
    grid-row: 3;
    grid-column: 1;
  }
}

.single-project-details-client-mobile {
  display: none;
  grid-column: 2;
}
@media (max-width: 670px) {
  .single-project-details-client-mobile {
    display: block;
  }
}

.single-project-details-brief, .single-project-details-brief-mobile {
  grid-row: 1;
  grid-column: 4;
  animation: single-project-hero-content 0.45s ease-in-out 1.48s 1 normal both;
}
@media (max-width: 670px) {
  .single-project-details-brief, .single-project-details-brief-mobile {
    grid-row: 4;
    grid-column: 1;
  }
}

.single-project-details-brief-mobile {
  display: none;
  grid-column: 2;
}
@media (max-width: 670px) {
  .single-project-details-brief-mobile {
    display: block;
  }
}

.single-project-gallery-image, .single-project-gallery-mobile-top img, .single-project-gallery-mobile-bottom-2 img, .single-project-gallery-mobile-bottom img, .single-project-gallery-bottom-right img, .single-project-gallery-bottom-left img, .single-project-gallery-top img, .single-project-cover img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

.single-project-cover {
  height: 50vh;
}
#single-project-overview {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 1vw, 36px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 12px);
  background: #19191a;
}
@media (max-width: 670px) {
  #single-project-overview {
    grid-template-rows: repeat(4, auto);
  }
}

.single-project-overview-text {
  grid-row: 2/5;
  grid-column: 2/-1;
  align-items: center;
  align-self: start;
}
.single-project-overview-text p {
  font-size: clamp(1.4rem, 1.7vw + 1rem, 2.6rem);
  font-family: "Archivo", sans-serif;
  color: #eef5f4;
  line-height: 1.2;
  margin-bottom: clamp(24px, 1vw, 36px);
  font-weight: 100;
}
.single-project-overview-text p em {
  color: #c5203b;
  font-size: clamp(1.6rem, 1.7vw + 1.2rem, 2.8rem);
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

#single-project-gallery, #single-project-gallery-mobile {
  min-height: 100vh;
  max-height: 130vh;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: clamp(24px, 1vw, 36px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto repeat(3, 1fr);
  gap: clamp(8px, 1vw, 12px);
  background: #eef5f4;
}
@media (max-width: 670px) {
  #single-project-gallery, #single-project-gallery-mobile {
    display: none;
  }
}

.single-project-execution {
  grid-row: 2;
  grid-column: 2/4;
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: clamp(8px, 1vw, 12px);
}
@media (max-width: 670px) {
  .single-project-execution {
    grid-row: 1;
    grid-column: 2/-1;
    align-self: center;
  }
}

.single-project-execution-eyebrow {
  grid-row: 1;
  grid-column: 1;
  display: flex;
  flex-direction: row;
  align-self: start;
  font-size: 11px;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  color: #939998;
  text-align: left;
  justify-content: flex-end;
  align-items: flex-end;
  letter-spacing: 0.2em;
  position: relative;
  gap: clamp(8px, 1vw, 12px);
  margin-right: calc(-1 * clamp(8px, 1vw, 12px));
}
.single-project-execution-eyebrow::after {
  content: "";
  display: block;
  width: 1px;
  height: 96px;
  background: #939998;
  opacity: 0.4;
}
@media (max-width: 670px) {
  .single-project-execution-eyebrow {
    letter-spacing: 0.1em;
  }
}

.single-project-execution-text p, .single-project-gallery-mobile-execution-1 p, .single-project-gallery-mobile-execution-2 p {
  font-size: 16pt;
  font-family: "Archivo", sans-serif;
  font-weight: 100;
  color: #19191a;
  margin-bottom: 12px;
}

.single-project-gallery-top {
  grid-row: 1/3;
  grid-column: 4/-1;
}
@media (max-width: 670px) {
  .single-project-gallery-top {
    grid-row: 2;
    grid-column: 1/-1;
  }
}

.single-project-gallery-bottom-left {
  grid-row: 3/-1;
  grid-column: 1/5;
}
.single-project-gallery-bottom-right {
  grid-row: 3/-1;
  grid-column: 5/-1;
}
#single-project-gallery-mobile {
  display: none;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
@media (max-width: 670px) {
  #single-project-gallery-mobile {
    display: grid;
    gap: clamp(8px, 1vw, 12px);
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, auto);
  }
}

.single-project-gallery-mobile-execution-1, .single-project-gallery-mobile-execution-2 {
  grid-column: 2/-1;
}
.single-project-gallery-mobile-execution-1 p, .single-project-gallery-mobile-execution-2 p {
  margin-bottom: 0;
}

.single-project-gallery-mobile-top, .single-project-gallery-mobile-bottom-2, .single-project-gallery-mobile-bottom {
  grid-row: 3;
  grid-column: 2/-1;
  padding-bottom: clamp(8px, 1vw, 12px);
  padding-top: clamp(8px, 1vw, 12px);
}
.single-project-gallery-mobile-execution-2 {
  grid-row: 4;
}

.single-project-gallery-mobile-bottom {
  grid-row: 5;
}

.single-project-gallery-mobile-bottom-2 {
  grid-row: 6;
}

#single-project-pullquote {
  background: #19191a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(24px, 1vw, 36px);
}

.single-project-pullquote-qm {
  color: #c5203b;
}

.single-project-pullquote-text {
  width: 66vw;
  padding-top: 5vw;
  padding-bottom: 5vw;
  font-family: "Instrument Serif", serif;
  text-align: center;
  font-size: clamp(36pt, 4vw, 42pt);
  color: #eef5f4;
  font-style: italic;
  position: relative;
  -o-object-position: center;
     object-position: center;
}

.single-project-pullquote-text-attr {
  font-family: monospace;
  text-transform: uppercase;
  color: #939998;
  font-size: 10pt;
  font-style: normal;
  text-align: right;
}

/* -- NEXT PROJECT */
#single-project-next {
  background: #c5203b;
  padding: clamp(24px, 1vw, 36px);
  height: 50vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  text-decoration: none;
}
#single-project-next::before {
  content: "NEXT";
  font-family: "Archivo", sans-serif;
  font-size: clamp(120px, 18vw, 240px);
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  letter-spacing: -0.02em;
}

.single-project-next-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #eef5f4;
}

.single-project-next-title {
  font-family: "Archivo", sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 300;
  line-height: 0.9;
  color: #eef5f4;
  letter-spacing: -0.02em;
  text-align: left;
}

@keyframes sp-arrow {
  0% {
    transform: translateX(30%);
  }
  50% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(30%);
  }
}
@keyframes sp-arrow-hover {
  100% {
    transform: translateX(30%);
  }
}
.single-project-next-arrow {
  font-family: "Archivo", sans-serif;
  font-size: 64px;
  color: #eef5f4;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.3s;
  position: relative;
  animation: sp-arrow 3s ease-in-out 0s infinite normal both;
}

#single-project-next:hover .single-project-next-arrow {
  animation: sp-arrow-hover 0.1s ease-in 0s 1 normal both;
  opacity: 1;
}

/* -- TYPOGRAPHY SECTION */
#typography {
  background: #19191a;
  color: #eef5f4;
  padding: 120px 48px;
  overflow: hidden;
}

.typo-header {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 236, 226, 0.3);
  margin-bottom: 80px;
}

.typo-specimen {
  border-bottom: 1px solid rgba(240, 236, 226, 0.08);
  padding: 40px 0;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: baseline;
  gap: 32px;
  cursor: none;
  transition: background 0.2s;
  padding-left: 0;
  padding-right: 0;
}

.typo-specimen:hover {
  background: rgba(240, 236, 226, 0.02);
}

.typo-spec-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 236, 226, 0.3);
  align-self: center;
}

.typo-spec-sample {
  overflow: hidden;
}

.typo-spec-meta {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 236, 226, 0.2);
  align-self: center;
  text-align: right;
  white-space: nowrap;
}

.ts-display {
  font-family: "Instrument Serif", serif;
  font-size: clamp(56px, 8vw, 104px);
  font-weight: 600;
  line-height: 0.9;
  color: #eef5f4;
  letter-spacing: -0.02em;
}

.ts-display-italic {
  font-family: "Instrument Serif", serif;
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  color: rgba(240, 236, 226, 0.6);
  letter-spacing: -0.02em;
}

.ts-body-text {
  font-family: "Instrument Serif", serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(240, 236, 226, 0.5);
  max-width: 640px;
}

.ts-caption {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 300;
  color: rgba(240, 236, 226, 0.35);
  line-height: 1.7;
  max-width: 480px;
}

.ts-headline {
  font-family: "Archivo", sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.01em;
  line-height: 1;
  color: #eef5f4;
}

.color-palette {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid rgba(240, 236, 226, 0.08);
}

.palette-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240, 236, 226, 0.3);
  margin-bottom: 24px;
}

.swatches {
  display: flex;
  gap: 2px;
}

.swatch {
  flex: 1;
  height: 56px;
  display: flex;
  align-items: flex-end;
  padding: 8px 10px;
  position: relative;
}

.swatch-name {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#page-404-content {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: none;
  background: #19191a;
  overflow: hidden;
  text-decoration: none;
}
#page-404-content svg {
  fill: #c5203b;
  margin-bottom: calc(2 * clamp(24px, 1vw, 36px));
}

#e404_logo {
  height: clamp(7rem, 11.1vw + 4.5rem, 15rem);
  width: clamp(7rem, 11.1vw + 4.5rem, 15rem);
}

.page-404-logo {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
}

.page-404-4 {
  font-size: clamp(7rem, 11.1vw + 4.5rem, 15rem);
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  color: #939998;
  padding-bottom: 5%;
}

#page-404-text h1 {
  width: 66vw;
  text-align: center;
  color: #eef5f4;
  font-size: clamp(2rem, 2.8vw + 1.4rem, 4rem);
  font-weight: 200;
  font-family: "Archivo", sans-serif;
  animation: single-project-hero-content 0.85s ease-in-out 0s 1 normal both;
}
#page-404-text h2 {
  width: 66vw;
  text-align: center;
  color: #939998;
  font-size: clamp(1rem, 0.7vw + 0.8rem, 1.5rem);
  font-weight: 200;
  font-family: "DM Mono", monospace;
  padding-top: 1rem;
  animation-name: e404-hello;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-delay: 0.42s;
  animation-iteration-count: infinite;
}

@keyframes e404-hello {
  0% {
    transform: translateY(20%);
  }
  50% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(20%);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slow {
  transition-duration: 1.2s;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

[data-reveal] {
  opacity: 0;
  will-change: opacity, transform;
}

[data-reveal=up] {
  transform: translateY(40px);
}

[data-reveal=down] {
  transform: translateY(-20px);
}

[data-reveal=fade] {
  transform: none;
}

[data-reveal=clip] {
  transform: translateY(100%);
  display: block;
}

.clip-wrap {
  overflow: hidden; /* hides the text until it rises in */
  display: block;
}

/* Split — each word or line staggers in independently */
[data-reveal=split] {
  transform: translateY(60px) skewY(4deg);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal][data-delay="1"] {
  transition-delay: 0.1s;
}

[data-reveal][data-delay="2"] {
  transition-delay: 0.2s;
}

[data-reveal][data-delay="3"] {
  transition-delay: 0.3s;
}

[data-reveal][data-delay="4"] {
  transition-delay: 0.45s;
}

[data-reveal][data-delay="5"] {
  transition-delay: 0.6s;
}

[data-reveal][data-delay=hero-1] {
  transition-delay: 0.3s;
}

[data-reveal][data-delay=hero-2] {
  transition-delay: 0.55s;
}

[data-reveal][data-delay=hero-3] {
  transition-delay: 0.8s;
}

[data-reveal][data-delay=hero-4] {
  transition-delay: 1s;
}

#privacy {
  min-height: 100vh;
  display: grid;
  padding: clamp(24px, 1vw, 36px);
  display: grid;
  grid-template-columns: repeat(6, auto);
  grid-template-rows: repeat(4, auto);
  gap: clamp(8px, 1vw, 12px);
}

.privacy-title {
  grid-row: 1;
  grid-column: 2/-1;
  color: #eef5f4;
  font-family: "Archivo", sans-serif;
  font-size: 48px;
  font-weight: 400;
  align-self: center;
}

.privacy-heading, .privacy-heading-3, .privacy-heading-2, .privacy-heading-1 {
  grid-column: 2;
  color: #eef5f4;
  font-family: "Archivo", sans-serif;
  font-size: 28px;
}

.privacy-heading-1 {
  grid-row: 2;
}

.privacy-heading-2 {
  grid-row: 3;
}

.privacy-body, .privacy-body-3, .privacy-body-2, .privacy-body-1 {
  grid-column: 3/-1;
  color: #eef5f4;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.privacy-body-1 {
  grid-row: 2;
}

.privacy-body-2 {
  grid-row: 3;
}
.privacy-body-2 ul {
  list-style-type: "—";
}

.privacy-heading-3 {
  grid-row: 4;
}

.privacy-body-3 {
  grid-row: 4;
}

#mini-hero {
  min-height: 100vh;
  display: grid;
  overflow: hidden;
  padding: clamp(24px, 1vw, 36px);
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: clamp(8px, 1vw, 12px);
  background: #eef5f4;
}

.mini-title-tile {
  grid-row: 2;
  grid-column: 1/-1;
  align-self: end;
  opacity: 1;
  animation: single-project-hero-content 0.85s ease-in-out 0s 1 normal both;
}

.mini-description {
  grid-row: 3/-1;
  grid-column: 1/3;
  font-family: "Manrope", sans-serif;
}
.mini-description p {
  font-size: 18px;
  margin-bottom: 0.6em;
}
.mini-description {
  animation: single-project-hero-content 0.85s ease-in-out 0s 1 normal both;
}

#mini-archive {
  background: #19191a;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 1vw, 36px);
}

.mini-post {
  display: flex;
  flex-direction: column;
}

.mini-title {
  color: #eef5f4;
  grid-row: 1;
  grid-column: 1;
  border-top: solid 1px rgba(147, 153, 152, 0.5);
}
.mini-title h1 {
  font-family: "Archivo", sans-serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
}
.mini-title h2 {
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  font-size: 12px;
  color: #939998;
  font-weight: 100;
  letter-spacing: 0.15em;
}

.mini-text-description {
  grid-row: 1;
  grid-column: 2/4;
}
.mini-text-description p {
  color: #939998;
}

.mini-image-wrap {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mini-image, .mini-image-mobile {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.mini-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1;
  gap: clamp(8px, 1vw, 12px);
  overflow: hidden;
  flex: 1;
}

.mini-index {
  color: #939998;
}

.mini-image-wrap-mobile {
  width: 100%;
  height: 100%;
  display: none;
}

.mini-image-mobile {
  margin-top: clamp(8px, 1vw, 12px);
  margin-bottom: clamp(24px, 1vw, 36px);
}

/* -- OVERLAY  */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(25, 25, 26, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* -- INNER  */
.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.open .lightbox-inner {
  transform: scale(1);
}

/* -- IMAGE  */
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

/* -- CAPTION  */
.lightbox-caption {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* -- CLOSE BUTTON  */
.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #eef5f4;
  font-size: 32px;
  line-height: 1;
  cursor: none;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 8px;
}

.lightbox-close:hover {
  opacity: 1;
}

@media (max-width: 670px) {
  nav {
    padding: 20px 20px;
  }
  /* hide desktop links, show toggle */
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-back {
    display: none;
  }
  .mini-description {
    grid-column: 1/5;
  }
  .mini-image-wrap {
    display: none;
  }
  .mini-text-description {
    grid-column: 3/-1;
  }
  .mini-title {
    grid-column: 1/3;
  }
  .mini-wrap {
    gap: clamp(24px, 1vw, 36px);
  }
  .mini-image-wrap-mobile {
    display: initial;
  }
}/*# sourceMappingURL=main.css.map */