/* HHH v54 interaction refinements. The approved layouts remain intact. */

:root {
  --hhh-page-edge: 24px;
}

.ambient-atmosphere__video {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center;
  background: #000;
  pointer-events: none;
}

.ambient-atmosphere__video--mobile {
  display: none;
}

@media (max-width: 700px) {
  .ambient-atmosphere__video--desktop {
    display: none !important;
  }

  .ambient-atmosphere__video--mobile {
    display: block;
  }
}

/* Persistent transparent site navigation. */
.hhh-global-nav {
  /* Keep the homepage navigation visible above the opening sequence too. */
  z-index: 2147483200;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding: 0 var(--hhh-page-edge);
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  pointer-events: none;
}

.hhh-global-nav a {
  color: inherit;
  letter-spacing: 0;
  text-decoration: none;
  pointer-events: auto;
}

.hhh-global-nav__home {
  display: grid;
  place-items: center;
  justify-self: start;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
}

.hhh-global-nav__home img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hhh-global-nav__projects {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 13px;
  color: rgba(255, 255, 255, .58);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .72);
}

.hhh-global-nav__projects i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.hhh-global-nav__projects a,
.hhh-global-nav__profile {
  transition: opacity .2s ease, color .2s ease;
}

.hhh-global-nav__projects a:hover,
.hhh-global-nav__projects a:focus-visible {
  opacity: .58;
  outline: 0;
}

.hhh-global-nav__profile {
  display: grid;
  place-items: center;
  justify-self: end;
  min-width: 92px;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #080808 !important;
  font-size: 13px;
}

.hhh-global-nav__profile:hover,
.hhh-global-nav__profile:focus-visible {
  background: rgba(255, 255, 255, .78);
  outline: 0;
}

.portfolite-header {
  display: none !important;
}

#portfolio-top,
#about,
#projects,
#brand-projects {
  scroll-margin-top: 72px;
}

body.hhh-project-viewer-open .hhh-global-nav {
  opacity: 0;
  pointer-events: none;
}

/* Detail routes use their own project controls; never cover them with the
   homepage navigation bar. */
body.hhh-secondary-page .hhh-global-nav {
  display: none !important;
}

/* One consistent iu# cursor across the site and project viewer. */
@media (hover: hover) and (pointer: fine) {
  body,
  body * {
    cursor: none !important;
  }

  .cursor-ring,
  .cursor-dot {
    display: none !important;
  }
}

.hhh-global-cursor {
  z-index: 2147483647;
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease;
}

.hhh-global-cursor.is-visible {
  opacity: 1;
}

.hhh-global-cursor__arrow,
.hhh-global-cursor__label {
  position: fixed;
  top: 0;
  left: 0;
  will-change: transform;
  transition: scale .16s ease;
}

.hhh-global-cursor__arrow,
.hhh-global-cursor__arrow svg {
  display: block;
  width: 23px;
  height: 23px;
}

.hhh-global-cursor__arrow svg {
  overflow: visible;
}

.hhh-global-cursor__arrow path {
  fill: #fff;
  stroke: rgba(0, 0, 0, .3);
  stroke-width: .7;
  stroke-linejoin: round;
}

.hhh-global-cursor__label {
  padding: 5.5px 11px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .16);
  font: 600 12px/1.1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  white-space: nowrap;
}

@media (pointer: coarse) {
  .hhh-global-cursor {
    display: none !important;
  }
}

.featured-project-card__link,
.featured-project-card__media {
  border-radius: clamp(22px, 2.7vw, 40px);
}

.featured-project-card__media {
  overflow: hidden;
  will-change: transform;
  animation: hhh-project-cover-drift 8.4s cubic-bezier(.45, 0, .55, 1) infinite alternate;
}

.featured-project-card:nth-child(even) .featured-project-card__media {
  animation-direction: alternate-reverse;
  animation-duration: 9.2s;
}

.featured-project-card__link:hover .featured-project-card__media,
.featured-project-card__link:focus-visible .featured-project-card__media {
  animation-play-state: paused;
}

.featured-project-card__index,
.featured-project-card__category {
  display: none !important;
}

.featured-project-card__view {
  display: none !important;
}

@keyframes hhh-project-cover-drift {
  from { transform: translate3d(-5px, 0, 0); }
  to { transform: translate3d(5px, 0, 0); }
}

@media (max-width: 560px) {
  .hhh-global-nav {
    height: 60px;
    padding: 0 12px;
  }

  .hhh-global-nav__home {
    width: 24px;
    height: 24px;
  }

  .hhh-global-nav__projects {
    gap: 8px;
    font-size: 10px;
  }

  .hhh-global-nav__projects i {
    width: 4px;
    height: 4px;
  }

  .hhh-global-nav__profile {
    min-width: 66px;
    height: 30px;
    padding: 0 11px;
    font-size: 10px;
  }

  #portfolio-top,
  #about,
  #projects,
  #brand-projects {
    scroll-margin-top: 60px;
  }

  .featured-project-card__link,
  .featured-project-card__media {
    border-radius: 24px;
  }
}

.ambient-atmosphere canvas.ambient-atmosphere__canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  opacity: 0;
  filter: none !important;
  mix-blend-mode: normal !important;
  pointer-events: none;
  transition: opacity .18s ease;
}

.ambient-atmosphere canvas.ambient-atmosphere__canvas[data-hhh-ambient="ready"] {
  opacity: 1;
}

.ambient-atmosphere.is-hhh-native-video .ambient-atmosphere__canvas {
  display: none !important;
}

.ambient-atmosphere.is-hhh-native-video .ambient-atmosphere__video {
  z-index: 0;
  opacity: 1 !important;
  visibility: visible !important;
}

.portfolite-contact,
.portfolite-kicker,
.portfolite-hero h1 span,
.portfolite-intro,
.portfolite-actions,
.discipline-marquee {
  animation: none !important;
  transform-origin: center center;
}

html.is-hhh-opening .portfolite-contact,
html.is-hhh-opening .portfolite-kicker,
html.is-hhh-opening .portfolite-hero h1 span,
html.is-hhh-opening .portfolite-intro,
html.is-hhh-opening .portfolite-actions,
html.is-hhh-opening .discipline-marquee {
  opacity: .08;
  transform: scaleY(.05);
}

html:not(.is-hhh-opening) .ambient-atmosphere {
  background: #000 url("/HHH-online-preview_files/cover-background-poster.jpg?v=20260724h") center / cover no-repeat !important;
}

.ambient-atmosphere__mesh {
  opacity: 0 !important;
}

.ambient-atmosphere__vignette {
  opacity: .1;
}

.ambient-atmosphere::after {
  opacity: .07 !important;
  background-image: radial-gradient(circle, rgba(218, 214, 204, .72) 0 .45px, transparent .76px) !important;
  background-size: 3px 3px !important;
  mix-blend-mode: screen !important;
}

.portfolite-actions--single {
  justify-content: center;
}

.portfolite-actions--single a {
  min-width: 172px;
}

.fuel-about__ticker-track.is-hhh-js-ticker,
.fuel-about__ticker:hover .fuel-about__ticker-track.is-hhh-js-ticker {
  animation: none !important;
  transform: translate3d(var(--hhh-ticker-x, 0px), 0, 0) !important;
  will-change: transform;
}

.fuel-about__ticker-card img,
.fuel-about__ticker-card .hhh-about-ticker__poster {
  filter: grayscale(1) saturate(.05) brightness(.76) contrast(1.04) !important;
  transition: filter .45s ease, transform .55s cubic-bezier(.2, .72, .18, 1) !important;
}

.fuel-about__ticker-card:hover img,
.fuel-about__ticker-card:focus-within img,
.fuel-about__ticker-card:hover .hhh-about-ticker__poster,
.fuel-about__ticker-card:focus-within .hhh-about-ticker__poster {
  filter: grayscale(0) saturate(1) brightness(1) contrast(1) !important;
}

