:root {
  --ink: #000000;
  --black: #000000;
  --text: #e8e4d8;
  --muted: #a8b0a7;
  --dim: #586158;
  --gold: #c6a24a;
  --page-pad: 56px;
  --header-h: 64px;
  --title: Georgia, "Times New Roman", serif;
  --body: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--text);
  font-family: var(--body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

.progress {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 var(--page-pad);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
  color: var(--text);
}

.brand {
  display: grid;
  gap: 3px;
  font-size: 12px;
  line-height: 1.1;
  color: var(--muted);
}

.brand span:first-child {
  color: var(--text);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}

.nav a {
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}

.nav a.is-active {
  color: var(--text);
  border-color: var(--gold);
}

.category-anchor {
  position: absolute;
  top: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.reel-panel {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-h);
  background: var(--black);
}

.reel-stage {
  position: relative;
  width: 100%;
  height: calc(100svh - var(--header-h));
  overflow: hidden;
  background: var(--black);
  cursor: pointer;
}

.reel-video {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--black);
  object-fit: contain;
}

.reel-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(232, 228, 216, 0.58);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.reel-play:hover {
  background: rgba(0, 0, 0, 0.68);
  transform: translate(-50%, -50%) scale(1.04);
}

.reel-play span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid var(--text);
}

.reel-panel.is-playing .reel-play {
  opacity: 0;
  pointer-events: none;
}

.reel-panel.is-playing .reel-stage {
  cursor: auto;
}

.panel {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.panel > img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
}

.cover > img {
  object-position: 56% center;
  opacity: 0.78;
}

.cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--black) 0 38%, rgba(0, 0, 0, 0.72) 43%, rgba(0, 0, 0, 0.08) 68%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42));
}

.cover-copy {
  position: absolute;
  left: var(--page-pad);
  top: 28vh;
  width: 430px;
}

.kicker,
.index {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.cover h1 {
  margin: 132px 0 0;
  font-size: 54px;
  line-height: 0.95;
  font-weight: 400;
}

.cover h1 em {
  display: block;
  font-family: var(--title);
  font-style: italic;
  font-weight: 400;
}

.cover h1 span {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 30px;
  font-weight: 700;
}

.name {
  margin: 30px 0 0;
  font-size: 18px;
}

.role {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.statement > img {
  object-position: center top;
}

.statement::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: rgba(216, 146, 176, 0.9);
}

.statement-copy {
  position: absolute;
  left: var(--page-pad);
  bottom: 50px;
  z-index: 1;
  color: var(--ink);
}

.statement-copy p {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.15;
}

.statement-copy p:first-child {
  font-family: var(--title);
  font-size: 30px;
  font-style: italic;
}

.statement-copy h2 {
  margin: 30px 0 8px;
  font-size: 16px;
}

.statement-copy h2 span {
  font-weight: 400;
}

.statement-copy .cn {
  font-size: 13px;
}

.hero::after,
.wide::after,
.letterbox::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

.caption {
  position: absolute;
  z-index: 2;
  left: var(--page-pad);
  bottom: 46px;
  width: 460px;
  color: var(--muted);
}

.caption.right {
  left: auto;
  right: var(--page-pad);
  text-align: right;
}

.caption h2,
.caption h3 {
  margin: 8px 0 10px;
  color: var(--text);
  font-size: 32px;
  line-height: 1.05;
}

.caption h3 span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.caption p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.project-title {
  min-height: 56svh;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 96px var(--page-pad);
  background: var(--ink);
}

.project-title h2 {
  margin: 0;
  max-width: 760px;
  font-size: 40px;
  line-height: 1.05;
}

.project-title p:last-child {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.4;
}

.diptych {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 92px var(--page-pad) 120px;
  background: var(--black);
}

.diptych figure {
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.diptych img {
  width: 100%;
  height: 62svh;
  object-fit: cover;
}

.diptych .caption {
  bottom: 42px;
}

.wide > img {
  object-fit: cover;
}

.wide-pair img {
  height: 52svh;
}

.letterbox {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 110px 0;
}

.letterbox > img {
  width: 100%;
  height: auto;
  max-height: 54svh;
  object-fit: cover;
}

.shadow-window {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 18vh 0;
  background: var(--black);
  overflow: hidden;
}

.shadow-window-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.shadow-window-strip img {
  width: 100%;
  height: 46svh;
  object-fit: cover;
}

.shadow-title {
  position: absolute;
  right: var(--page-pad);
  bottom: 18vh;
  z-index: 2;
  color: var(--muted);
  text-align: right;
}

.shadow-title h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 24px;
}

.shadow-title h3 span {
  margin-left: 10px;
  color: var(--muted);
  font-size: 15px;
}

.shadow-title p {
  margin: 0;
  max-width: 360px;
  font-size: 12px;
  line-height: 1.35;
}

.grid-showcase {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 10px;
  padding: 94px var(--page-pad) 126px;
  background: var(--black);
}

.grid-showcase img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}

