:root {
  --bg: #050505;
  --bg-elevated: #0a0a0a;
  --text: #f5f5f5;
  --text-soft: rgba(245, 245, 245, 0.72);
  --text-muted: rgba(245, 245, 245, 0.48);
  --line: rgba(255, 255, 255, 0.55);
  --g1: #0b3d47;
  --g2: #1f5c54;
  --g3: #4a5f48;
  --g4: #9a5a4f;
  --font-display: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --font-quote: "Instrument Serif", Georgia, "Times New Roman", serif;
  --header-h: 5.5rem;
  --section-y: clamp(3rem, 6.5vw, 4.75rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Atmosphere ---------- */

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: var(--bg);
}

.atmosphere__wash {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  filter: blur(80px);
  opacity: 0.85;
  will-change: transform;
}

.atmosphere__wash--a {
  background:
    radial-gradient(ellipse 55% 50% at 18% 55%, var(--g4) 0%, transparent 62%),
    radial-gradient(ellipse 50% 45% at 78% 40%, var(--g1) 0%, transparent 58%),
    radial-gradient(ellipse 40% 40% at 55% 75%, var(--g2) 0%, transparent 55%);
  animation: wash-drift-a 28s ease-in-out infinite alternate;
}

.atmosphere__wash--b {
  background:
    radial-gradient(ellipse 45% 40% at 70% 70%, var(--g3) 0%, transparent 60%),
    radial-gradient(ellipse 35% 35% at 35% 25%, var(--g1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 40% 80%, rgba(154, 90, 79, 0.7) 0%, transparent 55%);
  opacity: 0.55;
  animation: wash-drift-b 34s ease-in-out infinite alternate;
}

.atmosphere__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, transparent 0%, rgba(5, 5, 5, 0.55) 70%, rgba(5, 5, 5, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.35) 0%, transparent 30%, rgba(5, 5, 5, 0.75) 100%);
}

@keyframes wash-drift-a {
  from {
    transform: translate3d(-3%, -2%, 0) scale(1.05) rotate(-2deg);
  }
  to {
    transform: translate3d(4%, 3%, 0) scale(1.12) rotate(3deg);
  }
}

@keyframes wash-drift-b {
  from {
    transform: translate3d(4%, 2%, 0) scale(1.1) rotate(2deg);
  }
  to {
    transform: translate3d(-5%, -3%, 0) scale(1.05) rotate(-3deg);
  }
}

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: flex-start;
  padding: 0.75rem 1rem 0;
  pointer-events: none;
}

.site-header__brand {
  pointer-events: auto;
  display: block;
  width: min(280px, 48vw);
}

.site-header__brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 24px rgba(0, 0, 0, 0.45));
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 var(--section-y);
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero__figure {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero__figure img {
  width: min(1100px, 100%);
  max-width: 118%;
  max-height: 112svh;
  margin-top: -14vh;
  object-fit: contain;
  object-position: center center;
  opacity: 0.78;
  filter: drop-shadow(0 18px 60px rgba(0, 0, 0, 0.55));
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 88%,
    transparent 100%
  );
  animation: figure-in 1.4s var(--ease) both;
}

@keyframes figure-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(1.03);
  }
  to {
    opacity: 0.78;
    transform: translateY(0) scale(1);
  }
}

.hero__quote {
  position: relative;
  z-index: 3;
  align-self: flex-start;
  margin: 0 0 1.25rem;
  padding: 0 clamp(1rem, 3vw, 2rem);
  width: auto;
  max-width: calc(100% - 2rem);
  animation: rise-in 1s var(--ease) 0.25s both;
}

.hero__quote blockquote {
  margin: 0;
  padding: 0 0 0 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.hero__quote-line {
  margin: 0;
  font-family: var(--font-quote);
  font-style: italic;
  font-size: clamp(1rem, 3vw, 1.75rem);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: #fff;
  -webkit-text-stroke: 0;
  text-shadow:
    0 0 6px rgba(0, 0, 0, 0.95),
    0 0 14px rgba(0, 0, 0, 0.9),
    0 2px 10px rgba(0, 0, 0, 0.85),
    0 6px 22px rgba(0, 0, 0, 0.8),
    0 12px 36px rgba(0, 0, 0, 0.75);
}

/* Each half always stays on its own single line */
.hero__quote-part {
  display: block;
  white-space: nowrap;
}

.marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 1.75rem;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 12%,
    #000 88%,
    transparent 100%
  );
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 56s linear infinite;
  will-change: transform;
}

