:root {
  --bg: #0b0a09;
  --bg-raised: #141210;
  --text: #f3eee6;
  --text-dim: #9c948a;
  --text-faint: #8a8175; /* lightened from #5f584f — that failed WCAG AA (2.8:1) against --bg; this measures ~5.2:1 */
  --accent: #ff7a4d;
  --border: rgba(243, 238, 230, 0.1);
  --display: 'Caveat Brush', cursive;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* Entrances should decelerate into place rather than ease evenly in
     both directions — reads as more natural/considered than plain "ease". */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* Visible keyboard focus everywhere interactive — links, buttons, and the
   media frames (which behave like buttons via role="button" + tabindex). */
a:focus-visible,
.media-frame:focus-visible,
.scroll-cue:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Lets keyboard users jump straight past the fixed header's ~8 links
   (email, LinkedIn, 6 nav items) instead of tabbing through all of them
   on every page load. Hidden until it receives keyboard focus. */
.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 100;
  background: var(--accent);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus {
  top: 1rem;
}

/* Entrance animation: a brief moment on your name before the site
   reveals itself. z-index sits below .skip-link so a keyboard user
   tabbing in during the animation can still reach it. Plays once per
   tab (see script.js) and is skipped entirely for reduced-motion. */
.intro {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.7s var(--ease-out);
}
.intro__mark {
  position: relative;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 7vw, 4rem);
  color: var(--text);
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.intro__mark::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  margin: 1.1rem auto 0;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out) 0.25s;
}
.intro.is-ready .intro__mark {
  opacity: 1;
  transform: scale(1);
}
.intro.is-ready .intro__mark::after {
  transform: scaleX(1);
}
.intro.is-hiding {
  opacity: 0;
  pointer-events: none;
}

/* Cursor glow + ambient spark canvas sit behind all real content, and
   follow the mouse across the whole page, not just one section. */
.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 30%), rgba(255, 122, 77, 0.14), transparent 60%);
}

.sparks-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

main, footer {
  position: relative;
  z-index: 1;
}

section.section {
  padding: 8rem 1.5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.section__inner {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.section-number {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 2rem;
}

/* Reveal animation (whole section) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered "unveiling" for case studies & project cards */
.case-header > *,
.case-card__poster,
.case-card__body,
.case-card__links,
.reel,
.project-card > *,
.other-projects__heading,
.other-projects__sub,
.other-projects__group-title,
.performance-card > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.is-visible .case-header > *,
.is-visible .case-card__poster,
.is-visible .case-card__body,
.is-visible .case-card__links,
.is-visible .reel,
.is-visible .project-card > *,
.is-visible .other-projects__heading,
.is-visible .other-projects__sub,
.is-visible .other-projects__group-title,
.is-visible .performance-card > * {
  opacity: 1;
  transform: translateY(0);
}
.case-header > *:nth-child(1) { transition-delay: 0.05s; }
.case-header > *:nth-child(2) { transition-delay: 0.15s; }
.case-header > *:nth-child(3) { transition-delay: 0.25s; }
.case-card__poster { transition-delay: 0.3s; }
.case-card__body { transition-delay: 0.4s; }
.case-card__links { transition-delay: 0.5s; }
.reel { transition-delay: 0.6s; }
.other-projects__heading { transition-delay: 0.05s; }
.other-projects__sub { transition-delay: 0.15s; }
.project-card:nth-child(1) > * { transition-delay: 0.25s; }
.project-card:nth-child(2) > * { transition-delay: 0.35s; }
.project-card:nth-child(3) > * { transition-delay: 0.45s; }
.other-projects__group-title { transition-delay: 0.1s; }
.performance-card > * { transition-delay: 0.2s; }

/* Persistent contact panel */
.contact-panel {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(20, 18, 16, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
}

.contact-panel__link {
  color: var(--text-dim);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.contact-panel__link:hover { color: var(--accent); }

.contact-panel__divider {
  width: 1px;
  height: 12px;
  background: var(--border);
}

/* Numbered section index with scroll-progress rail */
.index-nav {
  position: fixed;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  display: flex;
  gap: 1.1rem;
}

.index-nav__rail {
  position: relative;
  width: 1px;
  background: var(--border);
}

.index-nav__fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: var(--accent);
}

.index-nav ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.index-nav a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
  transition: color 0.25s ease;
}

.index-nav a span {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--text-dim);
  transition: opacity 0.25s ease, max-width 0.35s ease;
}

.index-nav a:hover span,
.index-nav a.is-active span {
  opacity: 1;
  max-width: 140px;
}

.index-nav a.is-active {
  color: var(--accent);
}
.index-nav a.is-active span { color: var(--accent); }

/* Hero — portrait grid */
.hero {
  padding-top: 6rem;
}

.hero__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 3rem;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: start;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.75rem;
}

