@font-face {
  font-family: "Instrument Sans";
  src: url("/assets/brand-locked/fonts/instrument-sans-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --graphite: #1f242a;
  --warm-white: #f6f4ef;
  --relay-teal: #2f6b73;
  --mineral-silver: #a6b6c3;
  --stone: #d8d1c6;
  --deep-admiral: #27395a;
  --ink: #071014;
  --header-height: 82px;
  --page-gutter: clamp(22px, 4.6vw, 76px);
  --copy-width: min(35rem, 41vw);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --hairline: rgba(246, 244, 239, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
  scrollbar-color: rgba(166, 182, 195, 0.48) #071014;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--warm-white);
  font-family: "Instrument Sans", "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 8px;
  background: var(--warm-white);
  color: var(--graphite);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--warm-white);
  outline-offset: 4px;
}

.crisp-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #061014;
  pointer-events: none;
}

.crisp-stage__plates,
.crisp-plate,
.crisp-stage__video,
.crisp-stage__rest-frame,
.crisp-stage__wash,
.crisp-stage__grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.crisp-plate {
  opacity: 0;
  transition: opacity 380ms var(--ease-out);
}

.crisp-plate.is-active {
  opacity: 1;
}

.crisp-plate img,
.crisp-stage__video,
.crisp-stage__rest-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crisp-stage__video {
  z-index: 2;
  opacity: 0;
  transition: opacity 520ms var(--ease-out);
}

.crisp-stage.is-video-ready .crisp-stage__video {
  opacity: 1;
}

.crisp-stage__rest-frame {
  z-index: 3;
  opacity: 0;
  filter: url("#crisp-rest-sharpen") contrast(1.025) saturate(1.015);
  transition: none;
}

.crisp-stage.is-video-ready.is-scroll-settled .crisp-stage__rest-frame.has-frame {
  opacity: 1;
}

.crisp-stage__wash {
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(4, 10, 13, 0.58) 0%, transparent 24%, transparent 68%, rgba(4, 10, 13, 0.42) 100%),
    radial-gradient(circle at 50% 48%, transparent 34%, rgba(2, 7, 9, 0.18) 74%, rgba(2, 7, 9, 0.48) 100%);
}

.crisp-stage__grain {
  z-index: 5;
  opacity: 0.08;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: soft-light;
}

.crisp-stage__journey {
  position: absolute;
  right: var(--page-gutter);
  bottom: 38px;
  z-index: 6;
  width: min(18vw, 220px);
  height: 1px;
  overflow: hidden;
  background: rgba(246, 244, 239, 0.2);
}

.crisp-stage__journey span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--warm-white);
  transform: scaleX(var(--journey-progress, 0));
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  min-height: var(--header-height);
  padding:
    14px
    max(var(--page-gutter), env(safe-area-inset-right))
    14px
    max(var(--page-gutter), env(safe-area-inset-left));
  background: linear-gradient(180deg, rgba(4, 10, 13, 0.86), rgba(4, 10, 13, 0));
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.site-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
}

.site-brand img {
  width: 132px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  color: rgba(246, 244, 239, 0.82);
  font-size: 0.76rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a,
.site-header__cta,
.text-link,
.site-footer > a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.site-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--warm-white);
}

.site-header__cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 0;
  color: var(--warm-white);
  font-size: 0.8rem;
  font-weight: 650;
}

body.is-release .chapter-rail,
body.is-release .crisp-stage__journey {
  opacity: 0;
  pointer-events: none;
}

body.is-release .story-chapter--final .copy-field {
  opacity: 0;
  transform: translate3d(0, -12px, 0);
  pointer-events: none;
}

