.has-floaters .floaters {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20; /* above background, below UI */
}

.floater {
  position: absolute;
  left: var(--floater-left);
  bottom: -60px;                        /* start slightly below viewport */
  width: var(--floater-size);
  height: var(--floater-size);
  object-fit: contain;
  opacity: .0;
  animation: floater-rise var(--floater-dur) linear var(--floater-delay) forwards;
  will-change: transform, opacity;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.15));
}

/* Keyframes: rise + gentle horizontal drift */
@keyframes floater-rise {
  0%   { transform: translate(0, 0) rotate(0deg);   opacity: 0; }
  5%   { opacity: .75; }
  50%  { transform: translate(var(--floater-drift), -50vh) rotate(10deg); opacity: .9; }
  100% { transform: translate(calc(var(--floater-drift) * 2), -110vh) rotate(20deg); opacity: 0; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .floater { animation: none; display: none; }
}

/* Performance block */
.performance-block{
  max-width: 700px;          /* match image natural width */
  margin: 2rem auto;         /* center in main column */

  padding: 1.25rem 1rem 0 1rem;
  color: #fff;               /* assume dark background */
  font-family: "Montserrat Variable", system-ui, -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
}

.performance-block h2{
  margin: 0 0 .75rem 0;
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  line-height: 1.2;
  font-weight: 800;
  color: #FBF719;            /* highlight yellow */
}

.performance-intro{
  margin: 0 0 1rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e9e9e9;
}

.performance-figure{
  margin: 0;                 /* remove default figure margins */
}

.performance-img{
  display: block;
  width: 100%;               /* responsive down from 734px */
  height: auto;
  border-radius: .375rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
}

.img-note{
  margin-top: .5rem;
  font-size: .9rem;
  line-height: 1.45;
  color: #cfcfcf;
}

/* Optional: tighten spacing on very small screens */
@media (max-width: 480px){
  .performance-block{ margin: 1.5rem auto; }
  .performance-intro{ font-size: 1rem; }
  .img-note{ font-size: .85rem; }
}

