:root{--brand:#e34234;}
*{box-sizing:border-box}
body{
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial,sans-serif;
}
#hero{
  background: url('hero-background.jpg') center/cover no-repeat fixed;
  position:relative;
  padding: 40px 16px;
}
#hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
#hero .content-wrap{
  position:relative;
  z-index:1;
  max-width:760px;
}
.logo{
  max-width:260px;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}
/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important;transition:none!important}
}
