/* ===== Hero overlay for readability ===== */
section:first-of-type{
  position: relative;
}

section:first-of-type::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 30% 40%, rgba(0,0,0,.35), rgba(0,0,0,.80));
  z-index:0;
  pointer-events:none;
}

section:first-of-type *{
  position:relative;
  z-index:1;
}

/* Title look */
section:first-of-type h1,
section:first-of-type .title{
  font-size: 48px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}
section:first-of-type p{
  color: rgba(255,255,255,.92) !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.85);
}

