:root {
  --ink: #121214;
  --paper: #f7f4ee;
  --muted: #6e6a62;
  --line: rgba(18, 18, 20, 0.14);
  --coral: #f26b4f;
  --leaf: #2d8a6a;
  --sun: #f4b63f;
  --blue: #3b74db;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 52px);
  color: #fff;
  mix-blend-mode: difference;
}

.brand {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  background: #ffd614;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  mix-blend-mode: normal;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
}

nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  height: 500vh;
  background:
    radial-gradient(circle at 74% 20%, rgba(244, 182, 63, 0.28), transparent 30%),
    radial-gradient(circle at 18% 70%, rgba(82, 151, 190, 0.22), transparent 36%),
    linear-gradient(140deg, #050505 0%, #151719 47%, #5f7580 100%);
}

.stage {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
}

.copy {
  position: absolute;
  z-index: 5;
  left: clamp(22px, 6vw, 86px);
  top: 50%;
  width: min(600px, calc(100vw - 44px));
  color: #fff;
  opacity: 0;
  transform: translateY(-42%) translateX(-18px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.copy.is-active {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.copy h1,
.copy h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(54px, 11vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.34);
}

.copy h2 {
  max-width: 13ch;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.92;
}

.headline-emoji {
  display: inline-block;
  width: 0.82em;
  height: 0.82em;
  margin-left: 0.06em;
  object-fit: contain;
  vertical-align: -0.08em;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  margin: 0 0 16px;
  color: currentColor;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mosaic-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.mosaic-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.46) 42%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, transparent 45%, rgba(0, 0, 0, 0.24) 100%);
  pointer-events: none;
}

.mosaic {
  display: none;
}

.mosaic-shadow {
  position: absolute;
  z-index: 2;
  width: min(54vh, 44vw);
  aspect-ratio: 1772 / 2531;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
  filter: blur(44px);
  transform: translate(22vw, 6vh) scale(0.82);
}

.hero-detail-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  opacity: var(--detail-opacity, 0.72);
  filter: saturate(1.08) contrast(1.08) brightness(0.9);
  transform: scale(var(--detail-scale, 1.04));
  transition: opacity 140ms linear, transform 140ms linear;
  will-change: opacity, transform;
}

.art-image {
  position: relative;
  z-index: 3;
  width: min(52vh, 42vw);
  aspect-ratio: 1772 / 2531;
  object-fit: contain;
  border-radius: 10px;
  opacity: var(--art-opacity, 0);
  filter: saturate(var(--art-sat, 0.62)) contrast(var(--art-contrast, 1.04)) blur(var(--art-blur, 10px));
  transform: translateX(var(--art-x, 22vw)) translateY(var(--art-y, 0)) scale(var(--art-scale, 0.9));
  transition: opacity 140ms linear, filter 140ms linear, transform 140ms linear;
  will-change: opacity, filter, transform;
}

.emoji-tile {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--tile-size);
  height: var(--tile-size);
  border-radius: 7px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.18));
  transform: translate(-50%, -50%) rotate(var(--rot)) scale(var(--scale));
  opacity: var(--opacity);
  transition: transform 80ms linear, opacity 80ms linear, filter 120ms ease;
  will-change: transform, opacity;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 6;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 6px;
  background: #fff;
  transform: translateX(-50%);
  animation: cue 1.4s ease-in-out infinite;
}

@keyframes cue {
  0%, 100% { opacity: 0.3; transform: translate(-50%, 0); }
  45% { opacity: 1; transform: translate(-50%, 13px); }
}

.intro,
.welcome,
.works,
.portfolio-works,
.exhibitions,
.artist,
.contact {
  padding: clamp(72px, 11vw, 150px) clamp(20px, 6vw, 76px);
}

.welcome {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-height: 92vh;
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

.welcome-copy h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(48px, 8vw, 118px);
  line-height: 0.88;
  letter-spacing: 0;
}

.welcome-copy p:not(.eyebrow) {
  max-width: 490px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.welcome-image {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.welcome-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 32%;
  border-radius: 6px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  gap: clamp(34px, 7vw, 92px);
  border-bottom: 1px solid var(--line);
}

.intro h2,
.section-heading h2,
.artist-heading h2,
.contact h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(36px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  align-self: start;
  border: 1px solid var(--line);
}

.steps article {
  min-height: 260px;
  padding: 24px;
  background: var(--paper);
}

.steps span {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
}

.steps h3,
.work-card h3 {
  margin: 72px 0 12px;
  font-size: 24px;
}

.steps p,
.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 44px;
}