.hhh-about-ticker__poster {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #111113;
  background-repeat: no-repeat;
  transform: scale(1.012);
}

.fuel-about__ticker-card:hover .hhh-about-ticker__poster {
  transform: scale(1.025);
}

/* A restrained spotlight reveals the portrait's original color locally. */
.fuel-about__portrait {
  --hhh-portrait-x: 50%;
  --hhh-portrait-y: 50%;
  --hhh-portrait-radius: clamp(48px, 4.4vw, 66px);
  --hhh-portrait-glow-radius: clamp(54px, 4.9vw, 74px);
  border-radius: 8px;
}

.fuel-about__portrait > img:not(.hhh-portrait-color) {
  filter: grayscale(1) contrast(1.04) brightness(.7) !important;
}

.fuel-about__portrait .hhh-portrait-color {
  z-index: 3;
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: none !important;
  pointer-events: none;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  transition: opacity .24s ease;
}

.fuel-about__portrait .hhh-portrait-light {
  display: none !important;
}

.fuel-about__portrait.is-hhh-portrait-lit .hhh-portrait-color,
.fuel-about__portrait.is-hhh-portrait-lit .hhh-portrait-light {
  opacity: 1;
}

@media (min-width: 701px) {
  .campaign-title-panel__copy {
    position: relative;
    max-width: calc(100% - .5em);
    padding-right: .5em;
    overflow: visible;
  }

  .campaign-title-line,
  .campaign-title-dots {
    overflow: visible;
  }

  .hhh-pixel-drift-title {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    max-width: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity .12s ease;
  }

  .campaign-title-panel__copy.is-hhh-pixel-drift .campaign-word {
    color: #fff !important;
    text-shadow: none !important;
  }

  .campaign-title-panel__copy.is-hhh-pixel-drift.is-hhh-pixel-active .campaign-word {
    color: transparent !important;
    text-shadow: none !important;
  }

  .campaign-title-panel__copy.is-hhh-pixel-active .hhh-pixel-drift-title {
    opacity: 1;
  }

  .campaign-title-panel__copy.is-hhh-pixel-drift .campaign-title-dots {
    z-index: 3;
    position: relative;
  }

.fuel-about.is-hhh-about-editorial {
  min-height: 100svh;
  padding: 0;
  border-top: 0;
  background: #000;
  box-shadow: none;
}

.fuel-about.is-hhh-about-editorial::before {
  display: none;
}

.portfolite-cover .fuel-about {
  border-top: 0 !important;
}

.portfolite-cover .fuel-about::before {
  display: none !important;
}

  .fuel-about__body.hhh-about-editorial {
    position: relative;
    display: block;
    min-height: 100svh;
    margin: 0;
    padding: 0;
    background: #000;
  }

  .hhh-about-editorial__identity {
    position: absolute;
    top: 7.8svh;
    left: var(--hhh-page-edge);
    padding: 0;
    font-size: clamp(11px, .8vw, 14px);
    font-weight: 560;
    line-height: 1.35;
  }

  .hhh-about-editorial__identity span,
  .hhh-about-editorial__identity strong {
    display: block;
    font-weight: inherit;
  }

  .fuel-about__body.hhh-about-editorial .fuel-about__portrait {
    position: absolute;
    top: 18.5svh;
    left: 26.45vw;
    width: min(23.45vw, 41.7svh);
    max-width: none;
    aspect-ratio: 3 / 4;
    margin: 0;
    border: 0;
    border-radius: 3px;
    background: #000;
    overflow: hidden;
  }

  .fuel-about__body.hhh-about-editorial .fuel-about__portrait > img:not(.hhh-portrait-color) {
    filter: grayscale(0) saturate(.68) contrast(1.02) brightness(.53) !important;
  }

  .fuel-about__body.hhh-about-editorial .fuel-about__portrait .hhh-portrait-color {
    filter: none !important;
    -webkit-mask-image: none;
    mask-image: none;
    transition: opacity .38s cubic-bezier(.22, 1, .36, 1);
  }

  .fuel-about__body.hhh-about-editorial .fuel-about__portrait .hhh-portrait-light {
    display: none;
  }

  .hhh-about-editorial__copy {
    display: contents;
  }

  .hhh-about-editorial__copy p {
    position: absolute;
    margin: 0;
    font-size: clamp(12px, .82vw, 16px);
    font-weight: 420;
    line-height: 1.8;
  }

  .hhh-about-editorial__copy-primary {
    top: 18.9svh;
    right: 24.1vw;
    left: 45.2vw;
  }

  .hhh-about-editorial__copy-secondary {
    top: 36.4svh;
    right: 4.2vw;
    left: 62.65vw;
  }

  .hhh-about-editorial__experience {
    position: absolute;
    top: 58.7svh;
    right: 4.2vw;
    left: 59.25vw;
    margin: 0;
    padding: 0;
  }

  .hhh-about-editorial__experience .fuel-about__role {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
  }

  .hhh-about-editorial__experience .fuel-about__role h3 {
    margin: 0;
    font-size: clamp(20px, 1.35vw, 28px);
    font-weight: 460;
    line-height: 1.2;
  }

  .hhh-about-editorial__experience .fuel-about__role h3 span {
    margin-left: clamp(16px, 2.1vw, 42px);
    font-size: inherit;
    font-weight: inherit;
  }

  .hhh-about-editorial__experience .fuel-about__role time {
    padding-bottom: 2px;
    font-size: clamp(10px, .72vw, 14px);
    white-space: nowrap;
  }

  .hhh-about-editorial__experience .fuel-about__company {
    margin: clamp(18px, 2.4svh, 26px) 0 8px;
    font-size: clamp(11px, .72vw, 14px);
    line-height: 1.5;
  }

  .hhh-about-editorial__experience > p:last-child {
    margin: 0;
    font-size: clamp(11px, .72vw, 14px);
    line-height: 1.95;
  }

  .hhh-about-editorial__contacts {
    position: absolute;
    right: var(--hhh-page-edge);
    bottom: 7.6svh;
    left: var(--hhh-page-edge);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 48px;
    padding: 0;
  }

  .hhh-about-editorial__contacts p {
    margin: 0;
    font-size: clamp(12px, .82vw, 15px);
    font-style: normal;
    font-weight: 560;
    line-height: 1.35;
  }

  .hhh-about-editorial__contacts p:nth-child(2) {
    text-align: center;
  }

  .hhh-about-editorial__contacts p:nth-child(3) {
    text-align: right;
  }

  .hhh-about-editorial__contacts span,
  .hhh-about-editorial__contacts a,
  .hhh-about-editorial__contacts b {
    display: block;
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
  }

  .fuel-about__body.hhh-about-editorial [data-hhh-light-text] {
    --hhh-text-light-x: -999px;
    --hhh-text-light-y: -999px;
    color: transparent !important;
    background: radial-gradient(circle 82px at var(--hhh-text-light-x) var(--hhh-text-light-y), rgba(236, 240, 242, .94) 0, rgba(206, 216, 220, .7) 38%, #48494b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

}

.motion-reel__card,
.motion-reel__card video {
  border-radius: 8px;
}

.campaign-title-panel__arrow {
  border-width: 2px !important;
}

.campaign-title-panel__arrow i::before {
  height: 2px !important;
}

.campaign-title-panel__arrow i::after {
  border-right-width: 2px !important;
  border-bottom-width: 2px !important;
}

.particle-label {
  isolation: isolate;
}

.particle-label canvas {
  max-width: none !important;
  max-height: none !important;
  overflow: visible;
}

@media (min-width: 701px) {
  .particle-label.is-hhh-pixel-drift .particle-label__text {
    opacity: 1;
    filter: none;
  }

  .particle-label.is-hhh-pixel-drift.is-hhh-pixel-active .particle-label__text {
    opacity: 0;
    filter: none;
  }

  .particle-label.is-hhh-pixel-active .hhh-pixel-drift-title {
    opacity: 1;
  }
}

@media (min-width: 701px) {
  .featured-projects__side-copy {
    height: 100svh;
    margin-bottom: -100svh;
    position: sticky;
    top: 0;
  }

  .particle-label {
    font-size: clamp(22px, 1.85vw, 30px);
    font-weight: 600;
    transform: none;
  }

  .particle-label--top-left {
    top: clamp(132px, 17svh, 178px);
    left: clamp(68px, 7vw, 116px) !important;
    transform-origin: left top;
  }

  .particle-label--bottom-right {
    right: clamp(62px, 5vw, 86px) !important;
    bottom: clamp(104px, 13svh, 138px);
    transform-origin: right bottom;
  }
}

.operation-showcase__track {
  will-change: transform;
  transition: transform .56s cubic-bezier(.18, .84, .18, 1) !important;
}

.operation-showcase__track.is-jumping {
  transition: none !important;
}

.operation-showcase__track.is-wheel-scrolling {
  transition: none !important;
}

/* Keep the rotated green tag inside the text-reveal mask's paint box. */
.operation-showcase__lockup {
  padding-bottom: 10px;
  margin-bottom: -10px;
}

@media (min-width: 901px) {
  .operation-showcase__frame {
    grid-template-columns: minmax(0, 1.82fr) minmax(300px, .78fr);
  }
}

.featured-project-card__link {
  --hhh-project-focus-scale: 1;
  transform: scale(var(--hhh-project-focus-scale)) rotate(var(--project-angle));
  transition: transform .62s cubic-bezier(.18, .78, .18, 1);
}

.featured-project-card__link.is-hhh-settled {
  --project-angle: 0deg !important;
}

@media (hover: hover) and (pointer: fine) {
  .featured-projects.is-hhh-project-focus .featured-project-card__link {
    --hhh-project-focus-scale: .9;
  }

  .featured-projects.is-hhh-project-focus .featured-project-card__link.is-hhh-project-active {
    --hhh-project-focus-scale: 1.075;
  }

  .featured-project-card.is-hhh-project-active {
    z-index: 40 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-project-card__link {
    transition-duration: .01ms;
  }
}

/* Final footer layout: information first, full-width Dot Matrix below. */
.portfolio-end {
  display: block !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: #000 !important;
}

.portfolio-end__info {
  display: grid !important;
  grid-template-columns: .7fr 1fr 1.15fr 1.25fr auto !important;
  align-items: center !important;
  gap: clamp(24px, 3.5vw, 70px) !important;
  min-height: clamp(78px, 8svh, 104px) !important;
  padding: 18px var(--hhh-page-edge) !important;
}

.portfolio-end__matrix {
  height: clamp(350px, 36svh, 390px) !important;
  min-height: 350px !important;
}

@media (max-width: 700px) {
  .portfolio-end__info {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 20px !important;
    min-height: 0 !important;
    padding: 28px 18px 24px !important;
  }

  .portfolio-end__label,
  .portfolio-end__tel,
  .portfolio-end__wechat,
  .portfolio-end__email,
  .portfolio-end__home {
    position: static !important;
    margin: 0 !important;
    font-size: 10px !important;
    text-align: left !important;
  }

  .portfolio-end__home {
    grid-column: 2;
    justify-self: end;
  }

  .portfolio-end__matrix {
    height: 44svh !important;
    min-height: 290px !important;
  }
}

.featured-project-card__view {
  will-change: left, top, transform, opacity;
}

/* Keep the motion field legible without saturating several video decoders. */
.motion-reel__item {
  display: none;
}

.motion-reel__item:nth-child(1),
.motion-reel__item:nth-child(3),
.motion-reel__item:nth-child(4),
.motion-reel__item:nth-child(6),
.motion-reel__item:nth-child(7),
.motion-reel__item:nth-child(10) {
  display: block;
}

.motion-reel > .motion-reel__item.is-hhh-motion-source {
  display: none !important;
}

.motion-reel__item.hhh-motion-stream__item {
  display: block !important;
  top: var(--hhh-lane-y) !important;
  animation: none !important;
  transform: translate3d(var(--hhh-motion-x, 0), 0, 0);
  will-change: transform;
}

.hhh-motion-stream__item .motion-reel__float {
  animation-name: hhh-motion-stream-float !important;
}

.hhh-motion-stream__item .hhh-motion-stream__buffer {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.hhh-motion-stream__item .motion-reel__card {
  position: relative;
  overflow: hidden;
}

.hhh-motion-stream__poster {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #111;
  background-repeat: no-repeat;
  border-radius: inherit;
  opacity: 1;
  transition: opacity .16s linear;
  pointer-events: none;
}

.hhh-motion-stream__poster.is-hidden {
  opacity: 0;
}

.hhh-motion-stream__canvas {
  z-index: 4;
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  object-fit: cover;
  pointer-events: none;
}

.hhh-motion-stream__canvas.is-ready {
  opacity: 1;
}

.hhh-motion-stream__item .motion-reel__card video {
  position: relative;
  z-index: 2;
}

/* Edge can paint an otherwise decoded <video> black when its card is nested
   inside transformed compositor layers. On desktop, move the lightweight
   card with `left` and leave the complete media branch on the normal paint
   path. The mobile composition keeps its existing transform-based travel. */
@media (min-width: 701px) {
  .motion-reel__item.hhh-motion-stream__item {
    left: var(--hhh-motion-x, 0px) !important;
    transform: none !important;
    will-change: left !important;
  }

  .hhh-motion-stream__item .motion-reel__float {
    animation: none !important;
    transform: none !important;
    will-change: auto !important;
  }

  .hhh-motion-stream__item .motion-reel__card video {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    transform: none !important;
    will-change: auto !important;
  }
}

/* Use the medium-screen card scale as the desktop baseline at every width. */
@keyframes hhh-motion-stream-float {
  0% {
    transform: translateY(-6px);
  }

  52% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(7px);
  }
}

.emoji-surprise__particle {
  pointer-events: none;
  transition: opacity .25s linear;
}

/* Font-design cover flow: centered front card with receding side cards. */
.font-design__reel {
  width: calc(100% - clamp(24px, 2.5vw, 48px)) !important;
  max-width: none;
  min-height: clamp(700px, 82svh, 900px) !important;
  margin-inline: auto;
  isolation: isolate;
  perspective: 1350px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: hidden;
  cursor: grab;
  box-shadow: none !important;
}

.font-design__reel.is-dragging {
  cursor: grabbing;
}

.font-design__reel::before,
.font-design__reel::after {
  z-index: 30 !important;
  width: clamp(64px, 11vw, 180px) !important;
  top: 0 !important;
  bottom: 0 !important;
  pointer-events: none;
  -webkit-backdrop-filter: blur(7px) !important;
  backdrop-filter: blur(7px) !important;
}

.font-design__reel::before {
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .88) 30%, rgba(0, 0, 0, .2) 76%, transparent 100%) !important;
}

.font-design__reel::after {
  background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, .88) 30%, rgba(0, 0, 0, .2) 76%, transparent 100%) !important;
}