.chapter-rail {
  position: fixed;
  top: 50%;
  right: calc(var(--page-gutter) - 12px);
  z-index: 25;
  display: grid;
  gap: 2px;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.chapter-rail button {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(246, 244, 239, 0.68);
  cursor: pointer;
  font-size: 0.67rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.chapter-rail button::after {
  content: "";
  position: absolute;
  right: 0;
  width: 9px;
  height: 1px;
  background: currentColor;
  transition: width 220ms var(--ease-out);
}

.chapter-rail button.is-active {
  color: var(--warm-white);
}

.chapter-rail button.is-active::after {
  width: 20px;
}

.chapter-rail button span {
  transform: translateX(-9px);
}

main,
.site-footer {
  position: relative;
  z-index: 10;
}

.story-chapter {
  position: relative;
  min-height: 178svh;
  scroll-margin-top: var(--header-height);
}

.story-chapter--work {
  min-height: 520svh;
}

.story-chapter--process {
  min-height: 195svh;
}

.story-chapter--final {
  min-height: 180svh;
}

.story-chapter__pin {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 48px) var(--page-gutter) 58px;
}

.copy-field {
  --beat-opacity: 1;
  --beat-shift: 0px;
  position: relative;
  width: var(--copy-width);
  max-width: calc(100vw - var(--page-gutter) * 2 - 90px);
  z-index: 2;
  overflow-wrap: anywhere;
}

.js .copy-field {
  opacity: var(--beat-opacity);
  transform: translate3d(0, var(--beat-shift), 0);
  transition: opacity 90ms linear;
  will-change: opacity, transform;
}

.js .copy-field:focus-within {
  opacity: 1;
  transform: none;
}

.copy-field::before {
  content: "";
  position: absolute;
  inset: -15vh -9vw -13vh -7vw;
  z-index: -1;
  opacity: 0.94;
  pointer-events: none;
  background: radial-gradient(ellipse at 34% 50%, rgba(4, 10, 13, 0.84) 0%, rgba(4, 10, 13, 0.55) 42%, transparent 76%);
}

.copy-field--right {
  margin-left: auto;
  margin-right: clamp(66px, 9vw, 150px);
}

.copy-field--right::before {
  inset: -15vh -7vw -13vh -9vw;
  background: radial-gradient(ellipse at 66% 50%, rgba(4, 10, 13, 0.86) 0%, rgba(4, 10, 13, 0.55) 42%, transparent 76%);
}

.copy-field--center-left {
  margin-left: clamp(2vw, 8vw, 120px);
}

.copy-field--hero {
  width: min(39rem, 45vw);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mineral-silver);
  font-size: 0.72rem;
  font-weight: 660;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-weight: 560;
  letter-spacing: -0.046em;
  line-height: 0.98;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.35rem, 6.25vw, 7.4rem);
}

h2 {
  max-width: 11ch;
  font-size: clamp(2.75rem, 5.3vw, 6.2rem);
}

.lede,
.section-intro {
  max-width: 38ch;
  margin: 26px 0 0;
  color: rgba(246, 244, 239, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.58;
}

.actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 680;
  line-height: 1.1;
  text-decoration: none;
}

.button--primary {
  background: var(--warm-white);
  color: var(--graphite);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition:
    background-color 180ms ease,
    transform 180ms var(--ease-out);
}

.button--primary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.button--primary:active {
  transform: translateY(0);
}

.button--primary:focus-visible {
  outline-color: var(--warm-white);
  outline-offset: 5px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(246, 244, 239, 0.82);
  font-size: 0.9rem;
}

.text-link span {
  margin-left: 8px;
}

.discipline-list {
  display: flex;
  gap: 22px;
  margin: 32px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--hairline);
  color: rgba(246, 244, 239, 0.58);
  font-size: 0.72rem;
  font-weight: 620;
  letter-spacing: 0.1em;
  list-style: none;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: var(--page-gutter);
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: rgba(246, 244, 239, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  display: block;
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: rgba(246, 244, 239, 0.24);
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--warm-white);
  animation: scroll-cue 1.8s var(--ease-out) infinite;
  transform: translateX(-100%);
}

@keyframes scroll-cue {
  0%,
  20% {
    transform: translateX(-100%);
  }
  72%,
  100% {
    transform: translateX(100%);
  }
}

.compact-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
}

.compact-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--hairline);
}

.compact-list li > span {
  padding-top: 2px;
  color: rgba(246, 244, 239, 0.64);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.1em;
}

.compact-list h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 640;
  letter-spacing: -0.01em;
}

.compact-list p {
  margin: 5px 0 0;
  color: rgba(246, 244, 239, 0.76);
  font-size: 0.86rem;
  line-height: 1.48;
}

.work-composition {
  width: min(42rem, 48vw);
}

.work-heading h2 {
  max-width: 9ch;
  font-size: clamp(2.5rem, 4.7vw, 5.5rem);
}

.work-stage {
  position: relative;
  min-height: 210px;
  margin-top: 34px;
}

.work-project {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 420ms var(--ease-out);
}

.work-project.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
}

