.hero {
  background: linear-gradient(135deg, #fdf7f2, #f3deff);
  padding: 88px 0 72px;
}

.hero-inner {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  max-width: 36rem;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7c678f;
  margin: 0 0 8px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  margin: 0 0 14px;
}

.hero-text {
  margin: 0 0 20px;
  font-size: 0.98rem;
  color: #7c678f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-media {
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at 0 0, #f8e6f0, transparent 65%);
  border: 1px solid rgba(240,226,255,0.8);
  padding: 10px;
}

.hero-media-inner {
  border-radius: 16px;
  min-height: clamp(380px, 52vw, 620px);
  background-image: linear-gradient(135deg, #2b1d32, #503054);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-media-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(227,182,201,0.35), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(248,230,240,0.35), transparent 55%);
  mix-blend-mode: screen;
}

.hero-media-placeholder {
  position: relative;
  padding: 24px 22px;
  color: #fdf7f2;
  z-index: 1;
}

.hero-media-placeholder h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 0 0 8px;
}

.hero-media-placeholder p {
  margin: 0;
  font-size: 0.9rem;
  max-width: 18rem;
  opacity: 0.9;
}

@media (min-width: 880px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}


.hero-media-placeholder.has-image {
  display: none;
}