.font-design__track,
.font-design__group {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  transform-style: preserve-3d !important;
}

.font-design__card {
  top: 0 !important;
  left: 0 !important;
  width: clamp(210px, 14.2vw, 286px) !important;
  height: auto !important;
  aspect-ratio: auto !important;
  border-radius: clamp(18px, 1.5vw, 27px) !important;
  transform-origin: 50% 50% !important;
  backface-visibility: hidden;
  transition: box-shadow .35s ease !important;
  will-change: transform, opacity, filter !important;
}

.font-design__card img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.font-design__card:hover {
  box-shadow: 0 30px 84px rgba(0, 0, 0, .86);
}

.font-design__badge strong {
  font-weight: 500 !important;
}

.font-design__badge > i,
.font-design__badge > span {
  position: absolute !important;
  top: 50% !important;
  width: 6px !important;
  height: 6px !important;
  margin: 0 !important;
  border-radius: 50% !important;
  background: #dceeff !important;
  box-shadow: 0 0 12px #69adff, 0 0 26px #7258ff !important;
  transform: translateY(-50%) !important;
}

.font-design__badge > i {
  left: clamp(16px, 1.35vw, 20px) !important;
}

.font-design__badge > span {
  right: clamp(16px, 1.35vw, 20px) !important;
}