.work-project__type {
  margin: 0 0 10px;
  color: var(--mineral-silver);
  font-size: 0.7rem;
  font-weight: 640;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-project h3 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(1.75rem, 3.1vw, 3.7rem);
  font-weight: 570;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.work-project h3 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.work-project > p:last-child {
  max-width: 42ch;
  margin: 16px 0 0;
  color: rgba(246, 244, 239, 0.7);
  font-size: 0.96rem;
  line-height: 1.52;
}

.work-controls {
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}

.work-count {
  margin: 0;
  color: rgba(246, 244, 239, 0.82);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
}

.work-count [data-work-current] {
  color: var(--warm-white);
}

.work-progress {
  height: 1px;
  overflow: hidden;
  background: rgba(246, 244, 239, 0.18);
}

.work-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--warm-white);
  transform: scaleX(var(--work-progress, 0.1667));
  transform-origin: left;
  transition: transform 380ms var(--ease-out);
}

.work-buttons {
  display: flex;
  gap: 2px;
}

.work-buttons button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: rgba(7, 16, 20, 0.42);
  color: var(--warm-white);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease;
}

.work-buttons button:hover {
  border-color: rgba(246, 244, 239, 0.5);
  background: rgba(246, 244, 239, 0.1);
}

.work-buttons button:disabled {
  border-color: rgba(246, 244, 239, 0.1);
  color: rgba(246, 244, 239, 0.26);
  cursor: not-allowed;
}

.offer-price {
  position: relative;
  margin: 0 0 18px;
  font-size: 1.1rem;
  font-weight: 660;
}

