:root {
  --white: #f4f3ee;
  --black: #050505;
  --muted: rgba(244, 243, 238, 0.62);
  --border: rgba(244, 243, 238, 0.22);
  --page-x: clamp(18px, 2.35vw, 38px);
  --page-y: clamp(20px, 2vw, 32px);
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
}

a,
button { color: inherit; font: inherit; }
a { text-decoration: none; }
button { border: 0; background: none; padding: 0; }

.project-page { min-height: 100vh; }

.project-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: var(--page-y) var(--page-x);
  mix-blend-mode: difference;
  pointer-events: none;
}

.project-header > * { pointer-events: auto; }

.back-link,
.project-brand,
.project-count,
.project-category,
.project-copy dt,
.next-project span,
.mobile-play {
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.project-brand { text-align: center; }
.project-count { justify-self: end; }

.project-hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100svh;
  padding: clamp(74px, 9vw, 120px) var(--page-x) clamp(55px, 6vw, 90px);
  overflow: hidden;
}

.project-player {
  position: relative;
  width: min(88vw, 1500px);
  aspect-ratio: 16 / 9;
  background: #111;
}

.project-player iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

.mobile-play { display: none; }

.project-information {
  padding: 0 var(--page-x) clamp(90px, 10vw, 160px);
}

.project-category {
  margin: 0 0 18px;
  color: var(--muted);
}

.project-heading h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(34px, 4.7vw, 76px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.project-copy {
  align-self: end;
  padding-bottom: 8px;
}

.project-copy > p {
  max-width: 430px;
  margin: 0 0 48px;
  font-size: clamp(18px, 1.5vw, 25px);
  font-weight: 350;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.project-copy dl { margin: 0; }
.project-copy dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 13px 0;
  border-top: 1px solid var(--border);
}
.project-copy dl div:last-child { border-bottom: 1px solid var(--border); }
.project-copy dt { color: var(--muted); }
.project-copy dd { margin: 0; font-size: 13px; }

.next-project {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  min-height: 58vh;
  padding: var(--page-x);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.next-project span {
  position: absolute;
  top: var(--page-x);
  left: var(--page-x);
  color: var(--muted);
}

.next-project strong {
  max-width: 1100px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(50px, 7.8vw, 126px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.045em;
}