.marquee__track span {
  flex: none;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 14vw, 9.5rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
  user-select: none;
  text-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
  margin-right: clamp(10rem, 24vw, 20rem);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero__nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 1.25rem;
  animation: rise-in 1s var(--ease) 0.45s both;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0.7rem 1.35rem;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  transition:
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.ghost-btn:hover,
.ghost-btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  outline: none;
}

.ghost-btn:active {
  transform: translateY(1px);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Sections ---------- */

main {
  position: relative;
  z-index: 1;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

.section {
  position: relative;
  z-index: 1;
  padding: var(--section-y) 1.5rem;
  overflow-x: clip;
  max-width: 100%;
}

.section__inner {
  width: min(640px, 100%);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section--about .section__inner {
  /* Match title column width so the | can't overflow/skew right */
  width: min(52rem, 100%);
}

.section__inner--wide {
  width: min(1100px, 100%);
  display: block;
  text-align: center;
}

.section__mark {
  display: block;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.75rem;
  object-fit: contain;
  object-position: center center;
  opacity: 0.9;
}

.section__title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: #fff;
  text-align: center;
  width: 100%;
}

.section--team .section__title {
  font-size: clamp(1.15rem, 3.4vw, 2.85rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Pipe sits on true page center; sides balance around it */
.section__title--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(0.4rem, 1.2vw, 0.75rem);
  width: 100%;
  margin: 0 0 1.1rem;
  font-size: clamp(1.15rem, 3.4vw, 2.85rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.section__title-side {
  min-width: 0;
  white-space: nowrap;
}

.section__title-side--left {
  justify-self: end;
  text-align: right;
}

.section__title-side--right {
  justify-self: start;
  text-align: left;
}

.section__title-pipe {
  justify-self: center;
  opacity: 0.7;
  font-weight: 400;
}

.section__copy,
.section__lede {
  margin: 0 auto;
  max-width: 36rem;
  width: 100%;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-soft);
  text-align: justify;
  text-justify: inter-word;
  text-wrap: pretty;
}

.section__lede {
  margin-bottom: 2.75rem;
  color: var(--text-muted);
}

.section--about {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(5, 5, 5, 0.55) 35%,
    rgba(5, 5, 5, 0.72) 100%
  );
}

.section--team {
  background: rgba(5, 5, 5, 0.75);
}

.section--ethics {
  background: rgba(5, 5, 5, 0.76);
}

.section--work {
  background: rgba(5, 5, 5, 0.78);
}

.section--clients {
  background: rgba(5, 5, 5, 0.82);
}

.section--ethics .section__title,
.section--clients .section__title,
.section--work .section__title {
  font-size: clamp(1.15rem, 3.4vw, 2.85rem);
  letter-spacing: 0.04em;
  line-height: 1;
}

.section--contact {
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.82) 0%,
    rgba(5, 5, 5, 0.92) 100%
  );
  padding-bottom: 5rem;
}

.section--contact .section__copy {
  text-align: center;
  text-wrap: balance;
}

.team__heading {
  margin: calc(var(--section-y) * 2) 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.4vw, 2.85rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  text-align: center;
}

.team__tagline {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  width: 100%;
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-soft);
  text-align: center;
  text-wrap: balance;
}

.team__skills {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
}

.team__skill {
  margin: 0;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: #fff;
  text-align: center;
}

.team__skill:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.clients-marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 0.5rem;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}

.clients-marquee--reverse {
  margin-top: 1.15rem;
}

.clients-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(2.25rem, 5vw, 3.75rem);
  animation: clients-marquee-scroll 48s linear infinite;
  will-change: transform;
}

.clients-marquee--reverse .clients-marquee__track {
  animation-name: clients-marquee-scroll-reverse;
  animation-duration: 48s;
}

.clients-marquee__item {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
  opacity: 0.78;
  text-transform: uppercase;
}

.clients-marquee__item img {
  height: clamp(1.35rem, 2.4vw, 1.85rem);
  width: auto;
  opacity: 0.9;
  filter: grayscale(1) brightness(1.2);
}

@keyframes clients-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes clients-marquee-scroll-reverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.work-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  text-align: left;
}

.work-piece__poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  background: #0a0a0a;
  cursor: pointer;
  overflow: hidden;
  color: #fff;
}

.work-piece__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease), opacity 0.35s var(--ease);
  opacity: 0.92;
}

.work-piece__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(5, 5, 5, 0.28) 100%
  );
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.35s var(--ease);
}

.work-piece__poster:hover img,
.work-piece__poster:focus-visible img {
  transform: scale(1.03);
  opacity: 1;
}

.work-piece__poster:hover::after,
.work-piece__poster:focus-visible::after {
  opacity: 0.35;
}

.work-piece__poster:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

