.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  padding: 7.5rem clamp(1.5rem, 5vw, 4rem) 6rem;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(247, 153, 168, 0.55), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(249, 160, 76, 0.5), transparent 55%),
    linear-gradient(160deg, #fde3d3 0%, #fbc8b0 45%, #f9b3a4 100%);
  overflow: hidden;
}

.hero__copy {
  position: relative;
  z-index: 2;
  animation: rise 1s ease both;
}

.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rosewood);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(4rem, 11vw, 8.5rem);
  line-height: 0.92;
  color: var(--cream);
  text-shadow: 0 0.25rem 2.5rem rgba(138, 59, 65, 0.25);
  margin-bottom: 1.75rem;
}

.hero__title em {
  color: var(--rosewood);
}

.hero__subtitle {
  max-width: 26rem;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--espresso);
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__visual {
  position: relative;
  z-index: 1;
  animation: rise 1s ease 0.25s both;
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12rem 12rem var(--radius-card) var(--radius-card);
  box-shadow: var(--shadow-card);
}

.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 1rem 0;
  background: rgba(138, 59, 65, 0.92);
}

.hero__marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.hero__marquee-track span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  color: var(--cream);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(2.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .hero__marquee-wa {
    display: none;
  }

  .hero__marquee-track {
    animation-duration: 14s;
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 6.5rem;
    text-align: center;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 22rem;
    margin-inline: auto;
    padding-bottom: 3rem;
  }
}
