/* Reuse the actual three brand components, with room beside the hero copy. */
.flow-standalone-hero__inner {
  display: grid;
  width: min(100%, 1240px);
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  align-items: center;
  gap: clamp(28px, 4vw, 60px);
}

.hero-logo-motion {
  width: 100%;
  max-width: 520px;
  min-width: 0;
  margin: 0;
  justify-self: center;
  transform: translateX(clamp(-44px, -3vw, -24px)) scale(1.1);
  transform-origin: center;
}

.hero-logo-motion__canvas {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 17px 18px rgba(83, 51, 29, 0.055));
}

@media (max-width: 980px) {
  .flow-standalone-hero__inner { grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr); gap: 20px; }
}

@media (max-width: 760px) {
  .flow-standalone-hero__inner { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .flow-standalone-hero__copy { max-width: 620px; justify-self: center; text-align: center; }
  .flow-standalone-hero p { margin-right: auto; margin-left: auto; }
  .hero-logo-motion { max-width: 300px; transform: none; }
}
