[data-pipi-section="home-hero"] {
  position: relative;
  overflow: hidden;
  background: var(--pipi-paper-warm);
}

[data-pipi-section="home-hero"] .pipi-home-hero__blob {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

[data-pipi-section="home-hero"] .pipi-home-hero__blob--large {
  top: -20vw;
  right: -16vw;
  width: 52vw;
  height: 52vw;
  background: var(--pipi-band-warm);
}

[data-pipi-section="home-hero"] .pipi-home-hero__blob--small {
  bottom: -13vw;
  left: -9vw;
  width: 24vw;
  height: 24vw;
  background: var(--pipi-accent-wash);
}

[data-pipi-section="home-hero"] .pipi-home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(30px, 5vw, 66px);
  width: 100%;
  max-width: var(--pipi-wrap);
  margin-inline: auto;
  padding: clamp(44px, 6.4vw, 84px) var(--pipi-gutter) clamp(52px, 7vw, 92px);
}

[data-pipi-section="home-hero"] .pipi-home-hero__heading {
  margin: 16px 0 18px;
  font-size: clamp(31px, 4.9vw, 52px);
  line-height: 1.2;
}

[data-pipi-section="home-hero"] .pipi-home-hero__heading em {
  color: var(--pipi-local-accent);
  font-style: normal;
}

[data-pipi-section="home-hero"] .pipi-home-hero__lede {
  max-width: 36ch;
}

[data-pipi-section="home-hero"] .pipi-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

[data-pipi-section="home-hero"] .pipi-home-hero__credentials {
  max-width: 44ch;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--pipi-line);
  color: var(--pipi-slate-2);
  font-size: 13.5px;
  line-height: 1.75;
}

[data-pipi-section="home-hero"] .pipi-home-hero__figure {
  position: relative;
}

[data-pipi-section="home-hero"] .pipi-home-hero__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--pipi-radius-large);
  background: #fff;
  box-shadow: 0 20px 52px rgb(23 21 26 / 11%);
  object-fit: cover;
  object-position: 50% 26%;
}

[data-pipi-section="home-hero"] .pipi-home-hero__artwork {
  position: absolute;
  bottom: 22px;
  left: -24px;
  display: block;
  width: 43%;
  padding: 9px 9px 10px;
  transform: rotate(-3.2deg);
  border-radius: calc(var(--pipi-radius) + 2px);
  background: #fff;
  box-shadow: 0 14px 36px rgb(23 21 26 / 17%);
}

[data-pipi-section="home-hero"] .pipi-home-hero__artwork-image {
  width: 100%;
  aspect-ratio: 5 / 4;
  border-radius: 6px;
  object-fit: cover;
}

[data-pipi-section="home-hero"] .pipi-home-hero__artwork-caption {
  display: block;
  margin-top: 7px;
  color: var(--pipi-slate-2);
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.72;
  text-align: center;
}

[data-pipi-section="home-hero"] .pipi-eyebrow,
[data-pipi-section="home-hero"] .pipi-home-hero__heading,
[data-pipi-section="home-hero"] .pipi-home-hero__lede,
[data-pipi-section="home-hero"] .pipi-home-hero__actions,
[data-pipi-section="home-hero"] .pipi-home-hero__credentials,
[data-pipi-section="home-hero"] .pipi-home-hero__figure {
  animation: pipi-home-hero-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

[data-pipi-section="home-hero"] .pipi-home-hero__heading { animation-delay: 0.05s; }
[data-pipi-section="home-hero"] .pipi-home-hero__lede { animation-delay: 0.11s; }
[data-pipi-section="home-hero"] .pipi-home-hero__actions { animation-delay: 0.17s; }
[data-pipi-section="home-hero"] .pipi-home-hero__credentials { animation-delay: 0.22s; }
[data-pipi-section="home-hero"] .pipi-home-hero__figure { animation-delay: 0.09s; }

@keyframes pipi-home-hero-rise {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 920px) {
  [data-pipi-section="home-hero"] .pipi-home-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  [data-pipi-section="home-hero"] .pipi-home-hero__figure {
    order: -1;
    max-width: 440px;
  }

  [data-pipi-section="home-hero"] .pipi-home-hero__artwork {
    position: relative;
    bottom: auto;
    left: auto;
    width: 56%;
    margin: -52px 0 0 6px;
    transform: rotate(-2.4deg);
  }
}
