/* Zari hero — cinematic canvas with centered serif headline (frame 6:26). */

.zr-hero {
  position: relative;
  height: var(--zr-hero-height, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  overflow: hidden;
}
.zr-hero__media { position: absolute; inset: 0; pointer-events: none; }
.zr-hero__img,
.zr-hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.zr-hero__overlay { position: absolute; inset: 0; }

.zr-hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 800px;
  text-align: center;
}
.zr-hero__eyebrow {
  font-family: var(--font-home-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-bg);
  margin: 0;
}
.zr-hero__heading {
  font-family: var(--font-home-serif);
  font-weight: 400;
  font-size: clamp(40px, 5.3vw, 76px);
  line-height: 1.05;
  color: #FFFFFF;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  margin: 0;
}
.zr-hero__subtext {
  font-family: var(--font-home-sans);
  font-size: 16px;
  line-height: 1.5;
  color: var(--home-bg);
  max-width: 540px;
  margin: 0;
}
.zr-hero__cta-wrap { padding-top: 16px; }
.zr-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--home-accent);
  color: var(--home-ink);
  font-family: var(--font-home-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.zr-hero__cta:hover { background: #D9B9A5; color: var(--home-ink); transform: translateY(-1px); }

@media (max-width: 768px) {
  .zr-hero { padding: 40px 24px; height: max(420px, calc(var(--zr-hero-height, 720px) * 0.62)); }
  .zr-hero__content { gap: 16px; }
  .zr-hero__subtext { font-size: 14px; }
}