/* Layout and poster work: three independently drifting vertical columns. */
.layout-design {
  position: relative;
  min-height: max(1320px, 150svh);
  padding: clamp(100px, 11svh, 132px) 0 clamp(118px, 14svh, 168px);
  background: #000;
  overflow: hidden;
}

.layout-design__intro {
  position: relative;
  z-index: 4;
}

.layout-design__drift {
  isolation: isolate;
  position: relative;
  width: min(1720px, 88vw);
  height: clamp(1320px, 148svh, 1600px);
  margin: clamp(52px, 7svh, 78px) auto 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  outline: 0;
}

.layout-design__drift.is-dragging {
  cursor: grabbing;
}

.layout-design__drift::before,
.layout-design__drift::after {
  content: "";
  z-index: 6;
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(92px, 14%, 142px);
  pointer-events: none;
  background: rgba(0, 0, 0, .5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.layout-design__drift::before {
  top: 0;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .88) 32%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, .88) 32%, transparent 100%);
}

.layout-design__drift::after {
  bottom: 0;
  -webkit-mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, .88) 32%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, rgba(0, 0, 0, .88) 32%, transparent 100%);
}

.layout-design__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
  height: 100%;
  padding-inline: clamp(0px, 1vw, 12px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.layout-design__column {
  position: relative;
  min-width: 0;
  height: 100%;
}

.layout-design__track {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.25vw, 18px);
  will-change: transform;
}

.layout-design__poster {
  flex: none;
  aspect-ratio: 1273 / 1800;
  margin: 0;
  border-radius: clamp(8px, .75vw, 12px);
  background: #090909;
  overflow: hidden;
  transition: filter .35s ease;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
}

.layout-design__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: auto;
}

.layout-design__poster:hover {
  z-index: 2;
  filter: brightness(1.04);
}

.portfolio-end {
  display: block;
  min-height: 0;
  padding: 0;
  border: 0;
  background: #000;
  color: rgba(255, 255, 255, .46);
  overflow: hidden;
}

.portfolio-end__info {
  display: grid;
  grid-template-columns: .7fr 1fr 1.15fr 1.25fr auto;
  align-items: center;
  gap: clamp(24px, 3.5vw, 70px);
  width: 100%;
  min-height: clamp(78px, 8svh, 104px);
  padding: 18px var(--hhh-page-edge);
  border-bottom: 0;
}

.portfolio-end__label,
.portfolio-end__tel,
.portfolio-end__wechat,
.portfolio-end__email {
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: clamp(11px, .78vw, 13px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: left;
  white-space: nowrap;
}

.portfolio-end__wechat span,
.portfolio-end__wechat b {
  font-weight: 400;
}

.portfolio-end__home {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 9px;
  padding: 4px 0;
  border: 0;
  color: rgba(255, 255, 255, .48);
  font-size: clamp(11px, .78vw, 13px);
  font-weight: 400;
  white-space: nowrap;
  transition: color .24s ease;
}

.portfolio-end__home b {
  font-size: 13px;
  font-weight: 400;
}

.portfolio-end__home:hover,
.portfolio-end__home:focus-visible {
  color: rgba(255, 255, 255, .82);
  outline: 0;
}

.portfolio-end__matrix {
  position: relative;
  width: 100%;
  height: clamp(350px, 36svh, 390px);
  min-height: 350px;
  overflow: hidden;
  background: #000;
}

.portfolio-end__matrix-canvas {
  z-index: 0;
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}

.portfolio-end__matrix-copy {
  z-index: 1;
  position: absolute;
  inset: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(15px, 1.05vw, 19px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  pointer-events: none;
}

.portfolio-end__matrix-copy span {
  position: absolute;
  display: block;
  white-space: nowrap;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .48);
}

.portfolio-end__matrix-copy-left,
.portfolio-end__matrix-copy-right {
  top: auto;
  bottom: 40%;
}

.portfolio-end__matrix-copy-left {
  left: var(--hhh-page-edge);
}

.portfolio-end__matrix-copy-right {
  right: var(--hhh-page-edge);
}

@media (max-width: 700px) {
  .portfolio-end__matrix-copy {
    font-size: 13px;
  }

  .portfolio-end__matrix-copy-left,
  .portfolio-end__matrix-copy-right {
    top: auto;
    bottom: 38%;
  }
}

.portfolio-end__matrix-canvas.is-unavailable {
  background: radial-gradient(ellipse at 30% 65%, rgba(255, 255, 255, .42), transparent 36%), #000;
}

@media (min-width: 701px) {
  :root {
    --hhh-page-edge: 48px;
  }

  .selected-work > .campaign-title-panel,
  #brand-packaging .campaign-title-panel {
    padding-right: var(--hhh-page-edge) !important;
    padding-left: var(--hhh-page-edge) !important;
  }

  .operation-showcase__copy {
    padding-left: var(--hhh-page-edge) !important;
  }

  .hhh-thanks {
    width: min(1240px, 78vw);
    margin-inline: auto;
    padding: clamp(132px, 18svh, 190px) 0 calc(clamp(18px, 2.6svh, 32px) + clamp(76px, 7.6vw, 148px));
    overflow: visible;
  }

  .hhh-thanks__word {
    transform-origin: 0% 0%;
  }

  .particle-label--top-left {
    left: var(--hhh-page-edge) !important;
  }

  .particle-label--bottom-right {
    right: var(--hhh-page-edge) !important;
  }

  .portfolio-end {
    min-height: 68px;
    padding: 12px var(--hhh-page-edge);
    border: 0;
    background: #000;
  }

  .portfolio-end__inner {
    grid-template-columns: .72fr 1fr 1.08fr 1.2fr auto;
    align-items: center;
    gap: clamp(26px, 3.4vw, 66px);
  }

  .portfolio-end__identity,
  .portfolio-end__identity > div {
    display: contents;
  }

  .portfolio-end__identity img,
  .portfolio-end__swatches {
    display: none;
  }

  .portfolio-end__identity strong,
  .portfolio-end__identity a,
  .portfolio-end__wechat,
  .portfolio-end__email {
    margin: 0;
    color: rgba(255, 255, 255, .36);
    font-size: clamp(11px, .78vw, 13px);
    font-weight: 400;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
  }

  .portfolio-end__home {
    position: static;
    justify-self: end;
    min-width: 96px;
    height: 28px;
    color: rgba(255, 255, 255, .44);
  }
}

@media (min-width: 701px) {
  /* Keep spacing changes in document flow so every later section follows. */
  .portfolite-hero__content {
    padding: 126px 0 !important;
  }

  .fuel-about {
    min-height: calc(100svh + 62px);
  }

  .fuel-about__ticker {
    margin-top: clamp(152px, 11vw, 176px);
  }

  .selected-work > .campaign-title-panel {
    min-height: clamp(560px, 60svh, 650px);
    padding-top: clamp(150px, 17svh, 180px);
    padding-bottom: clamp(64px, 7svh, 78px);
  }

  #brand-packaging .campaign-title-panel {
    min-height: clamp(560px, 66svh, 700px);
  }

  .brand-orbit {
    min-height: clamp(720px, 82svh, 850px);
    padding-bottom: clamp(44px, 5vh, 62px);
  }

  .font-design {
    min-height: auto;
    padding: clamp(52px, 7svh, 64px) 0 clamp(40px, 5svh, 48px);
  }

  .font-design .font-design__intro {
    min-height: clamp(160px, 18svh, 176px);
  }

  .font-design > .font-design__intro > .font-design__badge,
  .layout-design > .layout-design__intro > .font-design__badge {
    width: clamp(320px, 31vw, 472px);
    height: clamp(66px, 6vw, 92px);
    min-height: 0;
  }

  .font-design .font-design__reel {
    min-height: clamp(600px, 68svh, 680px) !important;
  }

  .layout-design {
    padding-top: clamp(64px, 7svh, 76px);
  }

  .layout-design .layout-design__intro {
    min-height: clamp(178px, 28svh, 268px);
  }
}

