.hero-b {
  position: relative;
  padding: 64px 0 96px;
  background: var(--cream);
  overflow: hidden;
}
.hero-b__waves {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.wave {
  stroke-linecap: round;
  transform-origin: center;
  will-change: transform;
}
.wave--1 { animation: waveDrift1 22s ease-in-out infinite alternate; }
.wave--2 { animation: waveDrift2 28s ease-in-out infinite alternate; }
.wave--3 { animation: waveDrift3 36s ease-in-out infinite alternate; }
.wave--4 { animation: waveDrift4 32s ease-in-out infinite alternate; }
.wave--5 { animation: waveDrift5 40s ease-in-out infinite alternate; }

@keyframes waveDrift1 {
  0%   { transform: translate3d(-40px, -6px, 0) scaleY(1);   }
  100% { transform: translate3d( 40px,  6px, 0) scaleY(1.08);}
}
@keyframes waveDrift2 {
  0%   { transform: translate3d( 30px,  4px, 0) scaleY(1);   }
  100% { transform: translate3d(-30px, -4px, 0) scaleY(0.94);}
}
@keyframes waveDrift3 {
  0%   { transform: translate3d(-80px, 0, 0); }
  100% { transform: translate3d( 80px, 0, 0); }
}
@keyframes waveDrift4 {
  0%   { transform: translate3d( 60px, 8px, 0); }
  100% { transform: translate3d(-60px,-8px, 0); }
}
@keyframes waveDrift5 {
  0%   { transform: translate3d(-50px, 0, 0) scaleY(0.95); }
  100% { transform: translate3d( 50px, 0, 0) scaleY(1.05); }
}

.hero-b__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-b__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 72px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.hero-b__headline {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 24px;
  font-weight: 400;
}
.hero-b__headline em { font-style: italic; color: var(--teal); font-weight: 500; }
.hero-b__lede {
  font-size: 18px;
  color: var(--ink-muted);
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-b__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