.offer-price__visual {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.offer-price__visual del {
  color: rgba(246, 244, 239, 0.44);
  text-decoration-thickness: 1px;
}

.offer-price__visual ins {
  color: var(--warm-white);
  font-size: 2rem;
  text-decoration: none;
}

.copy-field--center-left .button {
  margin-top: 30px;
}

.faq-release {
  position: relative;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(380px, 1.28fr);
  gap: clamp(32px, 5vw, 76px);
  min-height: 0;
  padding: 38px var(--page-gutter) 32px;
  border-top: 1px solid rgba(31, 36, 42, 0.12);
  background: rgba(246, 244, 239, 0.95);
  backdrop-filter: blur(18px);
  color: var(--graphite);
  scroll-margin-top: var(--header-height);
}

.faq-release__intro {
  align-self: start;
}

.eyebrow--dark {
  color: var(--relay-teal);
}

.faq-release h2 {
  max-width: 12ch;
  font-size: clamp(2.05rem, 3.2vw, 3.65rem);
}

.faq-release__intro > p:last-child {
  margin: 10px 0 0;
  color: rgba(31, 36, 42, 0.74);
}

.faq-list {
  border-top: 1px solid rgba(31, 36, 42, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(31, 36, 42, 0.16);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 44px;
  align-items: center;
  min-height: 56px;
  padding: 6px 0;
  cursor: pointer;
  font-size: clamp(0.96rem, 1.14vw, 1.1rem);
  font-weight: 580;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--relay-teal);
  font-size: 1.4rem;
  font-weight: 360;
  transition: transform 180ms var(--ease-out);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 55ch;
  margin: -2px 64px 18px 0;
  color: rgba(31, 36, 42, 0.68);
  font-size: 0.92rem;
  line-height: 1.52;
}

.faq-list summary:focus-visible {
  outline-color: var(--relay-teal);
  outline-offset: 4px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding:
    12px
    max(var(--page-gutter), env(safe-area-inset-right))
    max(12px, env(safe-area-inset-bottom))
    max(var(--page-gutter), env(safe-area-inset-left));
  border-top: 1px solid rgba(246, 244, 239, 0.12);
  background: rgba(31, 36, 42, 0.88);
  backdrop-filter: blur(16px);
  color: rgba(246, 244, 239, 0.7);
  font-size: 0.78rem;
}

.site-brand--footer img {
  width: 112px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
}

@media (max-width: 980px) {
  :root {
    --copy-width: min(34rem, 58vw);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .copy-field--right {
    margin-right: 74px;
  }

  .work-composition {
    width: min(40rem, 64vw);
  }

  .faq-release {
    grid-template-columns: minmax(210px, 0.72fr) minmax(340px, 1.28fr);
    gap: 32px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 68px;
    --page-gutter: clamp(18px, 5.2vw, 26px);
    --copy-width: calc(100vw - var(--page-gutter) * 2);
  }

  .crisp-plate img,
  .crisp-stage__video {
    object-position: center center;
  }

  .crisp-stage__wash {
    background:
      linear-gradient(180deg, rgba(4, 10, 13, 0.68) 0%, transparent 24%, transparent 48%, rgba(4, 10, 13, 0.62) 77%, rgba(4, 10, 13, 0.9) 100%),
      radial-gradient(circle at 50% 42%, transparent 24%, rgba(2, 7, 9, 0.16) 70%, rgba(2, 7, 9, 0.48) 100%);
  }

  .crisp-stage__grain {
    opacity: 0.045;
  }

  .site-header {
    padding-block: 10px;
  }

  .site-brand img {
    width: 108px;
  }

  .site-header__cta {
    font-size: 0.73rem;
  }

  .chapter-rail {
    top: auto;
    right: var(--page-gutter);
    bottom: 17px;
    display: flex;
    transform: none;
  }

  .chapter-rail button {
    width: 44px;
    height: 44px;
  }

  .chapter-rail button::after {
    right: auto;
    bottom: 1px;
    width: 8px;
  }

  .chapter-rail button.is-active::after {
    width: 20px;
  }

  .chapter-rail button span {
    transform: none;
  }

  .crisp-stage__journey {
    right: auto;
    left: var(--page-gutter);
    bottom: 35px;
    width: 72px;
  }

  .story-chapter {
    min-height: 170svh;
  }

  .story-chapter--work {
    min-height: 500svh;
  }

  .story-chapter--process {
    min-height: 190svh;
  }

  .story-chapter__pin {
    align-items: flex-end;
    padding:
      calc(var(--header-height) + 30px)
      var(--page-gutter)
      max(92px, calc(70px + env(safe-area-inset-bottom)));
  }

  .copy-field,
  .copy-field--hero,
  .work-composition {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .copy-field::before,
  .copy-field--right::before {
    inset: -16vh -10vw -12vh;
    background: radial-gradient(ellipse at 50% 64%, rgba(4, 10, 13, 0.9) 0%, rgba(4, 10, 13, 0.64) 44%, transparent 78%);
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.1rem, 15vw, 5.2rem);
  }

  h2 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 12.4vw, 4.7rem);
  }

  .lede,
  .section-intro {
    margin-top: 20px;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
  }

  .discipline-list {
    gap: 14px;
    margin-top: 22px;
    padding-top: 14px;
    font-size: 0.63rem;
  }

  .scroll-cue {
    display: none;
  }

  .compact-list {
    margin-top: 25px;
  }

  .compact-list li {
    padding: 13px 0;
  }

  .compact-list p {
    font-size: 0.79rem;
  }

  .work-heading h2 {
    font-size: clamp(2.55rem, 11.8vw, 4.2rem);
  }

  .work-stage {
    min-height: 216px;
    margin-top: 26px;
  }

  .work-project h3 {
    max-width: 13ch;
    font-size: clamp(1.7rem, 8.8vw, 2.7rem);
  }

  .work-project > p:last-child {
    font-size: 0.88rem;
  }

  .work-controls {
    gap: 12px;
  }

  .work-buttons button {
    width: 44px;
  }

  .offer-price {
    margin-bottom: 12px;
  }

  .faq-release {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding-block: 26px 22px;
  }

  .faq-release h2 {
    max-width: 11ch;
    font-size: clamp(2.15rem, 9.6vw, 2.75rem);
  }

  .faq-list summary {
    min-height: 54px;
    font-size: 0.92rem;
  }

  .faq-list details p {
    margin-right: 22px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    justify-items: stretch;
    min-height: 68px;
    padding-block: 10px max(10px, env(safe-area-inset-bottom));
  }

  .site-footer p {
    display: none;
  }

  .site-footer > a:last-child {
    justify-self: end;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .crisp-stage__video,
  .crisp-stage__rest-frame,
  .crisp-stage__grain,
  .crisp-stage__journey,
  .scroll-cue {
    display: none;
  }

  .story-chapter,
  .story-chapter--work,
  .story-chapter--process,
  .story-chapter--final {
    min-height: 100svh;
  }

  .story-chapter__pin {
    position: relative;
  }

  .js .copy-field {
    opacity: 1 !important;
    transform: none !important;
  }

  .work-stage {
    display: grid;
    gap: 28px;
    min-height: 0;
  }

  .work-project {
    position: relative;
    inset: auto;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--hairline);
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .work-project[aria-hidden="true"] {
    display: grid;
  }

  .work-controls {
    display: none;
  }
}

@media (forced-colors: active) {
  .copy-field::before {
    display: none;
  }

  .button,
  .work-buttons button {
    border: 1px solid ButtonText;
  }
}