/* Keep the approved brand-case presentation; only improve the zoom affordance. */
.brand-case-gallery__viewport,
.operations-canvas__viewport {
  overscroll-behavior: auto !important;
}

.brand-case-gallery__viewport.is-hhh-dragging,
.operations-canvas__viewport.is-hhh-dragging {
  cursor: grabbing !important;
}

.operations-canvas__stage {
  inset: auto !important;
  top: 0 !important;
  left: 0 !important;
  overflow: visible !important;
  transform-origin: 0 0;
  will-change: transform;
}

.operations-canvas__viewport {
  background: #000 !important;
  touch-action: none !important;
}

.operations-canvas__column {
  position: absolute;
  top: 0;
  height: 1px;
}

.operations-canvas__card {
  position: absolute !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  flex: none !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
  transform: none !important;
}

.operations-canvas__card:hover {
  border-color: transparent !important;
  filter: none !important;
}

.operations-canvas__card img,
.operations-canvas__card:hover img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  border-radius: 12px !important;
  transform: none !important;
}

.operations-canvas__controls output {
  min-width: 42px;
  color: rgba(255, 255, 255, .7);
  font-size: 9px;
  text-align: center;
}

/* The brand-system detail pages keep the v54 four-column canvas. */
.brand-case-page .brand-case-gallery__viewport {
  height: clamp(680px, 82svh, 1040px) !important;
}

.brand-case-page .brand-case-gallery__grid {
  grid-auto-flow: row;
  align-content: start;
  align-items: start;
}

.brand-case-page .brand-case-gallery__grid figure,
.brand-case-page .brand-case-gallery__grid img {
  min-width: 0;
}

@media (max-width: 700px) {
  .font-design > .font-design__intro > .font-design__badge,
  .layout-design > .layout-design__intro > .font-design__badge {
    width: min(300px, calc(100% - 36px));
    height: 60px;
    min-height: 0;
  }

  .font-design__reel {
    width: calc(100% - 12px) !important;
    min-height: 650px !important;
  }

  .font-design__card {
    width: clamp(154px, 45vw, 220px) !important;
  }

  .layout-design {
    min-height: 900px;
    padding: 88px 0 112px;
  }

  .layout-design__drift {
    width: calc(100% - 20px);
    height: clamp(620px, 78svh, 760px);
    margin-top: 46px;
  }

  .layout-design__columns {
    gap: 8px;
  }

  .layout-design__track {
    gap: 9px;
  }

  .layout-design__poster {
    border-radius: 6px;
  }

  .selected-year {
    min-height: 310px;
    padding: 64px 10px;
  }

  .selected-year__title {
    font-size: clamp(29px, 8.4vw, 38px);
    line-height: .94;
  }

  .portfolio-end {
    min-height: 280px;
    padding: 48px 24px 26px;
    background: #000;
  }

  .portfolio-end__inner {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 22px;
  }

  .portfolio-end__identity {
    align-items: center;
    gap: 20px;
  }

  .portfolio-end__identity img {
    width: 68px;
    height: 68px;
  }

  .portfolio-end__identity strong {
    margin-bottom: 12px;
    font-size: 21px;
  }

  .portfolio-end__wechat,
  .portfolio-end__email {
    text-align: left;
  }

  .portfolio-end__swatches {
    top: 40px;
    bottom: auto;
  }

  .portfolio-end__home {
    top: 0;
    bottom: auto;
  }

  .portfolio-end__swatches i {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .font-design__card {
    transition: none !important;
  }

  .layout-design__poster {
    transition: none !important;
  }
}

/* Give desktop project media more visual weight without changing the
   established composition or the mobile card count and scale. */
.font-design__card {
  /* Reserve the portrait card height before lazy images finish decoding. */
  aspect-ratio: 1573 / 3086 !important;
  height: auto !important;
}

.font-design__card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

/* Font artwork uses transparent PNG. A JPEG preview filled those transparent
   areas white, so the card itself must keep the portfolio's black canvas. */
.font-design__card,
.font-design__card img {
  background: #141414 !important;
}

.font-design__card {
  border: 1px solid rgba(255, 255, 255, .075) !important;
  background-image: var(--hhh-font-atlas) !important;
  background-position: var(--hhh-font-atlas-x, 0%) var(--hhh-font-atlas-y, 0%) !important;
  background-repeat: no-repeat !important;
  background-size: 700% 200% !important;
}

.font-design__card img {
  background: transparent !important;
}

@media (min-width: 701px) {
  .brand-orbit {
    min-height: clamp(800px, 90svh, 980px);
  }

  .brand-orbit__stage {
    height: clamp(640px, 74svh, 820px);
  }

  .brand-orbit__card {
    width: clamp(360px, 36vw, 660px);
  }

  .font-design .font-design__reel {
    min-height: clamp(660px, 76svh, 780px) !important;
  }

  .font-design__card {
    width: clamp(250px, 17vw, 350px) !important;
  }

  .motion-transition__stage {
    min-height: max(820px, 102svh);
  }

  .hhh-motion-stream__item .motion-reel__card {
    width: 320px !important;
    height: 180px !important;
  }
}

/* Detail work is presented as an open, borderless infinite canvas. */
.hhh-canvas-page,
.hhh-canvas-page .brand-case-gallery,
.hhh-canvas-page .project-document {
  background: #000 !important;
}

.hhh-canvas-page .brand-case-gallery,
.project-document--zoomable {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}

.hhh-canvas-page .brand-case-gallery__viewport,
.project-document--zoomable .brand-case-gallery__viewport {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: none !important;
  height: var(--hhh-viewport-height, max(780px, 92svh)) !important;
  min-height: max(640px, 78svh) !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: #000 !important;
  box-shadow: none !important;
  overflow: hidden !important;
  touch-action: pan-y pinch-zoom;
  cursor: grab !important;
}

.hhh-canvas-page .brand-case-gallery__viewport::before,
.hhh-canvas-page .brand-case-gallery__viewport::after {
  content: none !important;
  display: none !important;
}

.hhh-infinite-canvas__stage {
  display: grid !important;
  grid-auto-flow: row !important;
  align-content: start !important;
  align-items: start !important;
  gap: var(--hhh-gap, 30px) !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  will-change: transform;
}

/* Brand systems: four balanced, sequential columns. Reading order is top to
   bottom in one column, then continues at the top of the next column. */
.hhh-brand-canvas__stage {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, var(--hhh-column-width, 430px))) !important;
  gap: var(--hhh-gap, 34px) !important;
  align-items: start !important;
}

.hhh-brand-column {
  display: flex !important;
  min-width: 0 !important;
  flex-direction: column !important;
  gap: var(--hhh-gap, 34px) !important;
}

.hhh-brand-column figure {
  flex: none !important;
}

.brand-case-page .hhh-brand-canvas__stage {
  will-change: auto !important;
}

.brand-case-page .hhh-brand-canvas__stage img {
  image-rendering: auto !important;
}

.brand-case-page img[src*="/brand-cases/buddy/page-13.jpg"],
.brand-case-page img[src*="/brand-cases/buddy/page-14.jpg"] {
  filter: contrast(.88) brightness(1.08) !important;
}

