.zp-hero {
  position: relative;
  padding: clamp(56px, 8vw, 110px) 0 clamp(40px, 5vw, 64px);
  background: linear-gradient(135deg, #ffffff 0%, #faf0f2 45%, #fdf5f6 100%);
  border-bottom: 1px solid rgba(47, 16, 21, 0.08);
  overflow: hidden;
}

.zp-hero__bg {
  display: none;
}

.zp-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.zp-hero__copy {
  display: grid;
  gap: 18px;
  max-width: 640px;
}

.zp-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #73101a;
}

.zp-h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: #12070a;
  letter-spacing: -0.03em;
}

.zp-hero__p {
  margin: 0;
  color: #4d3338;
  font-size: 1.15rem;
  line-height: 1.75;
}

.zp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.zp-hero__cta .zp-btn {
  border-radius: 0;
  padding: 14px 28px;
  letter-spacing: 0.2em;
}

.zp-hero__cta .zp-btn--primary {
  background: linear-gradient(90deg, #8a121d 0%, #c02637 100%);
  border: none;
  color: #ffffff;
}

.zp-hero__cta .zp-btn--ghost {
  background: transparent;
  border: 1px solid rgba(18, 7, 10, 0.2);
  color: #12070a;
}

.zp-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.zp-hero__tag {
  padding: 6px 14px;
  border-radius: 0;
  border: 1px solid rgba(47, 16, 21, 0.2);
  background: #fff;
  color: #6d3238;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zp-hero__poster {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.zp-hero__frame {
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(47, 16, 21, 0.15);
  background: linear-gradient(180deg, #fefefe 0%, #f5f0f1 100%);
  box-shadow: 0 25px 60px rgba(31, 9, 13, 0.18);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.zp-hero__frame::before {
  content: "";
  position: absolute;
  inset: 12px;
}

.zp-hero__logo {
  width: 70%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(15, 5, 7, 0.25));
  margin-left: auto;
  margin-right: auto;
}

.zp-hero__note {
  margin-top: 0;
  text-align: center;
  color: #6b454a;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width:992px){
  .zp-hero__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .zp-hero__poster {
    justify-content: center;
    order: -1;
  }

  .zp-hero__copy {
    text-align: center;
    justify-items: center;
  }

  .zp-hero__note {
    text-align: center;
  }

  .zp-hero__cta {
    justify-content: center;
  }
}

@media (prefers-reduced-motion:reduce){
  .zp-hero__frame{animation:none;width: 100%;}
}