.nike-pair img {
  height: 66svh;
}

.credits {
  min-height: 100svh;
  padding: 92px var(--page-pad) 72px;
  background: var(--ink);
}

.credits-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 40px;
}

.credits-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.credits-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.credit-columns {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1.18fr 0.82fr;
  gap: 38px;
}

.credit-columns section {
  min-width: 0;
}

.credit-columns h3 {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 400;
}

.credit-columns h3.commercial {
  margin-top: 44px;
}

.credit-columns article {
  margin: 0 0 15px;
}

.credit-columns h4 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.15;
}

.credit-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.28;
}

.brand-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.brand-list li + li {
  margin-top: 12px;
}

.category-empty {
  min-height: 48svh;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 92px var(--page-pad);
  background: var(--ink);
}

.category-empty h1,
.category-empty h2 {
  margin: 0;
  color: var(--text);
  font-size: 38px;
  line-height: 1.05;
}

.quiet-link {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quiet-link a {
  border-bottom: 1px solid var(--gold);
}

@media (max-width: 860px) {
  :root {
    --page-pad: 22px;
    --header-h: 58px;
  }

  .site-header {
    padding-right: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav {
    max-width: 72vw;
    overflow-x: auto;
    gap: 15px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .cover > img {
    object-position: 60% center;
  }

  .cover::before {
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12) 42%, rgba(0, 0, 0, 0.8)),
      linear-gradient(to right, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.02));
  }

  .cover-copy {
    top: auto;
    left: var(--page-pad);
    right: var(--page-pad);
    bottom: 72px;
    width: auto;
  }

  .cover h1 {
    margin-top: 92px;
    font-size: 42px;
  }

  .cover h1 span {
    font-size: 25px;
  }

  .statement::after {
    height: 42%;
  }

  .statement-copy {
    left: var(--page-pad);
    right: var(--page-pad);
    bottom: 42px;
  }

  .statement-copy p:first-child {
    font-size: 25px;
  }

  .statement-copy p {
    font-size: 18px;
  }

  .caption,
  .caption.right {
    left: var(--page-pad);
    right: var(--page-pad);
    bottom: 34px;
    width: auto;
    text-align: left;
  }

  .caption h2,
  .caption h3 {
    font-size: 28px;
  }

  .panel > img {
    min-height: 100svh;
  }

  .reel-play {
    width: 74px;
    height: 74px;
  }

  .reel-play span {
    margin-left: 6px;
    border-top-width: 14px;
    border-bottom-width: 14px;
    border-left-width: 21px;
  }

  .project-title {
    min-height: 48svh;
    padding-top: 88px;
    padding-bottom: 72px;
  }

  .project-title h2 {
    font-size: 34px;
  }

  .project-title p:last-child {
    font-size: 16px;
  }

  .diptych {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 78px var(--page-pad) 150px;
  }

  .diptych img,
  .wide-pair img,
  .nike-pair img {
    height: 43svh;
  }

  .grid-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 78px var(--page-pad) 154px;
  }

  .grid-showcase img {
    min-height: auto;
    height: 34svh;
  }

  .shadow-window {
    min-height: auto;
    padding: 92px 0 160px;
  }

  .shadow-window-strip {
    grid-template-columns: 1fr;
  }

  .shadow-window-strip img {
    height: 34svh;
  }

  .shadow-title {
    left: var(--page-pad);
    right: var(--page-pad);
    bottom: 54px;
    text-align: left;
  }

  .shadow-title h3 {
    font-size: 26px;
  }

  .credits {
    padding-top: 82px;
  }

  .credit-columns {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .credit-columns h4 {
    font-size: 13px;
  }

  .credit-columns p {
    font-size: 12px;
  }
}
