* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #ffffff;
}

body {
  min-height: 100%;
  margin: 0;
  background: #ffffff;
  color: #424346;
  font-family: "STK Bureau", "STK Bureau Sans", Geist, Inter, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

@media (pointer: fine) {
  *,
  *::before,
  *::after {
    cursor: none;
  }

  .cursor-fallback *,
  .cursor-fallback *::before,
  .cursor-fallback *::after {
    cursor: auto;
  }
}

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

main {
  min-height: 100svh;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #ffffff;
}

.project-section {
  width: min(1340px, calc(100vw - 100px));
  margin: 0 auto 360px;
  color: #424346;
}

.project-header {
  --title-blur: 0px;
  --title-opacity: 1;
  --title-y: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  margin-bottom: 32px;
  padding: 0 100px;
}

.project-identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.project-logo {
  width: 18px;
  height: 17px;
  flex: 0 0 auto;
  object-fit: contain;
}

.project-logo--lindy {
  width: 17px;
  height: 17px;
}

.project-logo--quadrant {
  width: 18px;
  height: 18px;
}

.project-logo--windmill {
  width: 20px;
  height: 20px;
}

.project-logo--lassocart {
  width: 28px;
  height: 31px;
}

.project-logo--brainbase {
  width: 18px;
  height: 18px;
}

.project-logo-mask {
  position: relative;
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
}

.project-logo-mask img {
  position: absolute;
  display: block;
  max-width: none;
}

.project-logo-mask--luminoah {
  width: 19px;
  height: 20px;
}

.project-logo-mask--luminoah img {
  top: 0;
  left: 3.19%;
  width: 645.34%;
  height: 93.33%;
}

.project-media-stack--lindy:empty {
  display: none;
}

.project-header--animated .project-logo,
.project-header--animated .project-logo-mask,
.project-header--animated h2 span,
.project-header--animated .project-meta span {
  opacity: var(--title-opacity);
  filter: blur(var(--title-blur));
  transform: translate3d(0, var(--title-y), 0);
  transition:
    opacity 420ms cubic-bezier(0.2, 0, 0, 1),
    filter 520ms cubic-bezier(0.2, 0, 0, 1),
    transform 520ms cubic-bezier(0.2, 0, 0, 1);
  will-change: opacity, filter, transform;
}

.project-header--animated .project-logo {
  transition-delay: 0ms;
}

.project-header--animated h2 span:first-child {
  display: inline-block;
  transition-delay: 28ms;
}

.project-header--animated h2 span:nth-child(2) {
  display: inline-block;
  transition-delay: 64ms;
}

.project-header--animated .project-meta span:first-child {
  display: inline-block;
  transition-delay: 96ms;
}

.project-header--animated .project-meta span:nth-child(2) {
  display: inline-block;
  transition-delay: 124ms;
}

.project-header h2,
.project-meta {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.48px;
  line-height: 32px;
}

.project-header h2 {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-header--animated h2 {
  overflow: visible;
  text-overflow: clip;
}

.project-meta {
  flex: 0 0 auto;
  text-align: right;
  white-space: nowrap;
}

.muted {
  color: #a1a1aa;
}

.project-media-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-shot {
  --media-blur: 0px;
  --media-opacity: 1;
  --media-y: 0px;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #f7f7f8;
  aspect-ratio: 1340 / 946;
}

.project-shot--hero {
  aspect-ratio: 1340 / 1040;
}

.project-shot--luminoah-hero {
  aspect-ratio: 1340 / 894;
}

.project-shot--lassocart-hero {
  aspect-ratio: 1340 / 1040;
}

.project-shot--brainbase-hero {
  aspect-ratio: 1340 / 1040;
}

.project-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.project-shot--paired {
  aspect-ratio: 664 / 650;
}

.project-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-shot--animated img {
  opacity: var(--media-opacity);
  filter: blur(var(--media-blur));
  transform: translate3d(0, var(--media-y), 0) scale(var(--media-scale, 1));
  transition:
    opacity 520ms cubic-bezier(0.2, 0, 0, 1),
    filter 620ms cubic-bezier(0.2, 0, 0, 1),
    transform 680ms cubic-bezier(0.2, 0, 0, 1);
  will-change: opacity, filter, transform;
}

.hero-links {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 2px 6px;
  border-radius: 8px;
  background: transparent;
  color: #848690;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.32px;
  line-height: 24px;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.hero-links a:hover,
.hero-links a:focus-visible {
  background: rgba(66, 67, 70, 0.06);
  color: #424346;
  outline: none;
}

.hero-intro {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #424346;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.48px;
  line-height: 32px;
  text-align: center;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.hero-intro p {
  margin: 0;
}

.hero-intro span {
  color: #424446;
}

.text-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12em;
  color: #424346;
  outline: none;
}

.text-link-label {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #b8b8b8;
  text-decoration-thickness: 6%;
  text-underline-offset: 0.18em;
  transition: text-decoration-color 160ms ease, text-decoration-style 160ms ease;
}

.text-link-corner {
  display: inline-block;
  color: #424446;
  line-height: 1;
}

.text-link:hover .text-link-label,
.text-link:focus-visible .text-link-label {
  text-decoration-style: solid;
  text-decoration-color: #424346;
}

@media (max-width: 760px) {
  .hero-links {
    top: 18px;
    left: 18px;
  }

  .hero-intro {
    width: calc(100% - 36px);
    font-size: 22px;
    line-height: 30px;
    white-space: normal;
  }
}

@media (max-width: 1180px) {
  .project-section {
    width: calc(100vw - 48px);
  }

  .project-header {
    height: auto;
    align-items: flex-start;
    padding: 0;
  }
}

@media (max-width: 760px) {
  .project-section {
    width: calc(100vw - 24px);
    margin-bottom: 216px;
  }

  .project-header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }

  .project-header h2,
  .project-meta {
    font-size: 18px;
    letter-spacing: -0.36px;
    line-height: 24px;
  }

  .project-header h2 {
    white-space: normal;
  }

  .project-meta {
    padding-left: 28px;
    text-align: left;
  }

  .project-media-stack {
    gap: 12px;
  }

  .project-pair {
    grid-template-columns: 1fr;
  }

  .project-shot {
    border-radius: 16px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .project-header--animated .project-logo,
  .project-header--animated .project-logo-mask,
  .project-header--animated h2 span,
  .project-header--animated .project-meta span {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .project-shot--animated img {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

}