/* Static operation projects: one complete page per row, never cropped. */
.hhh-linear-canvas__stage {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: var(--hhh-gap, 18px) !important;
  align-content: start !important;
  align-items: start !important;
}

.hhh-linear-canvas__stage figure,
.hhh-linear-canvas__stage img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  image-rendering: auto !important;
}

/* The Shankaka artwork is deliberately separated from the pure-black page by
   a restrained charcoal artwork field. */
.hhh-shankaka-canvas .hhh-brand-canvas__stage {
  box-sizing: content-box !important;
  padding: 24px !important;
  background: #111 !important;
}

.hhh-free-canvas__stage {
  display: block !important;
  position: relative !important;
  min-width: 1280px !important;
  min-height: 900px !important;
}

.hhh-infinite-canvas__stage.hhh-free-canvas__stage figure {
  position: absolute !important;
  width: var(--hhh-item-width, 560px) !important;
}

.hhh-infinite-canvas__stage figure {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: none !important;
}

.hhh-infinite-canvas__stage img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.hhh-canvas-page .brand-case-gallery__toolbar {
  z-index: 50 !important;
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, .2) !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, .68) !important;
  backdrop-filter: blur(12px);
}

.project-document--video .video-player__controls {
  display: none !important;
}

.project-document--video video {
  cursor: auto !important;
}

@media (max-width: 700px) {
  .hhh-canvas-page .brand-case-gallery__viewport,
  .project-document--zoomable .brand-case-gallery__viewport {
    height: var(--hhh-viewport-height, max(660px, 84svh)) !important;
    min-height: max(560px, 72svh) !important;
  }
}

/* Mobile keeps the desktop composition and artwork proportions instead of
   replacing the portfolio with a compact, card-like layout. */