.hero__headline {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.18;
  margin: 0 0 1.75rem;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__subline {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  color: var(--text);
  max-width: 540px;
  line-height: 1.5;
  margin: 0;
}

.hero__divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 1.75rem 0;
}

.positioning__statement.positioning__statement--hero {
  padding-left: 0;
  max-width: 540px;
  font-size: clamp(0.98rem, 1.3vw, 1.12rem);
  line-height: 1.7;
  margin: 0;
}

.hero__portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__portrait .media-frame--portrait {
  /* Matches the real headshot's own proportions (1320 x 1624) so the box
     shape equals the photo's shape — nothing gets cropped to fit. */
  aspect-ratio: 1320 / 1624;
  width: 90%;
  max-width: 380px;
}
.hero__portrait .media-frame.media-frame--portrait img {
  object-fit: contain;
}

.scroll-cue {
  display: inline-flex;
  margin-top: 4.5rem;
  width: 26px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  justify-content: center;
  padding-top: 8px;
  transition: border-color 0.25s ease;
}
.scroll-cue:hover { border-color: var(--accent); }
.scroll-cue span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  animation: scroll-cue 1.8s ease infinite;
}
@keyframes scroll-cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* Positioning — brush treatment reserved for the one important line */
.positioning__statement {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 780px;
  padding-left: 3rem;
  text-wrap: balance;
}
.positioning__statement strong {
  color: var(--accent);
  font-weight: 600;
}
.positioning__statement em {
  font-style: normal;
  font-family: var(--display);
  color: var(--text);
  font-size: 1.35em;
  line-height: 1;
}

/* Case studies */
.case-study .section__inner { padding-left: 3rem; }
.case-study__inner { max-width: 1200px; }

.case-header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.9rem 1.25rem;
  margin-bottom: 1.75rem;
}

.case-card__tag {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin: 0;
  flex-basis: 100%;
  order: -1;
}

.case-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4rem);
  margin: 0;
  line-height: 1;
}

/* Swap the title above for a logo image later — same slot, same scale:
   <img class="case-card__logo" src="..." alt="NLiTE"> in place of the <h2>. */
.case-card__logo {
  height: clamp(2.8rem, 6vw, 4.5rem);
  width: auto;
  display: block;
}

.case-card__year {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-faint);
}

.case-card__body {
  color: var(--text-dim);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 68ch;
}

.case-card__body strong {
  color: var(--accent);
  font-weight: 600;
}

/* Big key-art poster beside the case-study description — separate from
   the video reel below it. */
.case-poster-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.media-frame.media-frame--auto {
  aspect-ratio: auto;
}

.case-card__poster .media-frame {
  width: 100%;
}

.case-card__links {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.case-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 999px;
  padding: 1.35rem 2.75rem;
  transition: color 0.2s ease, background 0.2s ease;
}
.case-card__cta:hover { background: var(--accent); color: var(--bg); }

/* A solid variant for when the link itself needs to read as confident
   proof (e.g. citing outside press coverage), not just a soft invite. */
.case-card__cta--solid {
  background: var(--accent);
  color: var(--bg);
}
.case-card__cta--solid:hover {
  background: transparent;
  color: var(--accent);
}

/* Media frame: image, click-to-play video, hover-to-play video (in a reel),
   or — until content is supplied — a dashed placeholder. */
.media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-raised);
  border: 1px solid var(--border);
}
.media-frame--portrait { aspect-ratio: 4 / 5; }

/* Vertical (phone-shot / Shorts-style) clips get a tall, narrow frame
   instead of being cropped into the standard wide box. */
.media-frame--vertical { aspect-ratio: 9 / 16; }

.media-frame[data-state='empty'] {
  border-style: dashed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--text-faint);
  font-size: 0.8rem;
}
.media-frame[data-state='empty']::before { content: attr(data-fallback-label); }

.media-frame[data-state='thumb'] { cursor: pointer; }
.media-frame[data-state='thumb'] img,
.media-frame[data-state='image'] img,
.media-frame[data-state='hover-ready'] img,
.media-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.media-frame[data-state='thumb']:hover img,
.media-frame[data-state='hover-ready']:hover img { transform: scale(1.04); }

.media-frame__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-frame__play span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(11, 10, 9, 0.55);
  border: 1px solid rgba(243, 238, 230, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
.media-frame__play span::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--text);
  margin-left: 4px;
}
.media-frame[data-state='thumb']:hover .media-frame__play span {
  transform: scale(1.08);
  background: var(--accent);
  border-color: var(--accent);
}
.media-frame[data-state='hover-ready'] .media-frame__play span { opacity: 0.75; }
.media-frame[data-state='hover-ready']:hover .media-frame__play span { opacity: 0; }

.media-frame[data-state='playing'] iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Film reel: horizontal strip of video previews, mouse-driven, looping */
.reel {
  margin-top: 3rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: ew-resize;
}
.reel::-webkit-scrollbar { display: none; }

.reel__track {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  width: max-content;
}

