@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wdth,wght@75..100,400;75..100,500&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --ink: #090909;
  --muted: #959595;
  --paper: #ffffff;
  --game-bg: #d9d9d9;
  --content-width: 963px;
  --page-gutter: clamp(32px, 18.12vw, 274px);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Instrument Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  transition:
    background-color 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    color 900ms ease;
}

body.is-night {
  --ink: #f4f1ed;
  --paper: #11141d;
}

a {
  color: inherit;
}

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

.custom-cursor {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid rgb(255 255 255 / 92%);
  border-radius: 50%;
  background: rgb(72 72 72 / 34%);
  box-shadow: 0 3px 9px rgb(24 24 24 / 28%);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    opacity 120ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.custom-cursor.is-clicking {
  background: rgb(48 48 48 / 62%);
  box-shadow: 0 2px 7px rgb(18 18 18 / 34%);
  transform: translate(-50%, -50%) scale(0.88);
}

.sound-cursor-note {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  padding: 8px 11px;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 999px;
  background: rgb(245 245 245 / 90%);
  color: rgb(50 50 50 / 78%);
  font: 500 12px/1 "Instrument Sans", sans-serif;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  box-shadow: 0 5px 14px rgb(25 25 25 / 12%);
  backdrop-filter: blur(7px);
  pointer-events: none;
  transform: translate(4px, 5px) scale(0.94);
  transform-origin: top left;
  transition:
    opacity 180ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sound-cursor-note.is-visible {
  opacity: 1;
  transform: translate(4px, 5px) scale(1);
}

@media (pointer: fine) {
  body,
  a,
  button,
  input,
  select,
  textarea {
    cursor: none;
  }
}

@media (pointer: coarse) {
  .custom-cursor {
    display: none;
  }
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 42px;
  left: 50%;
  transform: translateX(-50%);
}

.nav-pill {
  --active-index: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 108px);
  align-items: center;
  width: 340px;
  height: 44px;
  padding: 5px 7px;
  overflow: hidden;
  border: 1px solid rgb(20 20 20 / 8%);
  border-radius: 999px;
  background: rgb(245 245 245 / 68%);
  box-shadow: 0 4px 14px rgb(24 24 24 / 7%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition:
    background-color 700ms ease,
    border-color 700ms ease,
    box-shadow 700ms ease;
}

.nav-pill::after {
  content: none;
}

.nav-highlight {
  position: absolute;
  top: 5px;
  left: 7px;
  width: 108px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgb(20 20 20 / 7%);
  background: rgb(255 255 255 / 76%);
  box-shadow: 0 2px 6px rgb(24 24 24 / 6%);
  transform: translateX(calc(var(--active-index) * 108px));
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 700ms ease,
    border-color 700ms ease;
}

body.is-night .nav-pill {
  border-color: rgb(255 255 255 / 10%);
  background: rgb(20 22 29 / 76%);
  box-shadow: 0 5px 16px rgb(0 0 0 / 24%);
}

body.is-night .nav-highlight {
  border-color: rgb(255 255 255 / 12%);
  background: rgb(255 255 255 / 10%);
}

.nav-link {
  position: relative;
  z-index: 1;
  padding: 7px 0 6px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  opacity: 0.9;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(0, 1fr);
  gap: 0;
  align-items: start;
  min-height: 770px;
  width: min(calc(100% - 64px), var(--content-width));
  max-width: none;
  margin: 0 auto;
  padding: 195px 0 0;
}

.hero-copy {
  padding-top: 126px;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.03;
  animation: hero-copy-reveal 1.15s cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
  will-change: filter, opacity, transform;
}

.hero h1 em {
  background: linear-gradient(90deg, #6b90cd 24%, #fbbe7a 68%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 400;
}

.role-wave {
  position: relative;
  z-index: 1;
  display: inline-block;
  white-space: nowrap;
}

.role-wave > span {
  display: inline-block;
  color: #a18fb4;
  color: color-mix(
    in srgb,
    #6b90cd calc((14 - var(--letter-index)) * 7.142%),
    #fbbe7a
  );
  animation: role-letter-wave 480ms cubic-bezier(0.34, 1.3, 0.64, 1)
    calc(1.05s + (var(--letter-index) * 28ms)) both;
  will-change: transform;
}

.role-wave.is-replaying > span {
  animation: role-letter-wave 480ms cubic-bezier(0.34, 1.3, 0.64, 1)
    calc(var(--letter-index) * 28ms) both;
}

.role-wave__space {
  width: 0.22em;
}

.hero h1 u {
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

@keyframes role-letter-wave {
  0% {
    filter: brightness(1);
    text-shadow: 0 0 0 rgb(255 244 221 / 0%);
    transform: translateY(0) scale(1);
  }

  38% {
    filter: brightness(1.18);
    text-shadow: 0 0 6px rgb(255 244 221 / 38%);
    transform: translateY(-6px) scale(1.035);
  }

  72% {
    filter: brightness(1.04);
    text-shadow: 0 0 2px rgb(255 244 221 / 14%);
    transform: translateY(1px) scale(0.995);
  }

  100% {
    filter: brightness(1);
    text-shadow: 0 0 0 rgb(255 244 221 / 0%);
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-copy-reveal {
  from {
    opacity: 0;
    filter: blur(9px);
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.portrait {
  position: relative;
  justify-self: end;
  width: 400px;
  height: 720px;
  overflow: hidden;
}

.portrait-fallback {
  width: 497px;
  max-width: none;
  height: 716px;
  object-fit: cover;
  transform: translate(-216px, -94px);
  transition: opacity 500ms ease;
}

.portrait-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: blur(14px);
  transform: translateY(12px) scale(0.985);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.portrait.is-model-ready .portrait-fallback {
  opacity: 0;
}

.portrait.is-model-ready .portrait-canvas {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.model-controls {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 270px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 82%);
  border-radius: 18px;
  background: rgb(239 239 239 / 92%);
  box-shadow: 0 10px 30px rgb(35 35 35 / 14%);
  color: #292929;
  font-family: var(--sans);
  backdrop-filter: blur(18px);
}

.model-controls__toggle {
  display: flex;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  justify-content: space-between;
  background: transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.model-controls__body {
  max-height: min(70vh, 590px);
  padding: 0 14px 14px;
  overflow: auto;
}

.model-controls.is-collapsed .model-controls__body {
  display: none;
}

.model-controls label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 10px;
  margin: 8px 0;
  font-size: 12px;
}

.model-controls output {
  color: #666;
  font-variant-numeric: tabular-nums;
}

.model-controls input[type="range"] {
  grid-column: 1 / -1;
  width: 100%;
  accent-color: #7d9ed2;
}

.model-controls fieldset {
  margin: 12px 0;
  padding: 8px 10px 6px;
  border: 1px solid rgb(50 50 50 / 12%);
  border-radius: 12px;
}

.model-controls legend {
  padding: 0 5px;
  font-size: 12px;
  font-weight: 600;
}

.model-controls__color {
  align-items: center;
}

.model-controls input[type="color"] {
  width: 42px;
  height: 27px;
  padding: 2px;
  border: 1px solid rgb(50 50 50 / 16%);
  border-radius: 7px;
  background: white;
}

.model-controls__reset {
  width: 100%;
  margin-top: 7px;
  padding: 8px;
  border: 1px solid rgb(50 50 50 / 15%);
  border-radius: 10px;
  background: rgb(255 255 255 / 64%);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.model-controls p {
  margin: 8px 0 0;
  color: #777;
  font-size: 10px;
  text-align: center;
}

.work-section {
  width: min(calc(100% - 64px), var(--content-width));
  max-width: none;
  margin: 0 auto;
  padding: 26px 0 0;
}

.work-section h2 {
  margin: 0 0 23px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

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

.project-card {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.project-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 14px;
  background: #f3f1f5;
  isolation: isolate;
}

.project-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card--cavlry .project-image {
  width: 160.24%;
  max-width: none;
  height: 106.21%;
  transform: translate(-20.12%, -5.93%);
}

.project-info {
  display: grid;
  gap: 6px;
  padding: 12px 2px 0;
}

.project-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
}

.project-title img {
  width: 17px;
  height: 17px;
  opacity: 0.72;
}

.project-subtitle {
  min-height: 1.2em;
  color: rgb(45 45 45 / 58%);
  font-size: 12px;
  line-height: 1.2;
}

.project-card:hover .project-image,
.project-card:focus-visible .project-image {
  transform: scale(1.025);
}

.project-card--cavlry:hover .project-image,
.project-card--cavlry:focus-visible .project-image {
  transform: translate(-20.12%, -5.93%) scale(1.025);
}

.project-card:focus-visible {
  outline: 3px solid #6b90cd;
  outline-offset: 4px;
}

.scroll-reveal {
  opacity: 0;
  filter: blur(9px);
  transform: translateY(22px);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: filter, opacity, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.farewell {
  width: min(calc(100% - 64px), var(--content-width));
  max-width: none;
  margin: 162px auto 0;
  padding: 29px 0 46px;
  border-top: 1px solid #313131;
  background-clip: content-box;
  font-family: var(--serif);
  font-size: 19px;
}

.farewell p {
  margin: 0;
}

.minigame {
  display: none;
  min-height: 418px;
  place-items: center;
  padding: 64px 24px;
  background: var(--game-bg);
}

.minigame-content {
  width: min(779px, 100%);
  font-size: 26px;
  line-height: 1.02;
}

.minigame-content p {
  margin: 0;
}

.minigame-kicker {
  margin-bottom: 50px !important;
  font-family: var(--serif);
  font-size: 19px;
  text-align: center;
}

@media (max-width: 900px) {
  :root {
    --page-gutter: clamp(24px, 6vw, 54px);
  }

  .site-header {
    top: 28px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
    gap: 24px;
    min-height: 780px;
    padding-top: 168px;
  }

  .hero-copy {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: clamp(34px, 5vw, 40px);
  }

  .portrait {
    width: 100%;
    height: 530px;
  }

  .portrait-fallback {
    transform: translate(-48%, -118px);
  }

  .farewell {
    margin-top: 120px;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: fixed;
    top: 16px;
  }

  .nav-pill {
    grid-template-columns: repeat(3, 92px);
    width: 286px;
  }

  .nav-highlight {
    width: 92px;
    transform: translateX(calc(var(--active-index) * 92px));
  }

  .nav-link {
    font-size: 18px;
  }

  .hero {
    display: flex;
    width: min(calc(100% - 48px), var(--content-width));
    min-height: 100svh;
    padding-top: 140px;
    flex-direction: column;
  }

  .hero-copy {
    display: contents;
  }

  .hero h1 {
    order: 1;
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.03;
  }

  .portrait {
    order: 2;
    align-self: center;
    width: 230px;
    height: 450px;
    margin-top: 24px;
  }

  .portrait-fallback {
    width: 493px;
    height: 711px;
    transform: translate(-214px, -94px);
  }

  .work-section {
    width: min(calc(100% - 48px), var(--content-width));
    padding-top: 0;
  }

  .work-section h2 {
    font-size: 24px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-grid {
    gap: 28px;
  }

  .project-title {
    font-size: 19px;
  }

  .farewell {
    width: min(calc(100% - 48px), var(--content-width));
    margin-top: 88px;
    padding-top: 28px;
    padding-bottom: 40px;
    font-size: 21px;
  }

  .minigame {
    min-height: 440px;
  }

  .minigame-content {
    font-size: 25px;
  }

  .minigame-kicker {
    margin-bottom: 48px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav-highlight,
  .project-image {
    transition: none;
  }

  .hero h1 {
    animation: none;
    will-change: auto;
  }

  .role-wave > span {
    animation: none;
    will-change: auto;
  }

  .role-wave.is-replaying > span {
    animation: none;
  }

  .scroll-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* Editorial hero: the sentence flows around MiniMe on wide screens. */
.hero-statement__fragment {
  display: inline;
}

@media (min-width: 901px) {
  .hero {
    position: relative;
    isolation: isolate;
    display: block;
    width: min(calc(100% - 64px), var(--content-width));
    min-height: 850px;
    padding: 0;
  }

  .hero::before,
  .hero::after {
    position: absolute;
    z-index: 0;
    left: 50%;
    width: min(720px, 78vw);
    content: "";
    pointer-events: none;
    transform: translateX(-50%);
  }

  .hero::before {
    bottom: 250px;
    height: 220px;
    background: radial-gradient(
      ellipse at 50% 100%,
      rgb(255 157 101 / 48%) 0%,
      rgb(255 195 151 / 34%) 30%,
      rgb(212 184 205 / 18%) 56%,
      transparent 76%
    );
    filter: blur(18px);
    opacity: 0;
    animation: hero-sunrise-glow 2400ms cubic-bezier(0.22, 1, 0.36, 1)
      180ms forwards;
  }

  .hero::after {
    top: 600px;
    height: 250px;
    background: linear-gradient(
      180deg,
      rgb(255 164 111 / 25%) 0%,
      rgb(249 196 166 / 19%) 35%,
      rgb(196 192 211 / 11%) 70%,
      transparent 100%
    );
    filter: blur(20px);
    opacity: 0;
    animation: hero-sunrise-glow 2600ms cubic-bezier(0.22, 1, 0.36, 1)
      260ms forwards;
  }

  .hero-copy {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 0;
    pointer-events: none;
  }

  .hero h1 {
    position: absolute;
    inset: 0;
    font-size: clamp(38px, 3.5vw, 48px);
    line-height: 0.98;
  }

  .hero-statement__fragment,
  .hero .role-wave {
    position: absolute;
    white-space: nowrap;
  }

  .hero-statement__intro {
    top: 322px;
    left: 100px;
  }

  .hero .role-wave {
    top: 322px;
    right: 90px;
    pointer-events: auto;
  }

  .hero-statement__curiosity {
    top: 374px;
    left: 70px;
  }

  .hero-statement__storytelling {
    top: 374px;
    right: 70px;
  }

  .hero-statement__ideas {
    top: 426px;
    left: 60px;
  }

  .hero-statement__craft {
    top: 426px;
    right: 0;
  }

  .hero-statement__worth {
    top: 478px;
    left: 190px;
  }

  .hero-statement__remembering {
    top: 478px;
    right: 70px;
  }

  .hero .portrait {
    position: absolute;
    top: 220px;
    z-index: 2;
    justify-self: auto;
  }

  .sun-toggle {
    position: absolute;
    z-index: 5;
    top: 474px;
    left: calc(50% + 106px);
    width: 48px;
    height: 48px;
    padding: 0;
    overflow: visible;
    border: 0;
    background: transparent;
    opacity: 0;
    transform: scale(0.78);
    transition:
      opacity 500ms ease,
      transform 500ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 700ms ease;
  }

  .sun-toggle.is-ready {
    opacity: 1;
    transform: scale(1);
  }

  .sun-toggle:hover {
    transform: scale(1.14) rotate(4deg);
  }

  .sun-toggle__canvas {
    display: block;
    width: 100%;
    height: 100%;
  }

}

@keyframes hero-sunrise-glow {
  from {
    opacity: 0;
    translate: 0 28px;
    scale: 0.82 0.55;
  }

  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@media (max-width: 900px) {
  .sun-toggle {
    display: none;
  }
}

/* Studio — open notebook canvas */
.studio-page {
  height: 100vh;
  overflow: hidden;
  overscroll-behavior: none;
  background: #f8f8f6;
}

.studio-page .nav-pill {
  --active-index: 1;
}

.studio-viewport {
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  overscroll-behavior: none;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.studio-viewport::-webkit-scrollbar {
  display: none;
}

.studio-viewport.is-dragging {
  user-select: none;
}

.studio-canvas {
  position: relative;
  width: 10000px;
  height: 7600px;
  background-color: #f8f8f6;
  background-image: radial-gradient(circle, rgb(122 122 122 / 24%) 1.15px, transparent 1.25px);
  background-size: 22px 22px;
}

.studio-title {
  position: absolute;
  top: 3680px;
  left: 4860px;
  z-index: 2;
  display: grid;
  gap: 10px;
  width: max-content;
  color: #262626;
  font-family: "Dawning of a New Day", cursive;
  line-height: 1;
  transform: rotate(-2deg);
}

.studio-title__name {
  font-size: 42px;
}

.studio-title__subtitle {
  color: rgb(38 38 38 / 58%);
  font-family: "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.045em;
}

.studio-piece {
  position: absolute;
  width: max-content;
  margin: 0;
  transform-origin: center center;
  transition: translate 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-piece:hover {
  translate: 0 -14px;
}

.studio-piece > :first-child {
  transform-origin: center center;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-piece:hover > :first-child {
  transform: rotate(1.4deg) scale(1.012);
}

.studio-placeholder {
  width: 340px;
  height: 224px;
  background: #d7d7d7;
}

.studio-piece p {
  margin: 12px 0 0;
  color: #575757;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.studio-piece-year {
  margin-left: 14px;
  color: rgb(52 52 52 / 55%);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.studio-piece--photo {
  top: 2900px;
  left: 5760px;
  rotate: -3deg;
}

.studio-pixel-art {
  display: block;
  width: 430px;
  height: 215px;
  object-fit: cover;
  image-rendering: pixelated;
  box-shadow: 0 10px 25px rgb(28 35 48 / 16%);
}

.studio-piece--motion {
  top: 2850px;
  left: 4940px;
  rotate: 8deg;
}

.studio-piece--keshi {
  z-index: 5;
  outline: none;
  isolation: isolate;
  pointer-events: none;
}

.studio-keshi-fan {
  position: relative;
  width: 230px;
  height: 330px;
  isolation: isolate;
}

.studio-piece--keshi:hover > .studio-keshi-fan,
.studio-piece--keshi:focus-within > .studio-keshi-fan {
  transform: none;
}

.studio-keshi-card {
  position: absolute;
  inset: 0;
  display: block;
  width: 230px;
  height: 330px;
  border-radius: 2px;
  box-shadow: 0 13px 30px rgb(11 19 26 / 18%);
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transform-origin: 50% 94%;
  transition:
    opacity 250ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 400ms cubic-bezier(0.22, 1, 0.36, 1),
    scale 400ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 400ms ease;
}

.studio-keshi-cover {
  z-index: 7;
  opacity: 1;
  pointer-events: auto;
}

.studio-piece--keshi:hover .studio-keshi-card,
.studio-piece--keshi:focus-within .studio-keshi-card {
  opacity: 1;
  pointer-events: auto;
}

.studio-piece--keshi:hover .studio-keshi-cover,
.studio-piece--keshi:focus-within .studio-keshi-cover {
  transform: translate(-116px, 4px) rotate(-14deg) scale(0.88);
}

.studio-piece--keshi:hover .studio-keshi-card--two,
.studio-piece--keshi:focus-within .studio-keshi-card--two {
  transform: translate(-72px, -18px) rotate(-9deg) scale(0.88);
}

.studio-piece--keshi:hover .studio-keshi-card--three,
.studio-piece--keshi:focus-within .studio-keshi-card--three {
  transform: translate(-27px, -31px) rotate(-4deg) scale(0.88);
}

.studio-piece--keshi:hover .studio-keshi-card--four,
.studio-piece--keshi:focus-within .studio-keshi-card--four {
  transform: translate(24px, -31px) rotate(3deg) scale(0.88);
}

.studio-piece--keshi:hover .studio-keshi-card--five,
.studio-piece--keshi:focus-within .studio-keshi-card--five {
  transform: translate(74px, -18px) rotate(9deg) scale(0.88);
}

.studio-piece--keshi:hover .studio-keshi-card--six,
.studio-piece--keshi:focus-within .studio-keshi-card--six {
  transform: translate(122px, 4px) rotate(15deg) scale(0.88);
}

.studio-piece--keshi .studio-keshi-card:hover {
  z-index: 12;
  translate: 0 -13px;
  scale: 1.035;
  box-shadow: 0 20px 38px rgb(11 19 26 / 24%);
}

.studio-keshi-caption {
  position: relative;
  z-index: 14;
  display: flex;
  align-items: baseline;
  gap: 10px;
  pointer-events: none;
}

.studio-keshi-caption strong {
  color: #41464c;
  font-weight: 500;
}

.studio-piece--design {
  top: 3900px;
  left: 4250px;
  rotate: 4deg;
}

.studio-image-stack {
  position: relative;
  width: 380px;
  height: 294px;
  isolation: isolate;
}

.studio-image-stack img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgb(28 35 30 / 16%);
  transition:
    opacity 520ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 650ms ease;
}

.studio-image-stack__photo {
  z-index: 1;
  opacity: 0;
  transform: translate(0, 0) rotate(0deg) scale(0.96);
}

.studio-image-stack__cover {
  z-index: 2;
  transform: translate(0, 0) rotate(0deg);
}

.studio-piece--nectar:hover .studio-image-stack__photo,
.studio-piece--nectar:focus .studio-image-stack__photo {
  z-index: 3;
  opacity: 1;
  transform: translate(64px, -76px) rotate(5deg) scale(1.03);
  box-shadow: 0 18px 38px rgb(28 35 30 / 22%);
}

.studio-piece--nectar:hover .studio-image-stack__cover,
.studio-piece--nectar:focus .studio-image-stack__cover {
  transform: translate(-42px, -24px) rotate(-3deg);
  box-shadow: 0 17px 34px rgb(28 35 30 / 20%);
}

.studio-piece--nectar:focus-visible {
  outline: 1px solid rgb(35 35 35 / 48%);
  outline-offset: 12px;
}

.studio-piece--nectar > p {
  position: relative;
  z-index: 4;
}

.studio-nectar-caption {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.studio-nectar-caption strong {
  color: #464b47;
  font-weight: 500;
}

.studio-nectar-caption > span:not(.studio-piece-year) {
  color: rgb(70 75 71 / 66%);
  font-size: 12px;
}

.studio-nectar-caption .studio-piece-year {
  margin-left: 2px;
}

.studio-nectar-subtitle {
  max-width: 380px;
  margin-top: 5px !important;
  color: rgb(58 78 65 / 72%) !important;
  font: 400 12px/1.35 "Instrument Sans", sans-serif !important;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 320ms ease 80ms,
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}

.studio-piece--nectar:hover .studio-nectar-subtitle,
.studio-piece--nectar:focus-within .studio-nectar-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.studio-piece--sound {
  top: 3110px;
  left: 4090px;
  rotate: -6deg;
}

.studio-piece--unwritten {
  isolation: isolate;
  outline: none;
}

.studio-piece--unwritten::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -105px -110px -74px -145px;
}

.studio-piece--unwritten:focus-visible {
  outline: 1px solid rgb(80 66 99 / 38%);
  outline-offset: 12px;
}

.studio-unwritten-stack {
  position: relative;
  width: 360px;
  height: 286px;
  isolation: isolate;
}

.studio-unwritten-stack img,
.studio-unwritten-stack video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgb(37 28 48 / 17%);
  transition:
    opacity 500ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 680ms ease;
}

.studio-unwritten-gameplay {
  z-index: 1;
  opacity: 0;
  transform: translate(0, 0) rotate(0deg) scale(0.95);
}

.studio-unwritten-cover {
  z-index: 2;
  object-position: center;
}

.studio-piece--unwritten:hover .studio-unwritten-gameplay,
.studio-piece--unwritten:focus-within .studio-unwritten-gameplay {
  z-index: 5;
  opacity: 1;
  transform: translate(52px, -72px) rotate(4deg) scale(1.03);
  box-shadow: 0 19px 40px rgb(37 28 48 / 25%);
}

.studio-piece--unwritten:hover .studio-unwritten-cover,
.studio-piece--unwritten:focus-within .studio-unwritten-cover {
  transform: translate(-38px, -20px) rotate(-3deg);
}

.studio-audio-chip {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px 7px 8px;
  border: 1px solid rgb(78 62 103 / 18%);
  border-radius: 999px;
  background: rgb(252 249 255 / 94%);
  color: #514467;
  font: 500 12px/1 "Instrument Sans", sans-serif;
  letter-spacing: 0.01em;
  opacity: 0;
  box-shadow: 0 7px 18px rgb(45 32 62 / 15%);
  transform: translate(0, 0) rotate(0deg) scale(0.72);
  transform-origin: center;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    color 260ms ease,
    background-color 260ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-audio-chip__icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #ddd1f2;
  font-family: Georgia, serif;
  font-size: 17px;
}

.studio-audio-chip--forest {
  top: 46px;
  left: 8px;
}

.studio-audio-chip--library {
  top: 188px;
  right: 2px;
}

.studio-piece--unwritten:hover .studio-audio-chip,
.studio-piece--unwritten:focus-within .studio-audio-chip {
  opacity: 1;
  pointer-events: auto;
}

.studio-piece--unwritten:hover .studio-audio-chip--forest,
.studio-piece--unwritten:focus-within .studio-audio-chip--forest {
  transform: translate(-112px, -48px) rotate(-9deg) scale(1);
}

.studio-piece--unwritten:hover .studio-audio-chip--library,
.studio-piece--unwritten:focus-within .studio-audio-chip--library {
  transform: translate(54px, 26px) rotate(8deg) scale(1);
}

.studio-audio-chip:hover,
.studio-audio-chip.is-playing {
  background: #5c4b73;
  color: #fff;
}

.studio-audio-chip.is-playing .studio-audio-chip__icon {
  background: #f0cdeb;
  color: #493a5b;
}

.studio-play-link {
  position: absolute;
  z-index: 6;
  top: 135px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px 7px 8px;
  border: 1px solid rgb(78 62 103 / 18%);
  border-radius: 999px;
  background: rgb(252 249 255 / 94%);
  color: #514467;
  font: 500 12px/1 "Instrument Sans", sans-serif;
  letter-spacing: 0.01em;
  text-decoration: none;
  opacity: 0;
  box-shadow: 0 7px 18px rgb(45 32 62 / 15%);
  transform: translate(0, 0) rotate(0deg) scale(0.72);
  transform-origin: center;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    color 260ms ease,
    background-color 260ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-play-link__icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #ddd1f2;
  font-size: 13px;
}

.studio-piece--unwritten:hover .studio-play-link,
.studio-piece--unwritten:focus-within .studio-play-link {
  opacity: 1;
  transform: translate(-120px, 80px) rotate(-5deg) scale(1);
  pointer-events: auto;
}

.studio-play-link:hover,
.studio-play-link:focus-visible {
  background: #5c4b73;
  color: #fff;
  outline: none;
}

.studio-play-link:hover .studio-play-link__icon,
.studio-play-link:focus-visible .studio-play-link__icon {
  background: #ddd1f2;
  color: #493a5b;
}

.studio-unwritten-caption {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.studio-unwritten-caption strong {
  color: #464046;
  font-weight: 500;
}

.studio-unwritten-caption > span:not(.studio-piece-year) {
  color: rgb(70 64 70 / 66%);
  font-size: 12px;
}

.studio-unwritten-caption .studio-piece-year {
  margin-left: 2px;
}

.studio-unwritten-subtitle {
  position: relative;
  z-index: 7;
  max-width: 360px;
  margin-top: 5px !important;
  color: rgb(86 71 96 / 72%) !important;
  font: 400 12px/1.35 "Instrument Sans", sans-serif !important;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 320ms ease 80ms,
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}

.studio-piece--unwritten:hover .studio-unwritten-subtitle,
.studio-piece--unwritten:focus-within .studio-unwritten-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.studio-piece--three-d {
  top: 3550px;
  left: 5970px;
  rotate: -4deg;
}

.studio-piece--labyrinth {
  z-index: 4;
  outline: none;
  isolation: isolate;
  pointer-events: none;
}

.studio-labyrinth-cover {
  pointer-events: auto;
}

.studio-labyrinth-stack {
  position: relative;
  width: 360px;
  aspect-ratio: 16 / 10;
  isolation: isolate;
}

.studio-piece--labyrinth:hover > .studio-labyrinth-stack,
.studio-piece--labyrinth:focus-within > .studio-labyrinth-stack {
  transform: none;
}

.studio-labyrinth-stack > img,
.studio-labyrinth-gameplay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  box-shadow: 0 15px 34px rgb(21 25 24 / 17%);
  transform-origin: center;
  transition:
    opacity 300ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease;
}

.studio-labyrinth-gameplay {
  z-index: 2;
  overflow: hidden;
  background: #1e1811;
  opacity: 0;
  pointer-events: none;
  transform: translate(15px, 8px) rotate(1deg) scale(0.97);
}

.studio-labyrinth-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-labyrinth-sound {
  z-index: 7;
}

.studio-labyrinth-play-link {
  border-color: rgb(98 88 51 / 24%);
  background: rgb(252 250 239 / 95%);
  color: #5f5839;
  box-shadow: 0 7px 18px rgb(55 49 28 / 16%);
}

.studio-labyrinth-play-link .studio-play-link__icon {
  background: #d8cf9e;
  color: #494329;
}

.studio-piece--labyrinth:hover .studio-labyrinth-play-link,
.studio-piece--labyrinth:focus-within .studio-labyrinth-play-link {
  z-index: 8;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-125px, 80px) rotate(-5deg) scale(1);
}

.studio-labyrinth-play-link:hover,
.studio-labyrinth-play-link:focus-visible {
  background: #5f5839;
  color: #fff;
}

.studio-labyrinth-play-link:hover .studio-play-link__icon,
.studio-labyrinth-play-link:focus-visible .studio-play-link__icon {
  background: #e2d9aa;
  color: #494329;
}

.studio-labyrinth-cover {
  z-index: 3;
}

.studio-piece--labyrinth:hover .studio-labyrinth-gameplay,
.studio-piece--labyrinth:focus-within .studio-labyrinth-gameplay {
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
  transform: translate(104px, -58px) rotate(5deg);
}

.studio-piece--labyrinth:hover .studio-labyrinth-cover,
.studio-piece--labyrinth:focus-within .studio-labyrinth-cover {
  transform: translate(-64px, 26px) rotate(-5deg) scale(0.96);
}

.studio-labyrinth-caption {
  position: relative;
  z-index: 7;
  display: flex;
  align-items: baseline;
  gap: 9px;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-piece--labyrinth:hover .studio-labyrinth-caption,
.studio-piece--labyrinth:focus-within .studio-labyrinth-caption {
  transform: translateY(30px);
}

.studio-labyrinth-caption strong {
  color: #474842;
  font-weight: 500;
}

.studio-labyrinth-caption > span:not(.studio-piece-year) {
  color: rgb(66 68 62 / 68%);
  font-size: 12px;
}

.studio-labyrinth-subtitle {
  position: relative;
  z-index: 7;
  max-width: 390px;
  margin-top: 5px !important;
  color: rgb(78 80 69 / 74%) !important;
  font: 400 12px/1.35 "Instrument Sans", sans-serif !important;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 320ms ease 80ms,
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}

.studio-piece--labyrinth:hover .studio-labyrinth-subtitle,
.studio-piece--labyrinth:focus-within .studio-labyrinth-subtitle {
  opacity: 1;
  transform: translateY(30px);
}

.studio-piece--film {
  top: 3270px;
  left: 4560px;
  rotate: 7deg;
}

.studio-piece--nfl-lineup {
  top: 4100px;
  left: 4780px;
  z-index: 4;
  rotate: 4deg;
  outline: none;
  isolation: isolate;
  pointer-events: none;
}

.studio-nfl-player {
  position: relative;
  width: 420px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 2px;
  background: #15171a;
  box-shadow: 0 13px 30px rgb(14 19 26 / 19%);
  pointer-events: auto;
  transition:
    transform 580ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease;
}

.studio-piece--nfl-lineup:hover > .studio-nfl-player,
.studio-piece--nfl-lineup:focus-within > .studio-nfl-player {
  transform: rotate(1deg) scale(1.025);
  box-shadow: 0 20px 40px rgb(14 19 26 / 24%);
}

.studio-nfl-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-nfl-caption {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 9px;
  pointer-events: none;
}

.studio-nfl-caption strong {
  color: #42474e;
  font-weight: 500;
}

.studio-nfl-caption > span:not(.studio-piece-year) {
  color: rgb(64 70 78 / 68%);
  font-size: 12px;
}

.studio-nfl-subtitle {
  position: relative;
  z-index: 3;
  margin-top: 5px !important;
  color: rgb(64 70 78 / 72%) !important;
  font: 400 12px/1.35 "Instrument Sans", sans-serif !important;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 300ms ease 60ms,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1) 60ms;
}

.studio-piece--nfl-lineup:hover .studio-nfl-subtitle,
.studio-piece--nfl-lineup:focus-within .studio-nfl-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.studio-trip-player {
  position: relative;
  width: 400px;
  aspect-ratio: 3000 / 2160;
  overflow: hidden;
  border-radius: 2px;
  background: #252525;
  box-shadow: 0 10px 25px rgb(28 35 48 / 17%);
}

.studio-trip-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.studio-trip-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 54px;
  height: 54px;
  padding: 0;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: 50%;
  background: rgb(255 255 255 / 72%);
  box-shadow: 0 6px 18px rgb(18 18 22 / 19%);
  backdrop-filter: blur(7px);
  transform: translate(-50%, -50%);
  transition:
    opacity 260ms ease,
    scale 360ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 260ms ease;
}

.studio-trip-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #34323a;
}

.studio-trip-play:hover,
.studio-trip-play:focus-visible {
  background: rgb(255 255 255 / 90%);
  scale: 1.06;
  outline: none;
}

.studio-trip-player.is-playing .studio-trip-play {
  opacity: 0;
  scale: 0.86;
  pointer-events: none;
}

.studio-piece--concert {
  top: 3350px;
  left: 5350px;
  z-index: 4;
  rotate: 3deg;
  outline: none;
  isolation: isolate;
  pointer-events: none;
}

.studio-piece--concert:focus-visible {
  outline: 1px solid rgb(31 65 106 / 38%);
  outline-offset: 12px;
}

.studio-concert-stack {
  position: relative;
  z-index: 1;
  width: 250px;
  height: 350px;
  isolation: isolate;
}

.studio-concert-card {
  position: absolute;
  inset: 0;
  display: block;
  width: 250px;
  height: 350px;
  border-radius: 2px;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 25px rgb(8 28 58 / 20%);
  transform: translate(0, 0) rotate(0deg) scale(0.94);
  transform-origin: center;
  transition:
    opacity 360ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 420ms cubic-bezier(0.22, 1, 0.36, 1),
    scale 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 720ms ease;
}

.studio-concert-card--two { z-index: 2; }
.studio-concert-card--three { z-index: 3; }
.studio-concert-card--four { z-index: 4; }
.studio-concert-card--five { z-index: 5; }
.studio-concert-card--six { z-index: 3; }
.studio-concert-card--seven { z-index: 2; }

.studio-concert-cover {
  z-index: 7;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.studio-concert-video-player {
  inset: 65px auto auto -35px;
  z-index: 10;
  width: 320px;
  height: 220px;
  overflow: hidden;
  background: #08152c;
}

.studio-concert-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-concert-sound {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 29px;
  min-height: 29px;
  padding: 5px;
  border: 1px solid rgb(255 255 255 / 58%);
  border-radius: 999px;
  background: rgb(235 235 235 / 72%);
  color: #383838;
  font: 500 10px/1 "Instrument Sans", sans-serif;
  box-shadow: 0 4px 12px rgb(9 13 23 / 16%);
  backdrop-filter: blur(6px);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}

.studio-concert-sound__mark {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: rgb(209 209 209 / 88%);
  font-family: Georgia, serif;
  font-size: 11px;
}

.studio-concert-sound__label:empty {
  display: none;
}

.studio-concert-sound:hover,
.studio-concert-sound:focus-visible,
.studio-concert-sound.is-unmuted {
  padding-right: 8px;
  background: rgb(59 59 59 / 86%);
  color: #fff;
  outline: none;
}

.studio-concert-sound.is-unmuted .studio-concert-sound__mark {
  background: rgb(225 225 225 / 92%);
  color: #333;
}

.studio-concert-track-credit {
  position: absolute;
  z-index: 11;
  top: 294px;
  left: -34px;
  width: 320px;
  margin: 0 !important;
  color: rgb(54 54 54 / 72%) !important;
  font: 400 11px/1.3 "Instrument Sans", sans-serif !important;
  text-align: center;
  rotate: -1deg;
  opacity: 0;
  pointer-events: none;
  transform: translateY(5px);
  transition:
    opacity 260ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-concert-track-credit.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.studio-concert-track-credit a {
  color: #353535;
  text-decoration-color: rgb(53 53 53 / 45%);
  text-underline-offset: 2px;
}

.studio-concert-track-credit a:hover,
.studio-concert-track-credit a:focus-visible {
  color: #000;
  text-decoration-color: currentColor;
  outline: none;
}

.studio-piece--concert:hover .studio-concert-card,
.studio-piece--concert:focus-within .studio-concert-card {
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 18px 38px rgb(8 28 58 / 24%);
}

.studio-piece--concert img.studio-concert-card:hover {
  z-index: 12;
  translate: 0 -13px;
  scale: 1.035;
  box-shadow: 0 23px 46px rgb(8 28 58 / 29%);
}

.studio-piece--concert:hover .studio-concert-card--two,
.studio-piece--concert:focus-within .studio-concert-card--two {
  transform: translate(-250px, -115px) rotate(-10deg) scale(0.72);
}

.studio-piece--concert:hover .studio-concert-card--three,
.studio-piece--concert:focus-within .studio-concert-card--three {
  transform: translate(270px, 5px) rotate(11deg) scale(0.72);
}

.studio-piece--concert:hover .studio-concert-card--four,
.studio-piece--concert:focus-within .studio-concert-card--four {
  transform: translate(60px, -250px) rotate(2deg) scale(0.72);
}

.studio-piece--concert:hover .studio-concert-card--five,
.studio-piece--concert:focus-within .studio-concert-card--five {
  transform: translate(230px, -165px) rotate(8deg) scale(0.72);
}

.studio-piece--concert:hover .studio-concert-card--six,
.studio-piece--concert:focus-within .studio-concert-card--six {
  transform: translate(-120px, -225px) rotate(-6deg) scale(0.72);
}

.studio-piece--concert:hover .studio-concert-card--seven,
.studio-piece--concert:focus-within .studio-concert-card--seven {
  transform: translate(250px, 175px) rotate(7deg) scale(0.72);
}

.studio-piece--concert:hover .studio-concert-video-player,
.studio-piece--concert:focus-within .studio-concert-video-player {
  transform: translate(0, 0) rotate(-1deg) scale(1);
  pointer-events: auto;
}

.studio-piece--concert:hover .studio-concert-cover,
.studio-piece--concert:focus-within .studio-concert-cover {
  transform: translate(-235px, 90px) rotate(-9deg) scale(0.72);
}

.studio-concert-caption {
  position: relative;
  z-index: 8;
}

.studio-concert-subtitle {
  position: relative;
  z-index: 8;
  max-width: 280px;
  margin-top: 6px !important;
  color: rgb(48 75 112 / 72%) !important;
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px !important;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(7px);
  transition:
    opacity 380ms ease 100ms,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1) 100ms;
}

.studio-piece--concert:hover .studio-concert-subtitle,
.studio-piece--concert:focus-within .studio-concert-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.studio-piece--code {
  top: 4010px;
  left: 5650px;
  rotate: -2deg;
}

.studio-piece--squirrel {
  z-index: 4;
  outline: none;
  isolation: isolate;
}

.studio-piece--squirrel::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -24px;
}

.studio-piece--squirrel:focus-visible {
  outline: 1px solid rgb(51 93 101 / 38%);
  outline-offset: 12px;
}

.studio-squirrel-stack {
  position: relative;
  z-index: 1;
  width: 360px;
  height: 270px;
  isolation: isolate;
}

.studio-squirrel-pair,
.studio-squirrel-demo {
  position: absolute;
  inset: 0;
  width: 360px;
  height: 270px;
  transform-origin: center;
  transition:
    opacity 360ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 420ms cubic-bezier(0.22, 1, 0.36, 1),
    scale 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-squirrel-pair {
  opacity: 0;
  pointer-events: none;
}

.studio-squirrel-pair img,
.studio-squirrel-demo video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 11px 27px rgb(31 62 70 / 18%);
}

.studio-squirrel-pair--cover {
  z-index: 4;
  opacity: 1;
}

.studio-squirrel-reference {
  inset: 15% !important;
  z-index: 1;
  width: 70% !important;
  height: 70% !important;
  opacity: 0;
  transform: translate(0, 0) rotate(0deg);
  transition:
    opacity 300ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 560ms ease;
}

.studio-squirrel-pixel {
  z-index: 2;
  image-rendering: pixelated;
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 560ms ease;
}

.studio-squirrel-demo {
  inset: 20px auto auto -30px;
  z-index: 6;
  width: 400px;
  height: 248px;
  overflow: hidden;
  background: #273d3e;
  opacity: 0;
  pointer-events: none;
}

.studio-squirrel-demo video {
  object-fit: cover;
}

.studio-piece--squirrel:hover .studio-squirrel-pair,
.studio-piece--squirrel:focus-within .studio-squirrel-pair,
.studio-piece--squirrel:hover .studio-squirrel-demo,
.studio-piece--squirrel:focus-within .studio-squirrel-demo {
  opacity: 1;
  pointer-events: auto;
}

.studio-piece--squirrel:hover .studio-squirrel-pair--cover,
.studio-piece--squirrel:focus-within .studio-squirrel-pair--cover {
  transform: translate(-55px, 0) rotate(-4deg) scale(0.92);
}

.studio-piece--squirrel:hover .studio-squirrel-pair--building,
.studio-piece--squirrel:focus-within .studio-squirrel-pair--building {
  z-index: 7;
  transform: translate(55px, -150px) rotate(4deg) scale(0.92);
}

.studio-piece--squirrel:hover .studio-squirrel-demo,
.studio-piece--squirrel:focus-within .studio-squirrel-demo {
  transform: translate(var(--squirrel-video-x, -290px), var(--squirrel-video-y, -315px))
    rotate(var(--squirrel-video-rotation, 1deg));
}

.studio-piece--squirrel .studio-squirrel-demo:hover {
  translate: 0 -8px;
  scale: 1.06;
}

.studio-squirrel-pair:hover {
  z-index: 8;
  translate: 0 -10px;
  scale: 1.025;
}

.studio-squirrel-pair:hover .studio-squirrel-reference {
  opacity: 1;
  transform: translate(-270px, 8px) rotate(-4deg);
  box-shadow: 0 18px 37px rgb(31 62 70 / 24%);
}

.studio-squirrel-pair--building:hover .studio-squirrel-reference {
  transform: translate(270px, 8px) rotate(4deg);
}

.studio-squirrel-pair:hover .studio-squirrel-pixel {
  transform: translateY(15px);
  box-shadow: 0 18px 37px rgb(31 62 70 / 22%);
}

.studio-squirrel-caption {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.studio-squirrel-caption strong {
  color: #414848;
  font-weight: 500;
}

.studio-squirrel-caption > span:not(.studio-piece-year) {
  color: rgb(65 72 72 / 68%);
  font-size: 12px;
}

.studio-squirrel-caption .studio-piece-year {
  margin-left: 2px;
}

.studio-squirrel-subtitle {
  position: relative;
  z-index: 9;
  max-width: 360px;
  margin-top: 5px !important;
  color: rgb(62 81 82 / 72%) !important;
  font: 400 12px/1.35 "Instrument Sans", sans-serif !important;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 320ms ease 80ms,
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1) 80ms;
}

.studio-piece--squirrel:hover .studio-squirrel-subtitle,
.studio-piece--squirrel:focus-within .studio-squirrel-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.studio-piece--misc {
  top: 3600px;
  left: 3860px;
  rotate: 5deg;
}

.studio-piece--wave {
  z-index: 5;
  outline: none;
  isolation: isolate;
}

.studio-piece--wave::before {
  position: absolute;
  inset: -260px -270px -300px;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.studio-piece--wave:hover::before,
.studio-piece--wave:focus-within::before {
  pointer-events: auto;
}

.studio-wave-stack {
  position: relative;
  width: 230px;
  height: 330px;
  isolation: isolate;
  transform-origin: center;
}

.studio-piece--wave:hover > .studio-wave-stack,
.studio-piece--wave:focus-within > .studio-wave-stack {
  transform: none;
}

.studio-wave-card {
  position: absolute;
  inset: 0;
  width: 230px;
  height: 330px;
  border-radius: 2px;
  box-shadow: 0 14px 32px rgb(20 25 28 / 15%);
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  transition:
    opacity 230ms ease,
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 420ms cubic-bezier(0.22, 1, 0.36, 1),
    scale 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease;
}

.studio-wave-cover {
  z-index: 10;
  opacity: 1;
  pointer-events: auto;
}

.studio-piece--wave:hover .studio-wave-card,
.studio-piece--wave:focus-within .studio-wave-card {
  opacity: 1;
  pointer-events: auto;
}

.studio-piece--wave:hover .studio-wave-card--two,
.studio-piece--wave:focus-within .studio-wave-card--two {
  transform: translate(-150px, 112px) rotate(-14deg) scale(0.65);
}

.studio-piece--wave:hover .studio-wave-card--three,
.studio-piece--wave:focus-within .studio-wave-card--three {
  transform: translate(-218px, -22px) rotate(-12deg) scale(0.65);
}

.studio-piece--wave:hover .studio-wave-card--four,
.studio-piece--wave:focus-within .studio-wave-card--four {
  transform: translate(-154px, -158px) rotate(-8deg) scale(0.65);
}

.studio-piece--wave:hover .studio-wave-card--five,
.studio-piece--wave:focus-within .studio-wave-card--five {
  transform: translate(0, -216px) rotate(-1deg) scale(0.65);
}

.studio-piece--wave:hover .studio-wave-card--six,
.studio-piece--wave:focus-within .studio-wave-card--six {
  transform: translate(154px, -158px) rotate(8deg) scale(0.65);
}

.studio-piece--wave:hover .studio-wave-card--seven,
.studio-piece--wave:focus-within .studio-wave-card--seven {
  transform: translate(218px, -22px) rotate(12deg) scale(0.65);
}

.studio-piece--wave:hover .studio-wave-card--eight,
.studio-piece--wave:focus-within .studio-wave-card--eight {
  transform: translate(150px, 112px) rotate(14deg) scale(0.65);
}

.studio-piece--wave:hover .studio-wave-cover,
.studio-piece--wave:focus-within .studio-wave-cover {
  transform: translateY(188px) rotate(-1deg) scale(0.74);
}

.studio-piece--wave .studio-wave-card:hover {
  z-index: 14;
  translate: 0 -11px;
  scale: 1.035;
  box-shadow: 0 20px 38px rgb(20 25 28 / 21%);
}

.studio-wave-caption {
  position: relative;
  z-index: 16;
  display: flex;
  align-items: baseline;
  gap: 14px;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-piece--wave:hover .studio-wave-caption,
.studio-piece--wave:focus-within .studio-wave-caption {
  transform: translateY(154px);
}

.studio-wave-caption strong {
  color: #484848;
  font-weight: 500;
}

.studio-gallery-trigger {
  cursor: zoom-in;
}

.studio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  grid-template-columns: minmax(64px, 1fr) minmax(0, 8fr) minmax(64px, 1fr);
  align-items: center;
  background: rgb(0 0 0 / 78%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(7px);
  transition:
    opacity 300ms ease,
    visibility 0s linear 300ms;
}

.studio-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.studio-lightbox__figure {
  display: grid;
  min-width: 0;
  max-height: 92vh;
  justify-items: center;
  margin: 0;
}

.studio-lightbox__image {
  display: block;
  max-width: min(82vw, 1400px);
  max-height: 84vh;
  border-radius: 2px;
  object-fit: contain;
  opacity: 0;
  scale: 0.975;
  box-shadow: 0 28px 80px rgb(0 0 0 / 44%);
  transition:
    opacity 230ms ease,
    scale 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-lightbox__image.is-visible {
  opacity: 1;
  scale: 1;
}

.studio-lightbox__caption {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 14px;
  color: rgb(255 255 255 / 82%);
  font: 400 13px/1.2 "Instrument Sans", sans-serif;
  letter-spacing: 0.01em;
}

.studio-lightbox__count {
  color: rgb(255 255 255 / 52%);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.studio-lightbox__arrow,
.studio-lightbox__close {
  display: grid;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  background: rgb(255 255 255 / 10%);
  color: #fff;
  place-items: center;
  box-shadow: 0 7px 24px rgb(0 0 0 / 18%);
  backdrop-filter: blur(10px);
  transition:
    background-color 220ms ease,
    scale 220ms ease;
}

.studio-lightbox__arrow {
  width: 52px;
  height: 52px;
  justify-self: center;
  font: 300 24px/1 "Instrument Sans", sans-serif;
}

.studio-lightbox__close {
  position: absolute;
  top: 24px;
  right: 26px;
  width: 42px;
  height: 42px;
  font: 300 25px/1 "Instrument Sans", sans-serif;
}

.studio-lightbox__arrow:hover,
.studio-lightbox__arrow:focus-visible,
.studio-lightbox__close:hover,
.studio-lightbox__close:focus-visible {
  background: rgb(255 255 255 / 20%);
  outline: none;
  scale: 1.06;
}

.studio-lightbox-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .studio-lightbox {
    grid-template-columns: 56px minmax(0, 1fr) 56px;
  }

  .studio-lightbox__arrow {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .studio-lightbox__image {
    max-width: calc(100vw - 112px);
    max-height: 78vh;
  }
}

.studio-sticker {
  position: absolute;
  z-index: 3;
  display: block;
  height: auto;
  rotate: var(--sticker-rotation);
  filter: drop-shadow(0 7px 8px rgb(35 39 48 / 13%));
  transform-origin: center center;
  transition:
    translate 480ms cubic-bezier(0.22, 1, 0.36, 1),
    rotate 480ms cubic-bezier(0.22, 1, 0.36, 1),
    scale 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.studio-sticker:hover {
  translate: 0 -8px;
  rotate: calc(var(--sticker-rotation) + 2deg);
  scale: 1.035;
}

.studio-sticker--snoopy {
  --sticker-rotation: -7deg;
  top: 3660px;
  left: 4570px;
  width: 155px;
}

.studio-sticker--baymax {
  --sticker-rotation: 5deg;
  top: 3780px;
  left: 5060px;
  width: 225px;
}

.studio-hint {
  position: fixed;
  z-index: 12;
  right: 24px;
  bottom: 20px;
  margin: 0;
  color: rgb(45 45 45 / 48%);
  font-size: 12px;
  letter-spacing: 0.03em;
  pointer-events: none;
}

.studio-pixel-controls {
  display: none;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: min(310px, calc(100vw - 44px));
  padding: 15px;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 20px;
  background: rgb(244 244 242 / 88%);
  box-shadow: 0 16px 42px rgb(30 34 40 / 15%);
  color: #303030;
  font-family: "Instrument Sans", sans-serif;
  backdrop-filter: blur(18px);
}

.studio-pixel-controls strong {
  display: block;
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: 500;
}

.studio-pixel-controls__axis {
  display: grid;
  grid-template-columns: 18px 1fr 48px;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  font-size: 11px;
}

.studio-pixel-controls__axis output {
  color: rgb(48 48 48 / 62%);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.studio-pixel-controls input[type="range"] {
  width: 100%;
  accent-color: #7f9dd1;
}

.studio-pixel-controls__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 14px;
}

.studio-pixel-controls button {
  min-height: 37px;
  border: 1px solid rgb(52 52 52 / 12%);
  border-radius: 12px;
  background: rgb(255 255 255 / 74%);
  color: inherit;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.studio-sticker-controls {
  display: none;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: min(320px, calc(100vw - 44px));
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 22px;
  background: rgb(244 244 242 / 88%);
  box-shadow: 0 16px 42px rgb(30 34 40 / 15%);
  color: #303030;
  font-family: "Instrument Sans", sans-serif;
  backdrop-filter: blur(18px);
}

.studio-sticker-controls__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 16px 12px;
}

.studio-sticker-controls__header strong {
  font-size: 14px;
  font-weight: 500;
}

.studio-sticker-controls__toggle {
  width: 29px;
  height: 29px;
  border: 0;
  border-radius: 50%;
  background: rgb(255 255 255 / 62%);
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.studio-sticker-controls__body {
  padding: 0 12px 13px;
}

.studio-sticker-controls.is-collapsed .studio-sticker-controls__body {
  display: none;
}

.studio-sticker-controls__sticker {
  margin-bottom: 9px;
  padding: 11px;
  border: 1px solid rgb(52 52 52 / 10%);
  border-radius: 14px;
  background: rgb(255 255 255 / 40%);
}

.studio-sticker-controls__name {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
}

.studio-sticker-controls__axis {
  display: grid;
  grid-template-columns: 18px 1fr 46px;
  gap: 7px;
  align-items: center;
  margin-top: 6px;
  font-size: 11px;
}

.studio-sticker-controls__axis output {
  color: rgb(48 48 48 / 62%);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.studio-sticker-controls input[type="range"] {
  width: 100%;
  accent-color: #7f9dd1;
}

.studio-sticker-controls__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.studio-sticker-controls__actions button {
  min-height: 37px;
  border: 1px solid rgb(52 52 52 / 12%);
  border-radius: 12px;
  background: rgb(255 255 255 / 74%);
  color: inherit;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

@media (max-width: 640px) {
  .studio-hint {
    right: 16px;
    bottom: 14px;
  }
}

/* Future Leaders Initiative case study */

.case-page {
  --case-accent: #935acc;
  --case-width: 707px;
}

.case-page .nav-pill {
  --active-index: 0;
}

.case-container {
  width: min(calc(100% - 48px), var(--case-width));
  margin-inline: auto;
}

.case-hero-stage {
  position: relative;
  height: 908px;
}

.case-hero {
  position: sticky;
  top: 0;
  min-height: 814px;
  overflow: clip;
}

.case-hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-hero__content {
  position: relative;
  z-index: 1;
  min-height: 814px;
  padding-top: 173px;
}

.case-kicker {
  margin: 0 0 10px;
  color: var(--case-accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.case-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.04;
}

.case-hero h1 span {
  color: var(--case-accent);
}

.case-meta {
  display: grid;
  grid-template-columns: 1fr 1.25fr 0.8fr;
  gap: 38px;
  margin: 20px 0 0;
}

.case-meta dt {
  font-size: 19px;
  font-weight: 600;
}

.case-meta dd {
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.25;
}

.case-hero__image {
  width: 100%;
  height: 314px;
  margin-top: 35px;
  border-radius: 16px;
  object-fit: cover;
}

.case-hero-reveal {
  animation: case-hero-reveal 780ms cubic-bezier(0.22, 1, 0.36, 1)
    var(--case-reveal-delay, 120ms) both;
  will-change: filter, opacity, transform;
}

@keyframes case-hero-reveal {
  from {
    opacity: 0;
    filter: blur(9px);
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.case-article {
  position: relative;
  z-index: 2;
  margin-top: -94px;
  padding: 10px 0 96px;
}

.case-section {
  margin-top: 80px;
}

.case-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.08;
}

.case-section h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 600;
}

.case-body,
.case-section > p:not(.case-kicker),
.case-section li,
.reflection-list p,
.comparison-grid p,
.platform-grid {
  font-size: 16px;
  line-height: 1.4;
}

.case-body {
  margin-top: 25px;
}

.case-body p {
  margin: 0 0 16px;
}

.case-body ul,
.platform-grid ul {
  margin: 5px 0 0;
  padding-left: 24px;
}

.goal-list {
  display: grid;
  gap: 27px;
  margin-top: 25px;
}

.goal-list p {
  margin: 7px 0 0;
  font-size: 16px;
  line-height: 1.4;
}

.case-wide-image {
  width: 100%;
  margin-top: 27px;
  border-radius: 16px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 42px;
}

.platform-grid p {
  margin: 18px 0 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 38px;
}

.comparison-grid p {
  margin: 8px 0 0;
  color: #656565;
}

.case-split {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 52px;
}

.case-split > img {
  width: 100%;
  min-height: 402px;
  border-radius: 16px;
  object-fit: cover;
}

.case-split .case-body {
  margin-top: 0;
}

.case-split--reverse {
  grid-template-columns: 1fr 290px;
}

.reflection-list {
  display: grid;
  gap: 34px;
  margin-top: 39px;
}

.reflection-list p {
  margin: 10px 0 0;
}

.case-team-image {
  width: 100%;
  height: 416px;
  margin-top: 88px;
  border-radius: 16px;
  object-fit: cover;
}

.case-thanks {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 26px;
}

@media (max-width: 640px) {
  .case-hero-stage {
    height: auto;
  }

  .case-hero {
    position: relative;
    min-height: auto;
    padding-bottom: 56px;
  }

  .case-hero__content {
    min-height: 0;
    padding-top: 112px;
  }

  .case-hero h1 {
    font-size: 34px;
  }

  .case-meta {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 28px;
  }

  .case-hero__image {
    height: auto;
  }

  .case-section {
    margin-top: 68px;
  }

  .case-article {
    margin-top: 0;
  }

  .platform-grid,
  .comparison-grid,
  .case-split,
  .case-split--reverse {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    gap: 25px;
  }

  .case-split > img {
    min-height: 0;
  }

  .case-split--reverse > img {
    order: -1;
  }

  .case-team-image {
    height: auto;
  }
}

/* About */

.about-page {
  --about-width: 963px;
}

.about-page .nav-pill {
  --active-index: 2;
}

.about-intro {
  position: relative;
  min-height: 933px;
  overflow: hidden;
}

.about-heading {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), 430px);
  margin: 0 auto;
  padding-top: 156px;
  text-align: center;
}

.about-sticker {
  width: 48px;
  height: 53px;
  margin: 0 auto 1px;
  overflow: hidden;
}

.about-sticker img {
  width: 140px;
  max-width: none;
  height: 70px;
  transform: translate(-10px, -13px);
}

.about-heading h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 51px;
  font-weight: 400;
  line-height: 1;
}

.about-heading p {
  max-width: 378px;
  margin: 32px auto 0;
  font-size: 16px;
  line-height: 1.18;
}

.about-heading strong {
  font-weight: 600;
}

.about-hero-reveal {
  opacity: 0.12;
  filter: blur(5px);
  translate: 0 14px;
  animation: about-hero-reveal 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
  will-change: filter, opacity, translate;
}

.about-hero-reveal--one {
  animation-delay: 80ms;
}

.about-hero-reveal--two {
  animation-delay: 170ms;
}

.about-hero-reveal--three {
  animation-delay: 280ms;
}

.about-hero-reveal--four {
  opacity: 1;
  filter: none;
  translate: 0 0;
  animation: none;
  will-change: auto;
}

@keyframes about-hero-reveal {
  to {
    opacity: 1;
    filter: blur(0);
    translate: 0 0;
  }
}

.memory-wash {
  position: absolute;
  top: 275px;
  left: 0;
  width: 100%;
  height: 658px;
  background: linear-gradient(
    180deg,
    rgb(255 255 255 / 50%) 0%,
    rgb(242 226 213 / 50%) 25.5%,
    rgb(253 192 140 / 50%) 39%,
    rgb(254 168 117 / 50%) 52.4%,
    rgb(206 148 138 / 50%) 69.7%,
    rgb(199 201 210 / 50%) 82.7%,
    rgb(255 255 255 / 50%) 100%
  );
  opacity: 0;
  scale: 1 0.28;
  transform-origin: center bottom;
  translate: 0 72px;
  animation: sunrise-wash 3200ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
  will-change: opacity, scale, translate;
}

@keyframes sunrise-wash {
  to {
    opacity: 1;
    scale: 1 1;
    translate: 0 0;
  }
}

.photo-collage {
  position: absolute;
  z-index: 1;
  top: 444px;
  left: 50%;
  width: min(1160px, calc(100% - 32px));
  height: 355px;
  transform: translateX(-50%);
}

.polaroid {
  position: absolute;
  width: 232px;
  height: 296px;
  margin: 0;
  overflow: hidden;
  border: 4px solid #fff;
  background: #fff;
  box-shadow: 0 4px 16px rgb(0 0 0 / 15%);
  opacity: 1;
  translate: 0 0;
  rotate: 0deg;
  animation: polaroid-reveal 680ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition:
    translate 520ms cubic-bezier(0.22, 1, 0.36, 1),
    rotate 520ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: translate, rotate;
}

.polaroid:nth-child(1) {
  animation-delay: 400ms;
}

.polaroid:nth-child(2) {
  animation-delay: 470ms;
}

.polaroid:nth-child(3) {
  animation-delay: 540ms;
}

.polaroid:nth-child(4) {
  animation-delay: 610ms;
}

.polaroid:nth-child(5) {
  animation-delay: 680ms;
}

@keyframes polaroid-reveal {
  from {
    opacity: 0;
    translate: 0 14px;
  }
}

.polaroid:hover {
  translate: 0 -22px;
  rotate: -1.4deg;
  box-shadow: 0 22px 36px rgb(48 37 34 / 23%);
}

.polaroid:nth-child(even):hover {
  rotate: 1.4deg;
}

.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid--one {
  z-index: 2;
  top: 1px;
  left: 0;
  transform: translate(-38px, 25px) rotate(2.9deg) scale(1.1);
}

.polaroid--one img {
  object-position: center;
}

.polaroid--two {
  z-index: 3;
  top: 38px;
  left: 22.5%;
  transform: translate(-50px, 24px) rotate(-2.5deg) scale(1.1);
}

.polaroid--two img {
  object-position: center;
}

.polaroid--three {
  z-index: 5;
  top: 0;
  left: 45.5%;
  transform: translate(-70px, 25px) rotate(2.75deg) scale(1.1);
  background: #090806;
}

.polaroid--three img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: fill;
  transform: none;
}

.polaroid--four {
  z-index: 4;
  top: 42px;
  left: 68%;
  transform: translate(-88px, 19px) rotate(-5.1deg) scale(1.1);
}

.polaroid--four img {
  width: calc(100% + 18px);
  max-width: none;
  object-position: center;
  transform: translateX(-12px);
}

.polaroid--five {
  z-index: 2;
  top: 2px;
  right: 0;
  transform: translate(13px, 25px) rotate(2.7deg) scale(1.1);
}

.polaroid--five img {
  object-position: 58% center;
}

.about-details {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 96px;
  width: min(calc(100% - 64px), var(--about-width));
  min-height: 750px;
  margin: 0 auto;
  padding-top: 39px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 700;
}

.resume-block h2,
.experience-block > h2,
.inspirations-block h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
}

.resume-subtitle {
  margin: 4px 0 0;
  font-family: var(--serif);
  font-size: 26px;
}

.resume-date,
.experience-list p {
  margin: 9px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.skills-block {
  margin-top: 119px;
}

.skills-block > p:not(.eyebrow) {
  max-width: 440px;
  margin: 25px 0 0;
  font-size: 19px;
  line-height: 1.17;
  text-align: justify;
}

.inspirations-block {
  margin-top: 117px;
}

.experience-block > h2 {
  margin-bottom: 27px;
}

.experience-list {
  display: grid;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.experience-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.05;
}

.creative-note {
  margin: 91px 0 0;
  font-size: 19px;
  line-height: 1.16;
}

.gallery-placeholder {
  display: grid;
  min-height: 305px;
  place-items: center start;
  padding: 0 max(32px, calc((100% - var(--about-width)) / 2));
  background: #eaeaea;
}

.gallery-placeholder p {
  margin: 0;
  font-size: 19px;
}

.nostalgia {
  min-height: 900px;
  padding: 82px 32px 110px;
}

.nostalgia-heading,
.nostalgia-copy {
  width: min(100%, 610px);
  margin: 0 auto;
}

.nostalgia-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
}

.nostalgia-heading > p {
  margin: 1px 0 0;
  color: #9f9f9f;
  font-size: 16px;
}

.nostalgia-copy {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  margin-top: 45px;
}

.nostalgia-copy p {
  margin: 0 0 19px;
  font-size: 15px;
  line-height: 1.23;
}

.nostalgia-copy .signature {
  margin-top: 30px;
  font-family: "Dawning of a New Day", cursive;
  font-size: 29px;
}

@media (max-width: 900px) {
  .photo-collage {
    width: 760px;
    transform: translateX(-50%) scale(0.82);
  }

  .about-details {
    gap: 54px;
  }
}

@media (max-width: 640px) {
  .about-intro {
    min-height: 790px;
  }

  .about-heading {
    padding-top: 112px;
  }

  .about-heading h1 {
    font-size: 42px;
  }

  .about-heading p {
    margin-top: 24px;
    font-size: 15px;
  }

  .memory-wash {
    top: 260px;
    height: 530px;
  }

  .photo-collage {
    top: 430px;
    width: 760px;
    transform: translateX(-50%) scale(0.55);
  }

  .about-details {
    grid-template-columns: 1fr;
    gap: 76px;
    width: min(calc(100% - 48px), var(--about-width));
    padding: 54px 0 80px;
  }

  .skills-block,
  .inspirations-block {
    margin-top: 76px;
  }

  .about-details__right {
    display: grid;
    gap: 72px;
  }

  .creative-note {
    margin: 0;
  }

  .gallery-placeholder {
    min-height: 240px;
    padding: 0 24px;
  }

  .nostalgia {
    padding: 70px 24px 90px;
  }

  .nostalgia-copy {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-reveal {
    opacity: 1;
    filter: none;
    translate: 0 0;
    animation: none;
  }

  .polaroid {
    opacity: 1;
    translate: 0 0;
    animation: none;
    transition: none;
  }

  .memory-wash {
    opacity: 1;
    scale: 1;
    translate: 0 0;
    animation: none;
  }
}