.section-heading:has(> .eyebrow:only-child) {
  margin-bottom: 22px;
}

.works-heading {
  margin-top: clamp(54px, 8vw, 104px);
}

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

.portfolio-works {
  border-bottom: 1px solid var(--line);
}

.goat-feature {
  margin-top: clamp(24px, 4vw, 52px);
}

.world-feature {
  margin-top: clamp(54px, 8vw, 104px);
}

.print-note {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-bottom: 0;
  padding: clamp(20px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.print-note h3 {
  margin: 0 0 16px;
  max-width: 12ch;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.92;
  letter-spacing: 0;
}

.print-note p:not(.eyebrow) {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.print-note figure {
  margin: 0;
}

.print-note img {
  display: block;
  width: min(100%, 560px);
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 56%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.print-note figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.edition-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.edition-specs div {
  min-height: 132px;
  padding: 16px;
  background: #fffaf0;
}

.edition-specs dt {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.edition-specs dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.goat-layout {
  margin-bottom: clamp(18px, 3vw, 34px);
}

.goat-artwork {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.goat-artwork img {
  display: block;
  width: min(100%, 760px);
  margin: 0 auto;
  border-radius: 6px;
  background: #151515;
}

.goat-artwork img {
  aspect-ratio: 1772 / 2531;
  object-fit: contain;
  background: #fff;
}

.goat-artwork figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
}

.portfolio-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.portfolio-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #ece5d8;
}

.portfolio-card:nth-child(1) img {
  object-position: center 34%;
}

.portfolio-card:nth-child(2) img {
  object-position: center 52%;
}

.portfolio-card:nth-child(3) img {
  object-position: center 48%;
}

.portfolio-meta {
  padding: 20px;
}

.portfolio-meta h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 0.96;
  letter-spacing: 0;
}

.portfolio-meta p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.series-feature {
  margin-top: clamp(54px, 8vw, 104px);
}

.series-intro {
  max-width: 860px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.series-intro h3 {
  margin: 0 0 18px;
  max-width: 12ch;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: 0;
}

.series-intro p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.series-works,
.series-details {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
}

.blooming-hero-work {
  margin: 0 0 clamp(18px, 3vw, 34px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.blooming-zoom-work {
  margin: 0 0 clamp(18px, 3vw, 34px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #151515;
}

.world-hero-work {
  margin: 0 0 clamp(18px, 3vw, 34px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.blooming-hero-work img {
  display: block;
  width: min(100%, 980px);
  max-height: 88vh;
  margin: 0 auto;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
}

.blooming-zoom-work img {
  display: block;
  width: 100%;
  max-height: 86vh;
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  background: #151515;
}

.world-hero-work img {
  display: block;
  width: min(100%, 760px);
  max-height: 92vh;
  margin: 0 auto;
  border-radius: 6px;
  object-fit: contain;
  background: #fff;
}

.blooming-hero-work figcaption,
.blooming-zoom-work figcaption,
.world-hero-work figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.blooming-zoom-work figcaption {
  color: rgba(255, 255, 255, 0.72);
}

.series-works {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.series-details {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(18px, 3vw, 34px);
}

.world-details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.series-works figure,
.series-details figure {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.series-works img,
.series-details img {
  display: block;
  width: 100%;
  border-radius: 6px;
  background: #fff;
}

.series-works img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.series-details img {
  aspect-ratio: 1;
  object-fit: cover;
}

.series-works figcaption,
.series-details figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.diptych-static {
  margin-top: clamp(54px, 8vw, 104px);
}

.diptych-intro {
  max-width: 840px;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.diptych-intro h3 {
  margin: 0 0 18px;
  max-width: 12ch;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: 0;
}

.diptych-intro p:not(.eyebrow) {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.diptych-full,
.diptych-panels figure,
.diptych-video {
  margin: 0;
}

.diptych-full {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.diptych-clean {
  margin-top: 0;
}

.diptych-full img,
.diptych-panels img {
  display: block;
  width: 100%;
  border-radius: 6px;
  background: #fff;
}

.diptych-full img {
  aspect-ratio: 16 / 10;
  object-fit: contain;
}

.diptych-clean img {
  aspect-ratio: 2200 / 1414;
}

.diptych-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin-top: clamp(18px, 3vw, 34px);
}

.diptych-panels figure {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.diptych-video {
  margin-top: clamp(18px, 3vw, 34px);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.diptych-video video {
  display: block;
  width: 100%;
  max-height: 76vh;
  border-radius: 6px;
  background: #151515;
}

.diptych-panels img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

.diptych-full figcaption,
.diptych-panels figcaption,
.diptych-video figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.work-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
}

.work-card h3 {
  margin-top: 22px;
}

.detail-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: #151515;
}

.detail-face {
  object-position: 50% 42%;
}

.detail-trophy {
  object-position: 56% 28%;
}

.detail-afa {
  object-position: 48% 42%;
}

.detail-phone {
  object-position: 54% 42%;
}

.artist {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffaf0;
}

.exhibitions {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.exhibition-list {
  border-top: 1px solid var(--line);
}

.exhibition-list article {
  display: grid;
  grid-template-columns: minmax(86px, 0.18fr) minmax(260px, 1fr);
  gap: clamp(18px, 4vw, 64px);
  padding: clamp(20px, 3vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}

.exhibition-list span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.exhibition-list h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3.4vw, 46px);
  line-height: 1;
  letter-spacing: 0;
}

.exhibition-list p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.artist-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 84px);
}

.artist-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.46fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.artist-portrait {
  position: sticky;
  top: 28px;
  min-height: 420px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.artist-portrait > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 28%;
  border-radius: 6px;
  background: #151515;
}

.artist-portrait p {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.artist-text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.artist-text article {
  padding: clamp(22px, 4vw, 42px);
  background: var(--paper);
}

.artist-text p:not(.eyebrow) {
  margin: 0 0 18px;
  color: #34322f;
  font-size: 17px;
  line-height: 1.65;
}

.artist-text p:last-child {
  margin-bottom: 0;
}

.contact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  min-height: 74vh;
  color: #fff;
  background: #151515;
}

.contact-actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-weight: 800;
}

.contact-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

@media (max-width: 1150px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .brand {
    width: 46px;
    height: 46px;
  }

  nav {
    gap: 14px;
  }

  .stage {
    min-height: 660px;
  }

  .copy {
    top: 26%;
  }

  .mosaic-wrap::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.32) 48%, rgba(0, 0, 0, 0.2) 100%);
  }

  .hero-detail-image {
    object-position: 54% 50%;
  }

  .copy h1,
  .copy h2 {
    max-width: 10ch;
  }

  .mosaic {
    width: min(68vw, 390px);
    transform: translateY(18vh) scale(0.78);
  }

  .mosaic-shadow {
    width: min(70vw, 410px);
    transform: translateY(26vh) scale(0.72);
  }

  .art-image {
    width: min(68vw, 390px);
    transform: translateY(var(--art-y, 18vh)) scale(var(--art-scale, 0.78));
  }

  .intro,
  .welcome,
  .artist-heading,
  .artist-layout,
  .exhibition-list article,
  .section-heading,
  .contact {
    display: block;
  }

  .exhibition-list span {
    display: block;
    margin-bottom: 12px;
  }

  .portfolio-grid,
  .artist-text,
  .steps,
  .print-note,
  .edition-specs,
  .work-grid,
  .goat-layout,
  .series-works,
  .series-details {
    grid-template-columns: 1fr;
  }

  .artist-portrait {
    position: relative;
    top: auto;
    min-height: 320px;
    margin-bottom: 24px;
  }

  .diptych-intro h3 {
    max-width: 12ch;
    font-size: clamp(36px, 9vw, 54px);
  }

  .diptych-intro p:not(.eyebrow),
  .series-intro p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.42;
  }

  .series-intro h3 {
    max-width: 12ch;
    font-size: clamp(36px, 9vw, 54px);
  }

  .diptych-panels {
    grid-template-columns: 1fr;
  }

  .intro-text,
  .welcome-copy,
  .section-heading {
    margin-bottom: 34px;
  }

  .steps article {
    min-height: 210px;
  }

  .contact-actions {
    justify-content: flex-start;
    margin-top: 34px;
  }

  .contact-link {
    margin-top: 34px;
  }

  .contact-actions .contact-link {
    margin-top: 0;
  }
}

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

  .emoji-tile,
  .copy,
  .mosaic {
    transition: none;
  }

  .scroll-cue span {
    animation: none;
  }
}
