/* ── CretaHub Premium Hero — shared across all pages ──────────────
   Used by: Contact, About Us, Become a Local Expert, Blog
   Reference: contact hero (the canonical design)
   ─────────────────────────────────────────────────────────────── */

.che-premium-hero {
  background: #004d70;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.che-premium-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(253,165,58,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.che-ph-eyebrow {
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 16px;
  opacity: 0; /* GSAP animates to 1 */
}

.che-ph-headline {
  font-family: "Noto Serif", Georgia, serif !important;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff !important;
  margin: 0 0 20px;
  opacity: 0; /* GSAP animates to 1 */
}

.che-ph-headline em {
  font-style: italic;
  color: #FDA53A;
}

.che-ph-sub {
  font-family: "Plus Jakarta Sans", "Poppins", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.65) !important;
  max-width: 520px;
  margin: 0;
  opacity: 0; /* GSAP animates to 1 */
}

@media (max-width: 600px) {
  .che-premium-hero {
    padding: 70px 0 56px;
  }
}