@media (max-width: 700px) {
  html,
  body {
    overflow-x: clip;
  }

  .portfolite-hero__content {
    width: calc(100% - 36px);
  }

  .portfolite-hero h1 {
    font-size: clamp(54px, 15.6vw, 66px);
  }

  .fuel-about {
    min-height: 0;
    padding: 24px 18px 0;
  }

  .fuel-about__body {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr) !important;
    grid-template-areas:
      "portrait rail"
      "main main";
    column-gap: 14px;
    row-gap: 28px;
    width: 100%;
  }

  .fuel-about__portrait {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .fuel-about__rail {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    min-height: 100%;
    gap: 18px;
  }

  .fuel-about__rail a,
  .fuel-about__rail b {
    overflow-wrap: anywhere;
  }

  .fuel-about__main {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .fuel-about__ticker {
    width: calc(100% + 36px);
    margin: 58px -18px 0;
  }

  .campaign-title-panel {
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 420px;
    height: 420px;
    padding: 58px 18px;
  }

  .campaign-title-panel__copy {
    width: 100%;
    max-width: none;
    font-size: clamp(31px, 8.7vw, 37px);
  }

  .campaign-title-panel__arrow {
    position: absolute;
    right: 18px;
    bottom: 58px;
    width: 64px;
    height: 64px;
  }

  .featured-projects {
    padding: 54px 0 38px;
  }

  .featured-projects__side-copy {
    display: block;
    pointer-events: none;
  }

  .particle-label {
    font-size: 10px;
    opacity: .82;
    transform: scale(.78);
  }

  .particle-label--top-left {
    left: 14px;
    top: 28px;
    transform-origin: left top;
  }

  .particle-label--bottom-right {
    right: 14px;
    bottom: 28px;
    transform-origin: right bottom;
  }

  .featured-project-card {
    height: auto;
    min-height: 0;
    padding: 10px 0 18px;
  }

  .featured-project-card__link {
    width: calc(100% - 54px);
    height: auto;
  }

  .featured-project-card--left .featured-project-card__link {
    margin-left: 18px;
    margin-right: auto;
  }

  .featured-project-card--right .featured-project-card__link {
    margin-left: auto;
    margin-right: 18px;
  }

  .featured-project-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .motion-transition {
    padding-top: 88px;
  }

  .motion-transition__stage {
    min-height: 820px;
    height: 820px;
  }

  .operation-showcase {
    padding-top: 104px;
  }

  .operation-showcase__copy {
    min-height: 520px;
  }

  .operation-showcase__viewer {
    min-height: 820px;
  }

  .brand-packaging-title,
  .brand-packaging-title .campaign-title-panel {
    height: 420px;
    min-height: 420px;
  }

  .brand-orbit {
    min-height: 760px;
    padding-top: 54px;
    padding-bottom: 66px;
  }

  .brand-orbit__card {
    width: clamp(280px, 78vw, 330px);
  }

  .font-design {
    min-height: 980px;
    padding-top: 88px;
    padding-bottom: 80px;
  }

  .font-design__reel {
    width: calc(100% - 8px) !important;
    min-height: 690px !important;
  }

  .font-design__card {
    width: clamp(220px, 64vw, 278px) !important;
  }

  .layout-design {
    min-height: 1220px;
    padding: 88px 0 104px;
  }

  .layout-design__drift {
    width: calc(100% - 16px);
    height: clamp(860px, 106svh, 960px);
    margin-top: 48px;
  }

  .layout-design__columns {
    gap: 10px;
  }

  .layout-design__track {
    gap: 11px;
  }

  .selected-year {
    min-height: 330px;
    padding: 66px 12px;
  }

  .selected-year__title {
    font-size: clamp(34px, 9.5vw, 42px);
  }

  .portfolio-end {
    min-height: 190px;
    padding: 36px 18px 22px;
  }

  .portfolio-end__inner {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 16px 18px;
  }

  .portfolio-end__identity {
    grid-column: 1 / -1;
    align-items: center;
    gap: 18px;
  }

  .portfolio-end__identity img {
    width: 48px;
    height: 48px;
  }

  .portfolio-end__identity strong {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .portfolio-end__wechat,
  .portfolio-end__email {
    font-size: 10px;
  }

  .portfolio-end__email {
    text-align: right;
  }

  .portfolio-end__home {
    top: 0;
    right: 0;
    bottom: auto;
  }

  .portfolio-end__swatches {
    top: 5px;
    right: 112px;
    bottom: auto;
  }
}

/* Static operation and brand cases are ordinary full-width documents. */
.brand-case-page > .brand-case-page__heading,
.hhh-linear-document-page > .project-document__heading,
.brand-case-page .brand-case-gallery__toolbar,
.hhh-linear-document-page .brand-case-gallery__toolbar {
  display: none !important;
}

.hhh-linear-document-page,
.brand-case-page {
  width: 100%;
  height: auto !important;
  min-height: 100svh;
  padding: 0 0 clamp(46px, 7svh, 82px) !important;
  background: #000 !important;
  overflow: visible !important;
}

.hhh-linear-document-page .project-document,
.hhh-linear-document-page .brand-case-gallery,
.brand-case-page .brand-case-gallery {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #000 !important;
  box-shadow: none !important;
}

.hhh-linear-document-page .hhh-linear-document__viewport,
.hhh-linear-document__viewport,
.brand-case-page .brand-case-gallery__viewport {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: #000 !important;
  box-shadow: none !important;
  overflow: visible !important;
  touch-action: auto !important;
  cursor: inherit !important;
}

.hhh-linear-document__stack,
.brand-case-page .brand-case-gallery__grid {
  display: grid !important;
  position: static !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-auto-flow: row !important;
  align-items: start !important;
  gap: clamp(10px, 1.05vw, 18px) !important;
  width: var(--hhh-document-width, 100%) !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: #000 !important;
  transform: none !important;
  transform-origin: initial !important;
}

.hhh-document-zoom-indicator {
  z-index: 80;
  position: fixed;
  right: 20px;
  bottom: 20px;
  min-width: 58px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 4px;
  background: rgba(8, 8, 8, .78);
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hhh-document-zoom-indicator.is-visible {
  opacity: 1;
  transform: none;
}

.brand-case-page .hhh-brand-column {
  display: contents !important;
}

.hhh-linear-document__stack figure,
.brand-case-page .brand-case-gallery__grid figure {
  display: block !important;
  position: static !important;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #000 !important;
  box-shadow: none !important;
  overflow: visible !important;
  transform: none !important;
}

.hhh-linear-document__stack > figure:nth-child(n + 3),
.brand-case-page .brand-case-gallery__grid > figure:nth-child(n + 3) {
  content-visibility: auto;
  contain-intrinsic-size: auto 1000px;
}

.hhh-linear-document__stack img,
.brand-case-page .brand-case-gallery__grid img {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain !important;
  image-rendering: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #000 !important;
  box-shadow: none !important;
  transform: none !important;
}

.hhh-document-return {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  margin: clamp(44px, 7svh, 72px) 20px 0;
  padding: 12px 3px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .62);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  letter-spacing: .08em;
  transition: gap .3s ease, color .3s ease, border-color .3s ease;
}

.hhh-document-return span {
  font-size: 16px;
}

.hhh-document-return:hover,
.hhh-document-return:focus-visible {
  gap: 15px;
  border-color: #fff;
  color: #fff;
  outline: 0;
}

@media (max-width: 700px) {
  .motion-reel__item,
  .motion-reel__item:nth-child(n) {
    display: none !important;
  }

  .motion-reel__item:nth-child(1),
  .motion-reel__item:nth-child(4),
  .motion-reel__item:nth-child(6),
  .motion-reel__item:nth-child(10) {
    display: block !important;
    --travel-duration: 14s !important;
  }

  /* Stream cards are cloned after the legacy source items. Keep the active
     mobile stream visible even though the original reel sources are hidden. */
  .motion-reel__item.hhh-motion-stream__item {
    display: block !important;
  }

  .fuel-about__ticker-track,
  .fuel-about__ticker:hover .fuel-about__ticker-track {
    animation-duration: 34s !important;
    animation-play-state: running !important;
  }

  .motion-reel__card,
  .motion-reel__card video {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .motion-reel__card video {
    min-width: 100%;
    min-height: 100%;
    transform: translateZ(0) scale(1.01);
  }

  .hhh-motion-stream__item .motion-reel__card {
    height: clamp(78px, 23.6vw, 92px);
  }

  .font-design {
    min-height: 900px;
    padding-top: 78px;
    padding-bottom: 68px;
  }

  .font-design__reel {
    min-height: 620px !important;
  }

  .font-design__card {
    width: clamp(190px, 52vw, 230px) !important;
  }

  .hhh-linear-document-page,
  .brand-case-page {
    padding-bottom: 46px !important;
  }

  .hhh-linear-document__stack,
  .brand-case-page .brand-case-gallery__grid {
    gap: 8px !important;
  }

  .hhh-document-return {
    margin: 40px 16px 0;
    font-size: 13px;
  }
}

@media (hover: none), (pointer: coarse) {
  .fuel-about__ticker:hover .fuel-about__ticker-track {
    animation-play-state: running !important;
  }
}

/* In-page project viewer */
body.hhh-project-viewer-open {
  position: fixed;
  top: var(--hhh-viewer-scroll-y, 0);
  right: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

body.hhh-project-viewer-booting {
  overflow: hidden;
}

.hhh-project-viewer {
  z-index: 10000;
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 58px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.hhh-project-viewer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hhh-project-viewer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, .66);
  cursor: default;
  -webkit-backdrop-filter: blur(16px) brightness(.5);
  backdrop-filter: blur(16px) brightness(.5);
}

.hhh-project-viewer__side-cursor {
  z-index: 1;
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease;
}

.hhh-project-viewer__side-cursor.is-visible {
  opacity: 1;
}

.hhh-project-viewer__side-cursor-arrow,
.hhh-project-viewer__side-cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  will-change: transform;
}

.hhh-project-viewer__side-cursor-arrow {
  width: 31px;
  height: 31px;
  transform-origin: 0 0;
  transition: scale .16s ease;
}

.hhh-project-viewer__side-cursor-arrow svg {
  display: block;
  width: 31px;
  height: 31px;
  overflow: visible;
}

.hhh-project-viewer__side-cursor-arrow path {
  fill: #fff;
  stroke: rgba(0, 0, 0, .3);
  stroke-width: .7;
  stroke-linejoin: round;
}

.hhh-project-viewer__side-cursor-label {
  padding: 5.5px 11px;
  border-radius: 999px;
  background: #fff;
  color: #000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .16);
  font: 600 12px/1.1 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  white-space: nowrap;
  transition: scale .16s ease;
}

.hhh-project-viewer__side-cursor.is-pressed .hhh-project-viewer__side-cursor-arrow,
.hhh-project-viewer__side-cursor.is-pressed .hhh-project-viewer__side-cursor-label {
  scale: .92;
}

@media (hover: hover) and (pointer: fine) {
  body.hhh-project-viewer-open .cursor-ring,
  body.hhh-project-viewer-open .cursor-dot {
    opacity: 0 !important;
  }

  .hhh-project-viewer__backdrop {
    cursor: none;
  }

  .hhh-project-viewer__panel,
  .hhh-project-viewer__panel * {
    cursor: auto;
  }

  .hhh-project-viewer__panel button,
  .hhh-project-viewer__panel input {
    cursor: pointer;
  }
}

.hhh-project-viewer__panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: min(58vw, 940px);
  height: min(92svh, 1000px);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 4px;
  background: #050505;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .72);
  transform: translateY(20px) scale(.985);
  transition: width .35s cubic-bezier(.22, 1, .36, 1), height .35s cubic-bezier(.22, 1, .36, 1), transform .35s cubic-bezier(.22, 1, .36, 1);
}

.hhh-project-viewer.is-open .hhh-project-viewer__panel {
  transform: none;
}

.hhh-project-viewer__panel.is-expanded,
.hhh-project-viewer__panel.is-native-fullscreen,
.hhh-project-viewer__panel:fullscreen {
  width: 100vw;
  height: 100svh;
  max-width: none;
  max-height: none;
  border: 0;
  border-radius: 0;
}

.hhh-project-viewer__header {
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  padding: 6px 10px 6px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  background: rgba(7, 7, 7, .93);
  color: #fff;
}

.hhh-project-viewer__category,
.hhh-project-viewer__title h2,
.hhh-project-viewer__title span {
  margin: 0;
  letter-spacing: 0;
}

.hhh-project-viewer__category {
  display: none;
}

.hhh-project-viewer__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.hhh-project-viewer__title h2 {
  flex: none;
  color: rgba(255, 255, 255, .62);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.1;
}

.hhh-project-viewer__title span {
  overflow: hidden;
  color: rgba(255, 255, 255, .28);
  font-size: 7px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hhh-project-viewer__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 5px;
}

.hhh-project-viewer__actions button,
.hhh-project-player__controls button {
  display: grid;
  place-items: center;
  flex: none;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, .66);
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.hhh-project-viewer__actions button {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 .5px rgba(0, 0, 0, .22);
  transition: filter .18s ease, transform .18s ease;
}

.hhh-project-viewer__actions button:hover,
.hhh-project-viewer__actions button:focus-visible,
.hhh-project-player__controls button:hover,
.hhh-project-player__controls button:focus-visible {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  outline: 0;
}

.hhh-project-viewer__actions button:hover,
.hhh-project-viewer__actions button:focus-visible {
  filter: brightness(1.08);
}

.hhh-project-viewer__close {
  background: #ff5f57 !important;
  color: rgba(71, 12, 9, .7) !important;
  font-size: 0;
  line-height: 1;
}

.hhh-project-viewer__close:hover,
.hhh-project-viewer__close:focus-visible {
  color: rgba(71, 12, 9, .84) !important;
}

.hhh-project-viewer__fullscreen {
  background: #28c840 !important;
  color: rgba(4, 70, 18, .72) !important;
}

.hhh-project-viewer__actions svg {
  display: block;
  width: 9px;
  height: 9px;
  overflow: visible;
  transition: transform .2s ease;
}

.hhh-project-viewer__actions svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.hhh-project-viewer__fullscreen:hover,
.hhh-project-viewer__fullscreen:focus-visible {
  color: rgba(4, 70, 18, .86) !important;
}

.hhh-project-viewer__fullscreen.is-active svg {
  transform: scale(.82) rotate(180deg);
}

.hhh-project-viewer__content {
  position: relative;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #000;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.hhh-project-viewer__content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.hhh-project-viewer__scroll-indicator {
  z-index: 3;
  position: absolute;
  top: 54px;
  right: 1px;
  bottom: 12px;
  width: 13px;
  opacity: 0;
  pointer-events: none;
  touch-action: none;
  transition: opacity .2s ease;
}

.hhh-project-viewer__scroll-indicator.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.hhh-project-viewer__scroll-indicator i {
  display: block;
  width: 3px;
  min-height: 48px;
  margin-left: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .38);
  will-change: transform;
  transition: background .18s ease;
}