.reel__item {
  flex: 0 0 clamp(320px, 34vw, 560px);
}

.reel__item.media-frame--vertical {
  flex: 0 0 clamp(180px, 19vw, 300px);
}

/* Other projects */
.other-projects .section__inner { padding-left: 3rem; }
.section__inner.other-projects__inner { max-width: 1200px; }

.other-projects__heading {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}

.other-projects__sub {
  color: var(--text-dim);
  max-width: 56ch;
  margin: 0 0 3rem;
  line-height: 1.6;
}

.project-stack {
  display: flex;
  flex-direction: column;
  gap: 6.5rem;
}

.project-stack > .project-card {
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.project-stack > .project-card:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.project-card .media-frame {
  width: 100%;
}

/* A vertical project video shouldn't stretch full-width (it'd become
   absurdly tall) — cap it and center it instead. */
.project-card .media-frame--vertical {
  width: min(100%, 420px);
  margin: 0 auto;
}

/* A project with both a poster and a trailer — poster keeps its real
   proportions (a movie poster is not 16:9), trailer stays widescreen. */
.project-card__media {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 1.5rem;
  align-items: start;
}

.project-card__media-label {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.project-card__caption {
  margin-top: 1.5rem;
  max-width: 70ch;
}

/* No media for this one (a script/development credit, not a video) —
   don't leave a gap where the media would have been. */
.project-card--text-only .project-card__caption {
  margin-top: 0;
}

/* Caption placed before its media instead of after — flip the spacing
   to sit below the caption instead of above it. */
.project-card__caption--first {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.project-card__caption .case-card__cta {
  margin-top: 1.25rem;
}

.project-card__citation {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  margin: 0 0 0.75rem;
}
.project-card__citation strong {
  color: var(--accent);
  font-weight: 600;
}

.project-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin: 0 0 0.5rem;
  line-height: 1;
}

.project-card__desc {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

/* Groups within "Other projects" — e.g. Films vs. Performances */
.other-projects__group + .other-projects__group {
  margin-top: 5rem;
}

.other-projects__group-title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

/* Performances — a grid of smaller credit cards rather than the huge
   single-column film treatment, since there are more of them and each
   is a shorter credit, not a whole film. */
.performance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.performance-card .media-frame {
  width: 100%;
}

.performance-card__caption {
  margin-top: 1rem;
}

.performance-card__role {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 0.3rem;
}

.performance-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.15;
  margin: 0;
}

.performance-card__stat {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--text-dim);
}
.performance-card__stat strong {
  color: var(--accent);
  font-weight: 600;
}

/* Skills — a small symmetric stack under the hero photo, same width as
   the photo above it, rather than a whole section of its own. */
.skills-stack {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  width: 90%;
  max-width: 380px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.skills-stack__item {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-raised);
}

.skills-stack__item h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: var(--accent);
  line-height: 1.05;
}

.skills-stack__item p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.8rem;
  line-height: 1.45;
}

/* Contact */
.contact .section__inner { padding-left: 3rem; }

.contact__statement {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  max-width: 760px;
  margin: 0 0 2.5rem;
  text-wrap: balance;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact__link {
  font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.3rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.contact__link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Footer */
.footer {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer__tagline {
  font-family: var(--display);
  font-weight: 400;
  color: var(--text);
  font-size: 1.6rem;
  margin: 0 0 1.5rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.footer__links a:hover { color: var(--accent); }

.footer__copyright {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-faint);
}

/* Responsive */
@media (max-width: 1100px) {
  .index-nav { display: none; }
  .hero__grid,
  .case-study .section__inner,
  .positioning__statement,
  .other-projects .section__inner,
  .contact .section__inner {
    padding-left: 0;
  }
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__portrait { order: -1; max-width: 280px; }
  .case-poster-grid { grid-template-columns: 1fr; }
  .project-card__media { grid-template-columns: 1fr; }
  .performance-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  section.section { padding: 6rem 1.25rem; }
  .contact-panel {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    justify-content: center;
  }
  /* The floating panel above is full-width here and can sit directly over
     the footer's last lines otherwise — give the footer room to clear it. */
  .footer {
    padding-bottom: 6rem;
  }
  .reel__item { flex-basis: 78vw; }
  .reel__item.media-frame--vertical { flex-basis: 46vw; }
  .performance-grid { grid-template-columns: 1fr; }
  .case-card__cta {
    font-size: 1.05rem;
    padding: 1rem 1.75rem;
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  /* Longer skill/label titles (e.g. "Cross-functional coordination")
     wrap awkwardly at two-per-row this narrow — go single column. */
  .skills-stack { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .case-header > *,
  .case-card__body,
  .case-card__links,
  .reel,
  .project-card > *,
  .other-projects__heading,
  .other-projects__sub,
  .other-projects__group-title,
  .performance-card > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-cue span { animation: none; }
  html { scroll-behavior: auto; }
}
