.portfolio-motion { width: 100%; max-width: none; padding: 24px 0 0; }
.portfolio-reel { margin: 0; }
.reel-stage { position: relative; isolation: isolate; overflow: hidden; aspect-ratio: 21/9; background: #101828; }
.reel-clip { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; opacity: 0; z-index: 0; pointer-events: none; transition: opacity 650ms ease; }
.reel-clip-portrait { object-fit: cover; object-position: 50% 43%; background: #101828; }
.reel-clip-housing { object-position: 70% 50%; }
.reel-clip-vight { object-position: 50% 100%; }
.reel-clip.is-active { opacity: 1; z-index: 2; }
.reel-clip.is-leaving { opacity: 1; z-index: 1; }
.reel-progress { height: 2px; background: var(--line); overflow: hidden; }
.reel-progress span { display: block; height: 100%; background: var(--blue); transform: scaleX(0); transform-origin: left; }
.reel-footer { display: flex; justify-content: space-between; align-items: center; gap: 20px; max-width: var(--max); margin-inline: auto; padding: 16px clamp(24px,4.3vw,72px) 0; }
.reel-caption { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 18px; min-width: 0; }
.reel-company { color: var(--blue); font: 500 1.125rem/1.3 var(--display); letter-spacing: -.02em; }
.reel-company > span:last-child { margin-left: 4px; }
.reel-description { color: var(--muted); font: 400 .875rem/1.5 var(--body); }
.reel-controls { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.reel-controls[hidden] { display: none; }
.reel-controls button { min-height: 44px; border: 0; padding: 8px 0; background: none; color: var(--muted); font: 400 .875rem/1.4 var(--body); cursor: pointer; }
.reel-toggle { min-width: 66px; text-align: right; }
.reel-toggle span { display: inline-block; width: 12px; margin-left: 7px; }
.reel-controls button:hover { color: var(--blue); }
.reel-controls button:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
@media (max-width: 760px) {
  .portfolio-motion { padding: 0; }
  .reel-stage { aspect-ratio: 1/1; max-height: none; }
  .reel-footer { align-items: flex-start; gap: 12px; padding: 12px clamp(24px,4.3vw,72px) 0; }
  .reel-caption { display: grid; gap: 4px; }
  .reel-controls { gap: 14px; }
  .reel-controls button { font-size: .8125rem; }
}
@media (max-width: 360px) { .reel-footer { flex-wrap: wrap; }.reel-controls { margin-left: auto; } }
@media (prefers-reduced-motion: reduce) { .reel-clip { transition: none; } }
