.fv-hero {
  position: relative;
  padding-bottom: 50px;
  background: transparent;
  overflow: visible;
}

.fv-hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 30px;
  align-items: center;

  padding: 0 26px 20px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 10px 30px rgba(108, 63, 122, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fv-hero__media {
  position: relative;
}

.fv-hero__media::after {
  content: "";
  position: absolute;
  inset: auto 8% -16px 8%;
  height: 28px;
  background: rgba(88, 44, 75, 0.10);
  filter: blur(16px);
  border-radius: 50%;
  z-index: 0;
}

.fv-hero__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 28px;
  box-shadow:
    0 22px 50px rgba(77, 39, 66, 0.14),
    0 4px 14px rgba(77, 39, 66, 0.08);
}

.fv-hero__content {
  max-width: 760px;
}

.fv-hero__eyebrow {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.5;
  color: #9b5c7e;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.fv-hero__title {
  margin: 0 0 24px;
  font-size: clamp(2.2rem, 4.6vw, 4.3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #3f2234;
  font-weight: 700;
  text-wrap: balance;
}

.fv-hero__text {
  font-size: 1.05rem;
  line-height: 1.82;
  color: #5d4a56;
}

.fv-hero__text p {
  margin: 0 0 16px;
}

.fv-hero__text strong {
  color: #402433;
  font-weight: 700;
}

.fv-hero__signature {
  margin: 28px 0 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #7f4565;
  font-style: italic;
  font-weight: 500;
}

.fv-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.7px;
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #d4a6ff, #a56bff);
  color: white;
  box-shadow: 0 6px 18px rgba(140, 80, 200, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(140, 80, 200, 0.30);
}

.btn-secondary {
  border: 1px solid rgba(140, 80, 200, 0.30);
  color: #6b3fb3;
  background: rgba(255,255,255,0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(140, 80, 200, 0.08);
  border-color: rgba(140, 80, 200, 0.42);
}

@media (max-width: 980px) {
  .fv-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fv-hero__media {
    max-width: 520px;
    margin: 0 auto;
  }

  .fv-hero__content {
    max-width: 100%;
  }

  .fv-hero__title {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .fv-hero {
    padding: 42px 16px 56px;
  }

  .fv-hero__title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .fv-hero__text {
    font-size: 1rem;
    line-height: 1.75;
  }

  .fv-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .fv-btn {
    width: 100%;
  }
}