/* Crop pillarboxed YouTube thumbs (e.g. Jaws) so art fills the frame */
.work-piece__poster--crop img {
  transform: scale(1.16);
  transform-origin: center center;
}

.work-piece__poster--crop:hover img,
.work-piece__poster--crop:focus-visible img {
  transform: scale(1.2);
}

.work-piece__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.work-piece__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.work-player {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: start center;
  padding: 1.25rem;
  overflow-y: auto;
}

.work-player[hidden] {
  display: none;
}

.work-player__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(10px);
}

.work-player__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  margin: auto 0;
  padding: 1rem 0 1.5rem;
  animation: player-in 0.35s var(--ease) both;
}

.work-player__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.work-player__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  letter-spacing: 0.06em;
  color: #fff;
}

.work-player__close {
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.work-player__close:hover,
.work-player__close:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.work-player__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.work-player__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.work-player__notes {
  margin-top: 1.15rem;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 10, 0.72);
  text-align: left;
}

.work-player__notes-body {
  margin: 0 auto;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-soft);
  text-align: justify;
  text-justify: inter-word;
}

.work-player__notes-label {
  margin-right: 0.35em;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
}

@keyframes player-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

body.is-player-open {
  overflow: hidden;
}

.contact-mail {
  display: inline-block;
  margin-top: 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: 0.06em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 0.2rem;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.contact-mail:hover,
.contact-mail:focus-visible {
  border-color: #fff;
  outline: none;
}

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem 3rem;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer img {
  width: min(220px, 55vw);
  opacity: 0.85;
}

.site-footer p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .work-rail {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin: 0 auto;
  }

  .hero__figure img {
    width: min(860px, 100%);
    max-width: 115%;
    max-height: 96svh;
    margin-top: -8vh;
  }

  .hero__quote {
    margin-bottom: 1rem;
    max-width: calc(100% - 1.5rem);
  }

  .marquee__track span {
    font-size: clamp(3.4rem, 16vw, 5.5rem);
    margin-right: clamp(5rem, 18vw, 10rem);
  }

  .clients-marquee__item {
    font-size: 1.05rem;
  }

  .clients-marquee__item img {
    height: 1.25rem;
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 4.25rem;
  }

  .work-rail {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .site-header {
    padding: 0.85rem 0.9rem 0;
  }

  .site-header__brand {
    width: min(220px, 68vw);
  }

  .hero {
    min-height: 100svh;
    padding-bottom: var(--section-y);
  }

  .hero__quote {
    margin-bottom: 0.85rem;
    padding: 0 0.9rem;
    max-width: calc(100% - 0.5rem);
  }

  .hero__quote blockquote {
    padding-left: 0.85rem;
  }

  .hero__quote-line {
    text-shadow:
      0 0 8px rgba(0, 0, 0, 1),
      0 0 18px rgba(0, 0, 0, 0.95),
      0 3px 12px rgba(0, 0, 0, 0.9),
      0 8px 28px rgba(0, 0, 0, 0.88),
      0 16px 44px rgba(0, 0, 0, 0.85);
  }

  .hero__figure img {
    width: 118%;
    max-width: none;
    max-height: 90svh;
    margin-top: -4vh;
    opacity: 0.74;
  }

  .marquee__track span {
    margin-right: clamp(4.5rem, 22vw, 8rem);
  }

  .hero__nav {
    gap: 0.65rem;
    width: 100%;
  }

  .ghost-btn {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 10rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .section__title--split,
  .section--team .section__title,
  .section--ethics .section__title,
  .section--clients .section__title,
  .section--work .section__title,
  .team__heading {
    font-size: clamp(0.88rem, 3.9vw, 1.2rem);
    column-gap: 0.3rem;
    letter-spacing: 0.02em;
  }

  .clients-marquee__track {
    gap: 2rem;
    animation-duration: 40s;
  }

  .clients-marquee--reverse .clients-marquee__track {
    animation-duration: 40s;
  }

  .section--about .section__inner,
  .section__inner {
    width: min(100%, 100%);
    max-width: 100%;
  }

  .work-rail {
    max-width: 100%;
  }

  .section__mark {
    width: 64px;
    height: 64px;
  }

  .section {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .atmosphere__wash--a,
  .atmosphere__wash--b,
  .marquee__track,
  .clients-marquee__track,
  .hero__figure img,
  .hero__quote,
  .hero__nav,
  .work-player__dialog {
    animation: none !important;
  }

  .clients-marquee__track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
    gap: 1.5rem 2rem;
  }

  .clients-marquee__item[aria-hidden="true"] {
    display: none;
  }

  .work-piece__poster img,
  .work-piece__poster::after {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .marquee__track {
    transform: translateX(-8%);
  }
}