.hhh-project-viewer__scroll-indicator:hover i,
.hhh-project-viewer__scroll-indicator.is-dragging i {
  background: rgba(255, 255, 255, .7);
}

.hhh-project-viewer__stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(7px, .8vw, 13px);
  width: 100%;
  margin: 0;
  padding: 0;
}

/* The spokesperson artwork is split only for delivery. Keep its panels
   visually continuous so the mobile fallback never reveals the black canvas. */
.hhh-project-viewer__stack--virtual-spokesperson,
.hhh-project-viewer__stack--virtual-spokesperson figure,
.hhh-project-viewer__stack--virtual-spokesperson img {
  background: #fff;
}

.hhh-project-viewer__stack--virtual-spokesperson {
  gap: 0 !important;
}

.hhh-project-viewer__stack figure,
.hhh-project-viewer__stack picture {
  display: block;
  width: 100%;
  margin: 0;
}

.hhh-project-viewer__stack figure:nth-child(n + 3) {
  /* The viewer already loads in batches. In Chromium, auto containment here
     can collapse dynamic figures to zero height and strand the later pages. */
  content-visibility: visible;
  contain-intrinsic-size: unset;
}

.hhh-project-viewer__stack img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  background: #000;
}

.hhh-project-player {
  isolation: isolate;
}

.hhh-project-player__stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #000;
}

.hhh-project-player__video {
  z-index: 1;
  position: relative;
}

.hhh-project-player__poster,
.hhh-project-player__canvas {
  z-index: 2;
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  pointer-events: none;
}

.hhh-project-player__poster {
  opacity: 1;
  transition: opacity .16s linear;
}

.hhh-project-player__poster.is-hidden {
  opacity: 0;
}

.hhh-project-player__canvas {
  opacity: 0;
}

.hhh-project-player__canvas.is-ready {
  opacity: 1;
}

.hhh-project-player__controls {
  z-index: 3;
}

.hhh-project-viewer__figure--preview {
  min-height: min(68vh, 720px);
  overflow: hidden;
  background-color: #050505;
  background-position: center;
  background-size: cover;
}

.hhh-project-viewer__figure--preview img {
  opacity: 0;
  transition: opacity .24s ease;
}

.hhh-project-viewer__figure--preview.is-loaded {
  min-height: 0;
  background-image: none !important;
}

.hhh-project-viewer__figure--preview.is-loaded img {
  opacity: 1;
}

.hhh-project-viewer__load-sentinel {
  display: block;
  width: 100%;
  height: 1px;
}

.hhh-project-viewer__loading,
.hhh-project-viewer__error {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  min-height: 100%;
  color: rgba(255, 255, 255, .54);
  font-size: 10px;
  letter-spacing: .16em;
}

.hhh-project-viewer__loading i {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-top-color: rgba(255, 255, 255, .82);
  border-radius: 50%;
  animation: hhh-viewer-spin .8s linear infinite;
}

.hhh-project-viewer__loading--preview {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #050505;
}

.hhh-project-viewer__loading--preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}

.hhh-project-viewer__loading--preview i {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -12px 0 0 -12px;
  background: rgba(0, 0, 0, .26);
}

.hhh-project-viewer__error p {
  margin: 0;
}

.hhh-project-viewer__error a {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
}

@keyframes hhh-viewer-spin {
  to { transform: rotate(360deg); }
}

.hhh-project-player {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  width: 100%;
  min-height: 100%;
  background: #000;
}

.hhh-project-player__video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #000;
  cursor: pointer;
}

.hhh-project-player__controls {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 14px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: #070707;
}

.hhh-project-player__play span {
  font-size: 13px;
  line-height: 1;
}

.hhh-project-player__progress {
  --hhh-video-progress: 0%;
  width: 100%;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.hhh-project-player__progress::-webkit-slider-runnable-track {
  height: 2px;
  background: linear-gradient(90deg, #fff var(--hhh-video-progress), rgba(255, 255, 255, .24) var(--hhh-video-progress));
}

.hhh-project-player__progress::-webkit-slider-thumb {
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  -webkit-appearance: none;
  appearance: none;
}

.hhh-project-player__progress::-moz-range-track {
  height: 2px;
  background: rgba(255, 255, 255, .24);
}

.hhh-project-player__progress::-moz-range-progress {
  height: 2px;
  background: #fff;
}

.hhh-project-player__progress::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #fff;
}

.hhh-project-player__volume-icon {
  display: block;
  width: 17px;
  height: 17px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hhh-project-player__volume-mute {
  display: none;
}

.hhh-project-player__volume.is-muted .hhh-project-player__volume-wave {
  display: none;
}

.hhh-project-player__volume.is-muted .hhh-project-player__volume-mute {
  display: block;
}

.hhh-project-player__time {
  min-width: 84px;
  color: rgba(255, 255, 255, .54);
  font-size: 10px;
  text-align: right;
}

@media (max-width: 700px) {
  .hhh-project-viewer {
    padding: 8px;
  }

  .hhh-project-viewer__panel {
    width: calc(100vw - 16px);
    height: calc(100svh - 16px);
    min-height: 0;
  }

  .hhh-project-viewer__header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 44px;
    padding: 6px 7px 6px 12px;
  }

  .hhh-project-viewer__title {
    grid-column: 1;
    align-self: center;
    gap: 2px;
  }

  .hhh-project-viewer__title h2 {
    font-size: 15px;
  }

  .hhh-project-viewer__title span {
    font-size: 7px;
  }

  .hhh-project-viewer__actions {
    grid-column: 2;
    grid-row: 1;
  }

  .hhh-project-player__controls button {
    width: 30px;
    height: 30px;
  }

  .hhh-project-viewer__actions button {
    width: 13px;
    height: 13px;
  }

  .hhh-project-viewer__stack {
    gap: 5px;
  }

  /* Match the desktop editorial portrait: muted colour, never monochrome. */
  .fuel-about__portrait > img:not(.hhh-portrait-color) {
    filter: grayscale(0) saturate(.68) contrast(1.02) brightness(.62) !important;
  }

  /* Desktop keeps the first and third biography paragraphs; mobile mirrors
     that exact editorial selection. */
  .fuel-about__intro > p:nth-child(2) {
    display: none !important;
  }

  .hhh-project-player__controls {
    grid-template-columns: auto minmax(60px, 1fr) auto;
    gap: 5px;
    min-height: 50px;
    padding: 7px 8px;
  }

  .hhh-project-player__time {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-project-card__media {
    animation: none !important;
    transform: none !important;
  }

  .hhh-project-viewer,
  .hhh-project-viewer__panel {
    transition-duration: .01ms;
  }
}
